diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/flexmeasures-s2.iml b/.idea/flexmeasures-s2.iml new file mode 100644 index 0000000..e8fd289 --- /dev/null +++ b/.idea/flexmeasures-s2.iml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..f8f2fd7 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..b88603f --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 1f9652d..4b31527 100644 --- a/README.md +++ b/README.md @@ -29,3 +29,7 @@ or: Try it: pre-commit run --all-files --show-diff-on-failure + +For profiling, use: + + pyinstrument -o profiling_results.html test_frbc_device.py diff --git a/flexmeasures_s2/api/somedata.py b/flexmeasures_s2/api/somedata.py index 17608d9..80a88e4 100755 --- a/flexmeasures_s2/api/somedata.py +++ b/flexmeasures_s2/api/somedata.py @@ -1,5 +1,5 @@ -from flask_security import auth_token_required from flask_json import as_json +from flask_security import auth_token_required from .. import flexmeasures_s2_api_bp diff --git a/flexmeasures_s2/api/tests/test_api.py b/flexmeasures_s2/api/tests/test_api.py index d2048ad..3f4eb6f 100644 --- a/flexmeasures_s2/api/tests/test_api.py +++ b/flexmeasures_s2/api/tests/test_api.py @@ -1,16 +1,52 @@ from flask import url_for +from flask_security import decorators as fs_decorators +from rq.job import Job +from flexmeasures.api.tests.test_auth_token import patched_check_token +from flexmeasures.api.tests.utils import UserContext +from flexmeasures.data.services.scheduling import ( + handle_scheduling_exception, + get_data_source_for_job, +) +from flexmeasures.data.tests.utils import work_on_rq -def test_get_somedata_needs_authtoken(client): - response = client.get( - url_for("flexmeasures-s2 API.somedata"), - headers={"content-type": "application/json"}, - follow_redirects=True, - ) - assert response.status_code == 401 # HTTP error code 401 Unauthorized. - assert "application/json" in response.content_type - assert "not be properly authenticated" in response.json["message"] +def test_s2_frbc_api(monkeypatch, app, setup_frbc_asset): + sensor = setup_frbc_asset.sensors[0] -# TODO: The somedata endpoint requires authentication to be testes successfully. -# We'll need to add a user in conftest, which also requires us to add a db to testing + with UserContext("test_admin_user@seita.nl") as admin: + auth_token = admin.get_auth_token() + + monkeypatch.setattr(fs_decorators, "_check_token", patched_check_token) + with app.test_client() as client: + trigger_schedule_response = client.post( + url_for("SensorAPI:trigger_schedule", id=sensor.id), + json={ + "flex-context": { + "target-profile": {}, # add target profile + } + }, + headers={"Authorization": auth_token}, + ) + print("Server responded with:\n%s" % trigger_schedule_response.json) + assert trigger_schedule_response.status_code == 200 + job_id = trigger_schedule_response.json["schedule"] + + # Now that our scheduling job was accepted, we process the scheduling queue + work_on_rq(app.queues["scheduling"], exc_handler=handle_scheduling_exception) + job = Job.fetch(job_id, connection=app.queues["scheduling"].connection).is_finished + assert job.is_finished is True + + # First, make sure the expected scheduler data source is now there + job.refresh() # catch meta info that was added on this very instance + scheduler_source = get_data_source_for_job(job) + assert scheduler_source.model == "S2Scheduler" + + # try to retrieve the schedule through the /sensors//schedules/ [GET] api endpoint + # todo: to be discussed: the response from the S2Scheduler might get a different format than the FM default + # get_schedule_response = client.get( + # url_for("SensorAPI:get_schedule", id=sensor.id, uuid=job_id), + # query_string={"duration": "PT48H"}, + # ) + # print("Server responded with:\n%s" % get_schedule_response.json) + # assert get_schedule_response.status_code == 200 diff --git a/flexmeasures_s2/conftest.py b/flexmeasures_s2/conftest.py index 186ee1a..a97ad46 100644 --- a/flexmeasures_s2/conftest.py +++ b/flexmeasures_s2/conftest.py @@ -1,12 +1,18 @@ import pytest +from flask_sqlalchemy import SQLAlchemy + +from flexmeasures import Asset, AssetType, Sensor, Account from flexmeasures.app import create as create_flexmeasures_app +from flexmeasures.auth.policy import ADMIN_ROLE from flexmeasures.conftest import ( # noqa F401 db, fresh_db, -) # Use these fixtures to rely on the FlexMeasures database. +) # Use these fixtures to rely on the FlexMeasures database. There might be others in flexmeasures/conftest you want to also re-use +from flexmeasures.data.services.users import create_user -# There might be others in flexmeasures/conftest you want to also re-use +from flexmeasures_s2 import S2_SCHEDULER_SPECS +from flexmeasures_s2.models.const import FRBC_TYPE @pytest.fixture(scope="session") @@ -25,3 +31,43 @@ def app(): ctx.pop() print("DONE WITH APP FIXTURE") + + +@pytest.fixture(scope="module") +def setup_admin(db: SQLAlchemy): # noqa: F811 + account = Account(name="Some FlexMeasures host") + db.session.add(account) + create_user( + username="Test Admin User", + email="test_admin_user@seita.nl", + account_name=account.name, + password="testtest", + user_roles=dict(name=ADMIN_ROLE, description="A user who can do everything."), + ) + yield account + + +@pytest.fixture(scope="module") +def setup_frbc_asset(db: SQLAlchemy, setup_admin): # noqa: F811 + asset_type = AssetType(name=FRBC_TYPE) + asset = Asset( + name="Test FRBC asset", + generic_asset_type=asset_type, + owner=setup_admin, + ) + asset.attributes = { + "custom-scheduler": S2_SCHEDULER_SPECS, + "flex-model": { + "S2-FRBC-device-state": None, # ?todo: add serialized state + }, + } + db.session.add(asset) + sensor = Sensor( + name="power", + unit="kW", + event_resolution="PT5M", + generic_asset=asset, + ) + db.session.add(sensor) + db.session.flush() # assign (asset and sensor) IDs + yield asset diff --git a/flexmeasures_s2/models/__init__.py b/flexmeasures_s2/models/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/models/const.py b/flexmeasures_s2/models/const.py new file mode 100644 index 0000000..6ff6a35 --- /dev/null +++ b/flexmeasures_s2/models/const.py @@ -0,0 +1,2 @@ +NAMESPACE = "fm-s2" +FRBC_TYPE = f"{NAMESPACE}.FRBC" diff --git a/flexmeasures_s2/profile_steering/__init__.py b/flexmeasures_s2/profile_steering/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/cluster_plan.py b/flexmeasures_s2/profile_steering/cluster_plan.py new file mode 100644 index 0000000..61a58cb --- /dev/null +++ b/flexmeasures_s2/profile_steering/cluster_plan.py @@ -0,0 +1,635 @@ +from datetime import datetime +from typing import List, Dict, Any, Optional +import uuid + +# Common data types +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata + +# Import from common data structures to avoid circular imports +from flexmeasures_s2.profile_steering.common_data_structures import ( + ClusterState, + DevicePlan, +) + +# Import cluster target +from flexmeasures_s2.profile_steering.cluster_target import ClusterTarget + + +class ClusterPlanData: + """Class representing planning data for a cluster.""" + + class CpData: + """Class representing data for a congestion point.""" + + def __init__( + self, + cp_id: str, + cp_plan: List[float], + der_plans: Dict[str, List[float]], + cp_consumption: List[float], + cp_production: List[float], + cp_consumption_max: float, + cp_production_max: float, + ): + self._cp_id = cp_id + self._cp_plan = cp_plan + self._der_plans = der_plans + self._cp_consumption = cp_consumption + self._cp_production = cp_production + self._cp_consumption_max = cp_consumption_max + self._cp_production_max = cp_production_max + + def get_cp_id(self) -> str: + return self._cp_id + + def get_cp_plan(self) -> List[float]: + return self._cp_plan + + def get_der_plans(self) -> Dict[str, List[float]]: + return self._der_plans + + def get_cp_consumption(self) -> List[float]: + return self._cp_consumption + + def get_cp_production(self) -> List[float]: + return self._cp_production + + def get_cp_consumption_max(self) -> float: + return self._cp_consumption_max + + def get_cp_production_max(self) -> float: + return self._cp_production_max + + def add_der_plan(self, der_name: str, value: JouleProfile) -> "ClusterPlanData.CpData": + """Add a device energy resource plan to this congestion point. + + Args: + der_name: The name of the device energy resource + value: The profile of the device energy resource + + Returns: + A new CpData instance with the added device energy resource plan + """ + der_plan = to_float_array(value) + new_cp_plan = [0] * len(self._cp_plan) + cp_consumption = [0] * len(self._cp_plan) + cp_production = [0] * len(self._cp_plan) + consumption_max = self._cp_consumption_max + production_max = self._cp_production_max + + for i in range(len(self._cp_plan)): + new_cp_plan[i] = der_plan[i] + self._cp_plan[i] + cp_consumption[i] = self._cp_consumption[i] + cp_production[i] = self._cp_production[i] + + if der_plan[i] >= 0: + cp_consumption[i] += der_plan[i] + consumption_max = max(cp_consumption[i], consumption_max) + else: + cp_production[i] += der_plan[i] + production_max = min(cp_production[i], production_max) + + new_der_plans = self._der_plans.copy() + new_der_plans[der_name] = der_plan + + return ClusterPlanData.CpData( + self._cp_id, + new_cp_plan, + new_der_plans, + cp_consumption, + cp_production, + consumption_max, + production_max, + ) + + @classmethod + def empty(cls, cp_id: str, profile_metadata: ProfileMetadata) -> "ClusterPlanData.CpData": + """Create an empty CpData instance. + + Args: + cp_id: The congestion point ID + profile_metadata: Metadata about the profile + + Returns: + An empty CpData instance + """ + timesteps = profile_metadata.nr_of_timesteps + + return cls( + cp_id, + [0.0] * timesteps, + {}, + [0.0] * timesteps, + [0.0] * timesteps, + 0.0, + 0.0, + ) + + def __init__( + self, + device_plans: List[DevicePlan] = None, + profile_metadata: ProfileMetadata = None, + _id: str = None, + reason: str = None, + target: Any = None, + active_target: Any = None, + current_plan: List[float] = None, + start: int = None, + step: int = None, + global_deviation_score: float = 1.0, + constraint_violation_score: float = 1.0, + cp_datas: Dict[str, CpData] = None, + ): + self._device_plans = device_plans or [] + self._profile_metadata = profile_metadata + self._id = _id + self._reason = reason + self._target = target + self._active_target = active_target + self._current_plan = current_plan + self._start = start + self._step = step + self._global_deviation_score = global_deviation_score + self._constraint_violation_score = constraint_violation_score + self._cp_datas = cp_datas or {} + + def get_device_plans(self) -> List[DevicePlan]: + return self._device_plans + + def get_profile_metadata(self) -> ProfileMetadata: + return self._profile_metadata + + def get_id(self) -> str: + return self._id + + def get_reason(self) -> str: + return self._reason + + def get_target(self) -> Any: + return self._target + + def get_active_target(self) -> Any: + return self._active_target + + def get_current_plan(self) -> List[float]: + return self._current_plan + + def get_start(self) -> int: + return self._start + + def get_step(self) -> int: + return self._step + + def get_global_deviation_score(self) -> float: + return self._global_deviation_score + + def get_constraint_violation_score(self) -> float: + return self._constraint_violation_score + + def get_cp_datas(self) -> Dict[str, CpData]: + return self._cp_datas + + def is_compatible(self, other: Any) -> bool: + """Check if this cluster plan data is compatible with another profile. + + Args: + other: The other profile to check compatibility with + + Returns: + True if compatible, False otherwise + """ + if self._profile_metadata is None: + return False + + return self._profile_metadata.is_compatible(other.metadata) + + def subprofile(self, new_start_date: datetime) -> "ClusterPlanData": + """Create a subprofile starting at the specified date. + + Args: + new_start_date: The new start date for the profile + + Returns: + A new ClusterPlanData instance with adjusted start date + """ + # Create a copy of this instance with adjusted device plans + new_device_plans = [] + for device_plan in self._device_plans: + new_profile = device_plan._profile.subprofile(new_start_date) + new_device_plans.append(DevicePlan(device_plan._device_id, new_profile)) + + # Create new profile metadata with adjusted start date + new_profile_metadata = self._profile_metadata.subprofile(new_start_date) + + return ClusterPlanData( + device_plans=new_device_plans, + profile_metadata=new_profile_metadata, + _id=self._id, + reason=self._reason, + target=self._target, + active_target=self._active_target, + current_plan=self._current_plan, + start=int(new_start_date.timestamp() * 1000), + # Convert to milliseconds + step=self._step, + global_deviation_score=self._global_deviation_score, + constraint_violation_score=self._constraint_violation_score, + cp_datas=self._cp_datas, + ) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "ClusterPlanData": + """Adjust the number of elements in the profile. + + Args: + nr_of_elements: The new number of elements + + Returns: + A new ClusterPlanData instance with adjusted number of elements + """ + # Create a copy of this instance with adjusted device plans + new_device_plans = [] + for device_plan in self._device_plans: + new_profile = device_plan._profile.adjust_nr_of_elements(nr_of_elements) + new_device_plans.append(DevicePlan(device_plan._device_id, new_profile)) + + # Create new profile metadata with adjusted number of elements + new_profile_metadata = self._profile_metadata.adjust_nr_of_elements(nr_of_elements) + + return ClusterPlanData( + device_plans=new_device_plans, + profile_metadata=new_profile_metadata, + _id=self._id, + reason=self._reason, + target=self._target, + active_target=self._active_target, + current_plan=(self._current_plan[:nr_of_elements] if self._current_plan else None), + start=self._start, + step=self._step, + global_deviation_score=self._global_deviation_score, + constraint_violation_score=self._constraint_violation_score, + cp_datas=self._cp_datas, + ) + + @classmethod + def from_cluster_plan( + cls, + cluster_plan: "ClusterPlan", + active_target: ClusterTarget, + active_plan: JouleProfile, + ) -> "ClusterPlanData": + """Create a ClusterPlanData instance from a ClusterPlan. + + Args: + cluster_plan: The cluster plan to create the data from + active_target: The active target for the cluster + active_plan: The active plan for the cluster + + Returns: + A ClusterPlanData instance + """ + congestion_points = {} + + # Get the device plans from the cluster plan + cluster_plan_data = cluster_plan._plan_data + if cluster_plan_data is None: + return None # type: ignore + + # Process each device plan + for device_plan in cluster_plan_data._device_plans: + cp_id = cluster_plan._state.get_congestion_point(device_plan._device_id) + if cp_id is None: + # The interface needs all devices to function properly. So for devices without congestion point, set a + # dummy congestion point so that those device plans go through. + cp_id = "No congestion point" + + if cp_id not in congestion_points: + congestion_points[cp_id] = ClusterPlanData.CpData.empty( + cp_id, cluster_plan._plan_data._profile_metadata + ) + + congestion_points[cp_id] = congestion_points[cp_id].add_der_plan( + device_plan._device_id, device_plan._profile + ) + + # Create the current plan + if active_plan is None: + # Extract the plan from the cluster plan's JouleProfile + joule_profile = cluster_plan.get_joule_profile() + current_plan = [element if element is not None else 0.0 for element in joule_profile.elements] + else: + # Use the active plan, adjusting it to the profile metadata + profile_start = cluster_plan._plan_data._profile_metadata.profile_start + nr_of_timesteps = cluster_plan._plan_data._profile_metadata.nr_of_timesteps + + subprofile = active_plan.subprofile(profile_start) + adjusted_profile = subprofile.adjust_nr_of_elements(nr_of_timesteps) + current_plan = [element if element is not None else 0.0 for element in adjusted_profile.elements] + + # Get the profile metadata + profile_metadata = cluster_plan._plan_data._profile_metadata + + # Set up the active target + actual_active_target = active_target if active_target is not None else cluster_plan._target + + # Calculate timestamps + start_time = profile_metadata.profile_start.timestamp() * 1000 # Convert to milliseconds + timestep_duration = profile_metadata.timestep_duration.total_seconds() * 1000 # Convert to milliseconds + + # Get scores, defaulting to 1.0 if they're NaN + global_deviation_score = cluster_plan.get_global_deviation_score() + global_deviation_score = 1.0 if global_deviation_score is None else global_deviation_score + + constraint_violation_score = cluster_plan.get_constraint_violation_score() + constraint_violation_score = 1.0 if constraint_violation_score is None else constraint_violation_score + + return cls( + device_plans=cluster_plan_data._device_plans, + profile_metadata=profile_metadata, + _id=str(cluster_plan._id), + reason=cluster_plan._reason, + target=cluster_plan._target, + active_target=actual_active_target, + current_plan=current_plan, + start=int(start_time), + step=int(timestep_duration), + global_deviation_score=global_deviation_score, + constraint_violation_score=constraint_violation_score, + cp_datas=congestion_points, + ) + + +def to_float_array(profile: JouleProfile) -> List[float]: + """Convert a JouleProfile to a list of floats. + + Args: + profile: The profile to convert + + Returns: + A list of floats + """ + result = [0.0] * profile.metadata.nr_of_timesteps + for i, element in enumerate(profile.elements): + result[i] = 0.0 if element is None else float(element) + return result + + +class ClusterPlan: + """Class representing a plan for a cluster.""" + + def __init__( + self, + state: ClusterState, + target: ClusterTarget, + plan_data: ClusterPlanData, + reason: str, + plan_due_by_date: datetime, + parent_plan: Optional["ClusterPlan"] = None, + _id: Optional[str] = None, + global_deviation_score: Optional[float] = None, + constraint_violation_score: Optional[float] = None, + activated_at: Optional[datetime] = None, + planned_energy: Optional[float] = None, + ): + self._state = state + self._target = target + self._plan_data = plan_data + self._reason = reason + self._plan_due_by_date = plan_due_by_date + self._parent_plan = parent_plan + self._id = _id or str(uuid.uuid4()) + self._global_deviation_score = global_deviation_score + self._constraint_violation_score = constraint_violation_score + self._joule_profile = None # Will be initialized when needed + self._activated_at = activated_at + self._planned_energy = planned_energy # Lazy evaluation field + + def get_state(self) -> ClusterState: + return self._state + + def get_target(self) -> ClusterTarget: + return self._target + + def get_plan_data(self) -> ClusterPlanData: + return self._plan_data + + def get_reason(self) -> str: + return self._reason + + def get_plan_due_by_date(self) -> datetime: + return self._plan_due_by_date + + def get_parent_plan(self) -> Optional["ClusterPlan"]: + return self._parent_plan + + def get_id(self) -> str: + return self._id + + def get_activated_at(self) -> Optional[datetime]: + return self._activated_at + + def get_target_energy(self) -> float: + """Get the target energy for this plan. + + Returns: + The target energy + """ + return self._target._global_target_profile.get_total_energy() + + def get_planned_energy(self) -> float: + """Get the planned energy for this plan. + + Returns: + The planned energy + """ + if self._planned_energy is not None: + return self._planned_energy + + sum_energy = 0.0 + for device_plan in self._plan_data._device_plans: + sum_energy += device_plan._profile.get_total_energy() + + self._planned_energy = sum_energy + return sum_energy + + def get_global_deviation_score(self) -> Optional[float]: + """Get the global deviation score for this plan. + + Returns: + The global deviation score + """ + if self._global_deviation_score is not None: + return self._global_deviation_score + + if self._target is None: + return None + + plan_segment = self.get_joule_profile().subprofile(self._target._global_target_profile.metadata.profile_start) + + if plan_segment.get_total_energy() == 0.0: + return 0.0 + + sum_squared_distance = 0.0 + for i in range(len(plan_segment.elements)): + sum_squared_distance += (plan_segment.elements[i] - self._target._global_target_profile.elements[i]) ** 2 + + return sum_squared_distance / plan_segment.get_total_energy() + + def get_constraint_violation_score(self) -> Optional[float]: + """Get the constraint violation score for this plan. + + Returns: + The constraint violation score + """ + if self._constraint_violation_score is not None: + return self._constraint_violation_score + + if self._target is None: + return None + + planned_energy = self.get_planned_energy() + if planned_energy == 0.0: + return 0.0 + + sum_squared_distance = 0.0 + for cp_id, cp_profile in self.get_profile_per_congestion_point().items(): + congestion_point_target = self._target.get_congestion_point_target(cp_id) + if congestion_point_target is None: + continue + + for i in range(len(cp_profile.elements)): + if cp_profile.elements[i] > congestion_point_target.elements[i].max_joule: + sum_squared_distance += ( + cp_profile.elements[i] - congestion_point_target.elements[i].max_joule + ) ** 2 + elif cp_profile.elements[i] < congestion_point_target.elements[i].min_joule: + sum_squared_distance += ( + cp_profile.elements[i] - congestion_point_target.elements[i].min_joule + ) ** 2 + + return sum_squared_distance / planned_energy + + def has_constraint_violation(self) -> bool: + """Check if this plan has any constraint violations. + + Returns: + True if there are constraint violations, False otherwise + """ + for cp_id, cp_profile in self.get_profile_per_congestion_point().items(): + plan = cp_profile.elements + congestion_point_target = self._target.get_congestion_point_target(cp_id) + + if congestion_point_target is not None: + # If there is no target, we don't need to check for violations + target_elements = congestion_point_target.elements + + for i in range(len(target_elements)): + element = target_elements[i] + max_joule = element.max_joule + min_joule = element.min_joule + plan_value = plan[i] + + if max_joule is not None and plan_value > max_joule: + return True + + if min_joule is not None and plan_value < min_joule: + return True + + return False + + def is_compatible(self, other: Any) -> bool: + """Check if this cluster plan is compatible with another profile. + + Args: + other: The other profile to check compatibility with + + Returns: + True if compatible, False otherwise + """ + return self._plan_data.is_compatible(other) + + def subprofile(self, new_start_date: datetime) -> "ClusterPlan": + """Create a subprofile starting at the specified date. + + Args: + new_start_date: The new start date for the profile + + Returns: + A new ClusterPlan instance with adjusted start date + """ + return ClusterPlan( + state=self._state, + target=self._target.subprofile(new_start_date), + plan_data=self._plan_data.subprofile(new_start_date), + reason=self._reason, + plan_due_by_date=self._plan_due_by_date, + parent_plan=None, + _id=self._id, + activated_at=None, + ) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "ClusterPlan": + """Adjust the number of elements in the profile. + + Args: + nr_of_elements: The new number of elements + + Returns: + A new ClusterPlan instance with adjusted number of elements + """ + return ClusterPlan( + state=self._state, + target=self._target.adjust_nr_of_elements(nr_of_elements), + plan_data=self._plan_data.adjust_nr_of_elements(nr_of_elements), + reason=self._reason, + plan_due_by_date=self._plan_due_by_date, + parent_plan=None, + _id=self._id, + activated_at=None, + ) + + def get_profile_metadata(self) -> ProfileMetadata: + """Get the profile metadata for this plan. + + Returns: + The profile metadata + """ + return self._target._global_target_profile.metadata + + def get_profile_per_congestion_point(self) -> Dict[str, JouleProfile]: + """Get the profile for each congestion point. + + Returns: + A dictionary mapping congestion point IDs to profiles + """ + result = {} + + for device_plan in self._plan_data._device_plans: + cp_id = self._state.get_congestion_point(device_plan._device_id) + profile = device_plan._profile + + if cp_id in result: + result[cp_id] = result[cp_id].add(profile) + else: + result[cp_id] = profile + + return result + + def get_joule_profile(self) -> JouleProfile: + """Get the JouleProfile for this plan. + + Returns: + The JouleProfile for this plan + """ + + # Add all device plans to the profile + sum_profile = JouleProfile( + profile_start=self._target._global_target_profile.metadata.profile_start, + timestep_duration=self._target._global_target_profile.metadata.timestep_duration, + profile_length=self._target._global_target_profile.metadata.nr_of_timesteps, + value=0.0, + ) + for device_plan in self._plan_data._device_plans: + sum_profile = sum_profile.add(device_plan._profile) + + return sum_profile diff --git a/flexmeasures_s2/profile_steering/cluster_target.py b/flexmeasures_s2/profile_steering/cluster_target.py new file mode 100644 index 0000000..1a250d1 --- /dev/null +++ b/flexmeasures_s2/profile_steering/cluster_target.py @@ -0,0 +1,224 @@ +from datetime import datetime +from typing import Dict, Optional, Any, List +import uuid + +# Common data types +from flexmeasures_s2.profile_steering.common.joule_range_profile import ( + JouleRangeProfile, +) +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile + + +class ClusterTarget: + """ + ClusterTarget instances are used by traders to express how a plan should look like. + + There are two levels at which a target can be set: + 1. Global level (i.e., a target for the cluster as a whole) + 2. Congestion point level + + The global target is a TargetProfile (i.e., a line) and the congestion point targets + are JouleRangeProfile instances, allowing congestion targets to be set with + minimum and maximum constraints. + """ + + def __init__( + self, + generated_at: datetime, + parent_id: Any, + generated_by: Any, + global_target_profile: TargetProfile, + congestion_point_targets: Optional[Dict[str, JouleRangeProfile]] = None, + ): + """ + Initialize a ClusterTarget instance. + + Args: + generated_at: When the target was generated + parent_id: The ID of the parent target + generated_by: The entity that generated the target + global_target_profile: The global target profile for the cluster + congestion_point_targets: Targets for specific congestion points + """ + self._id = str(uuid.uuid4()) + self._generated_at = generated_at + self._parent_id = parent_id + self._generated_by = generated_by + self._global_target_profile = global_target_profile + self._congestion_point_targets = congestion_point_targets or {} + + # Validate + if global_target_profile is None: + raise ValueError("global_target_profile cannot be None") + + if congestion_point_targets is not None: + for cp_id, cp_target in congestion_point_targets.items(): + if not cp_target.is_compatible(global_target_profile): + raise ValueError( + f"Congestion point target {cp_id} is not compatible with the global target profile. " + f"Expected global metadata: {global_target_profile.metadata}, " + f"but congestion profile had {cp_target.metadata}" + ) + + def get_id(self) -> str: + """ + Get the ID of this target. + + Returns: + The target ID + """ + return self._id + + def get_generated_at(self) -> datetime: + """ + Get when this target was generated. + Returns: + The generation timestamp + """ + return self._generated_at + + def get_parent_id(self) -> Any: + """ + Get the parent ID of this target. + + Returns: + The parent ID + """ + return self._parent_id + + def get_generated_by(self) -> Any: + """ + Get the entity that generated this target. + + Returns: + The generator entity + """ + return self._generated_by + + def get_global_target_profile(self) -> TargetProfile: + """ + Get the global target profile. + + Returns: + The global target profile + """ + return self._global_target_profile + + def get_congestion_point_targets(self) -> Dict[str, JouleRangeProfile]: + """ + Get all congestion point targets. + + Returns: + A dictionary mapping congestion point IDs to their targets + """ + return self._congestion_point_targets + + def get_congestion_point_target(self, congestion_point_id: str) -> Optional[JouleRangeProfile]: + """ + Get the target for a specific congestion point. + + Args: + congestion_point_id: The ID of the congestion point + + Returns: + The target for the congestion point, or None if not found + """ + return self._congestion_point_targets.get(congestion_point_id) + + def get_profile_metadata(self) -> Any: + """ + Get the profile metadata. + + Returns: + The profile metadata + """ + return self._global_target_profile.metadata + + def get_target_energy(self) -> float: + """ + Get the total target energy. + + Returns: + The total energy + """ + return self._global_target_profile.get_total_energy() + + def is_compatible(self, other: Any) -> bool: + """ + Check if this target is compatible with another profile. + + Args: + other: The other profile to check compatibility with + + Returns: + True if compatible, False otherwise + """ + return self._global_target_profile.is_compatible(other) + + def subprofile(self, new_start_date: datetime) -> "ClusterTarget": + """ + Create a subprofile starting at the specified date. + + Args: + new_start_date: The new start date for the profile + + Returns: + A new ClusterTarget instance with adjusted start date + """ + plans = {} + for cp_id, cp_target in self._congestion_point_targets.items(): + plans[cp_id] = cp_target.subprofile(new_start_date) + + return ClusterTarget( + self._generated_at, + self._parent_id, + self._generated_by, + self._global_target_profile.subprofile(new_start_date), + plans, + ) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "ClusterTarget": + """ + Adjust the number of elements in the profile. + + Args: + nr_of_elements: The new number of elements + + Returns: + A new ClusterTarget instance with adjusted number of elements + """ + plans = {} + for cp_id, cp_target in self._congestion_point_targets.items(): + plans[cp_id] = cp_target.adjust_nr_of_elements(nr_of_elements) + + return ClusterTarget( + self._generated_at, + self._parent_id, + self._generated_by, + self._global_target_profile.adjust_nr_of_elements(nr_of_elements), + plans, + ) + + def set_congestion_point_target( + self, + congestion_point_id: str, + congestion_point_target: JouleRangeProfile, + elements: Optional[List[Any]] = None, + ): + """ + Set a target for a specific congestion point. + + Args: + congestion_point_id: The ID of the congestion point + congestion_point_target: The target for the congestion point + elements: Optional elements to set in the target profile + """ + if not congestion_point_target.is_compatible(self._global_target_profile): + raise ValueError( + f"Congestion point target {congestion_point_id} is not compatible with the global target profile" + ) + + self._congestion_point_targets[congestion_point_id] = congestion_point_target + + if elements is not None: + self._congestion_point_targets[congestion_point_id].set_elements(elements) diff --git a/flexmeasures_s2/profile_steering/common/__init__.py b/flexmeasures_s2/profile_steering/common/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/common/abstract_profile.py b/flexmeasures_s2/profile_steering/common/abstract_profile.py new file mode 100644 index 0000000..271bde9 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/abstract_profile.py @@ -0,0 +1,146 @@ +from abc import ABC, abstractmethod +from typing import List, TypeVar, Generic, Optional +from datetime import datetime, timedelta +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata + +E = TypeVar("E") +PT = TypeVar("PT", bound="AbstractProfile") + + +class AbstractProfile(ABC, Generic[E, PT]): + def __init__( + self, + profile_metadata: Optional[ProfileMetadata] = None, + elements: Optional[List[E]] = None, + profile_start: Optional[datetime] = None, + timestep_duration: Optional[timedelta] = None, + value: Optional[E] = None, + nr_of_elements: Optional[int] = None + ): + """ + Initialize an AbstractProfile with various parameter combinations. + + Args: + profile_metadata: ProfileMetadata object containing start time and duration + elements: List of profile elements + profile_start: Start time of the profile + timestep_duration: Duration of each timestep + value: Single value to fill the entire profile + nr_of_elements: Number of elements when using a single value + """ + # Case 1: Initialize with metadata and elements + if profile_metadata is not None and elements is not None: + self.metadata = profile_metadata + self.elements = elements + self.validate(profile_metadata, elements) + return + + # Case 2: Initialize with start time, duration and elements + if profile_start is not None and timestep_duration is not None and elements is not None: + self.metadata = ProfileMetadata(profile_start, timestep_duration, len(elements)) + self.elements = elements + self.validate(self.metadata, elements) + return + + # Case 3: Initialize with start time, duration, single value and number of elements + if profile_start is not None and timestep_duration is not None and value is not None and nr_of_elements is not None: + self.elements = [value] * nr_of_elements + self.metadata = ProfileMetadata(profile_start, timestep_duration, nr_of_elements) + self.validate(self.metadata, self.elements) + return + + # Case 4: Empty initialization (for serialization) + self.metadata = None + self.elements = [] + + @abstractmethod + def validate(self, profile_metadata: ProfileMetadata, elements: List[E]): + if elements is None: + raise ValueError("elements cannot be null") + if ( + 24 * 60 * 60 * 1000 + ) % profile_metadata.timestep_duration.total_seconds() * 1000 != 0: + raise ValueError("A day should be dividable by the timeStepDuration") + if ( + not self.start_of_current_aligned_date( + profile_metadata.profile_start, + profile_metadata.timestep_duration, + ) + == profile_metadata.profile_start + ): + raise ValueError( + "The startTimeDuration should be aligned with the timeStepDuration" + ) + + def get_profile_metadata(self) -> ProfileMetadata: + return self.metadata + + def get_elements(self) -> List[E]: + return self.elements + + def get_element_end_date_at(self, index: int) -> datetime: + return self.metadata.get_profile_start_at_timestep(index + 1) + + def index_at(self, date: datetime) -> int: + return self.metadata.get_starting_step_nr(date) + + def element_at(self, date: datetime) -> E: + index = self.index_at(date) + if index >= 0: + return self.elements[index] + raise ValueError(f"No element found at date - index {index} is invalid") + + @staticmethod + def next_aligned_date(date: datetime, time_step_duration: timedelta) -> datetime: + time_step_duration_ms = time_step_duration.total_seconds() * 1000 + ms_since_last_aligned_date = (date.timestamp() * 1000) % time_step_duration_ms + + if ms_since_last_aligned_date == 0: + return date + else: + return date + timedelta( + milliseconds=(time_step_duration_ms - ms_since_last_aligned_date) + ) + + @staticmethod + def start_of_current_aligned_date( + date: datetime, time_step_duration: timedelta + ) -> datetime: + ms_since_last_aligned_date = ( + (date.timestamp() * 1000) % time_step_duration.total_seconds() * 1000 + ) + if ms_since_last_aligned_date == 0: + return date + else: + return datetime.fromtimestamp( + date.timestamp() - ms_since_last_aligned_date / 1000 + ) + + @staticmethod + def end_of_current_aligned_date( + date: datetime, time_step_duration: timedelta + ) -> datetime: + return ( + AbstractProfile.start_of_current_aligned_date(date, time_step_duration) + + time_step_duration + ) + + @staticmethod + def get_start_of_day(date: datetime) -> datetime: + return datetime.combine(date.date(), datetime.min.time()) + + @abstractmethod + def subprofile(self, new_start_date: datetime) -> PT: + pass + + @abstractmethod + def adjust_nr_of_elements(self, nr_of_elements: int) -> PT: + pass + + @abstractmethod + def is_compatible(self, other: PT) -> bool: + return self.metadata == other.metadata + + @abstractmethod + def default_value(self) -> E: + pass diff --git a/flexmeasures_s2/profile_steering/common/device_planner/__init__.py b/flexmeasures_s2/profile_steering/common/device_planner/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/common/device_planner/device_plan.py b/flexmeasures_s2/profile_steering/common/device_planner/device_plan.py new file mode 100644 index 0000000..61d7d35 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/device_planner/device_plan.py @@ -0,0 +1,48 @@ +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_instruction_profile import ( + S2FrbcInstructionProfile, +) + + +class DevicePlan: + def __init__( + self, + device_id: str, + device_name: str, + connection_id: str, + energy_profile: JouleProfile, + fill_level_profile: SoCProfile, + instruction_profile: S2FrbcInstructionProfile, + ): + self.device_id = device_id + self.device_name = device_name + self.connection_id = connection_id + self.energy_profile = energy_profile + self.fill_level_profile = fill_level_profile + self.instruction_profile = instruction_profile + + def get_device_id(self) -> str: + return self.device_id + + def get_device_name(self) -> str: + return self.device_name + + def get_connection_id(self) -> str: + return self.connection_id + + def get_energy_profile(self) -> JouleProfile: + return self.energy_profile + + def get_fill_level_profile(self) -> SoCProfile: + return self.fill_level_profile + + def get_instruction_profile(self) -> S2FrbcInstructionProfile: + return self.instruction_profile + + def __str__(self) -> str: + return ( + f"DevicePlan(device_id={self.device_id}, device_name={self.device_name}, " + f"connection_id={self.connection_id}, energy_profile={self.energy_profile}, " + f"fill_level_profile={self.fill_level_profile}, instruction_profile={self.instruction_profile})" + ) diff --git a/flexmeasures_s2/profile_steering/common/device_planner/device_planner.py b/flexmeasures_s2/profile_steering/common/device_planner/device_planner.py new file mode 100644 index 0000000..2dc36c6 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/device_planner/device_planner.py @@ -0,0 +1,79 @@ +from datetime import datetime +from typing import Optional +from abc import ABC, abstractmethod +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.proposal import Proposal + + +class DevicePlanner(ABC): + @abstractmethod + def get_device_id(self) -> str: + """Get the device ID.""" + pass + + @abstractmethod + def get_device_name(self) -> str: + """Get the device name.""" + pass + + @abstractmethod + def get_connection_id(self) -> str: + """Get the connection ID.""" + pass + + @abstractmethod + def create_improved_planning( + self, + cluster_diff_profile: JouleProfile, + diff_to_max_profile: JouleProfile, + diff_to_min_profile: JouleProfile, + plan_due_by_date: datetime, + ) -> Proposal: + """Create an improved planning proposal. + + Args: + cluster_diff_profile: The difference profile for the cluster + diff_to_max_profile: The difference to the maximum profile + diff_to_min_profile: The difference to the minimum profile + plan_due_by_date: The date by which the plan must be ready + + Returns: + A Proposal object representing the improved plan + """ + pass + + @abstractmethod + def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: + """Create an initial planning profile. + + Args: + plan_due_by_date: The date by which the plan must be ready + + Returns: + A JouleProfile representing the initial plan + """ + pass + + @abstractmethod + def accept_proposal(self, accepted_proposal: Proposal): + """Accept a proposal and update the device's planning. + + Args: + accepted_proposal: The proposal to accept + """ + pass + + @abstractmethod + def get_current_profile(self) -> JouleProfile: + """Get the current profile of the device.""" + pass + + @abstractmethod + def get_device_plan(self) -> Optional[JouleProfile]: + """Get the device plan.""" + pass + + @abstractmethod + def get_priority_class(self) -> int: + """Get the priority class of the device.""" + pass diff --git a/flexmeasures_s2/profile_steering/common/joule_profile.py b/flexmeasures_s2/profile_steering/common/joule_profile.py new file mode 100644 index 0000000..a9261f8 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/joule_profile.py @@ -0,0 +1,186 @@ +from datetime import datetime, timedelta +from typing import List, Optional, Union +from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata + + +class JouleProfile(AbstractProfile[int, "JouleProfile"]): + def __init__( + self, + profile_start: Optional[datetime] = None, + timestep_duration: Optional[timedelta] = None, + elements: Optional[List[int]] = None, + metadata: Optional[ProfileMetadata] = None, + value: Optional[int] = None, + profile_length: Optional[int] = None, + other_profile: Optional["JouleProfile"] = None, + ): + """ + Initialize a JouleProfile with various parameter combinations. + + Args: + profile_start: Start time of the profile + timestep_duration: Duration of each timestep + elements: List of energy values + metadata: ProfileMetadata object containing start time and duration + value: Single value to fill the entire profile + profile_length: Length of the profile when using a single value + other_profile: Another JouleProfile to copy from + """ + # Case 1: Copy from another profile + if other_profile is not None: + super().__init__( + profile_metadata=other_profile.metadata, elements=other_profile.elements.copy() + ) + return + + # Case 2: Initialize from metadata + if metadata is not None: + if elements is not None: + super().__init__(profile_metadata=metadata, elements=elements) + elif value is not None: + elements = [value] * metadata.nr_of_timesteps + super().__init__(profile_metadata=metadata, elements=elements) + else: + super().__init__(profile_metadata=metadata, elements=[]) + return + + # Case 3: Initialize with single value and profile length + if value is not None and profile_length is not None: + elements = [value] * profile_length + super().__init__(profile_start=profile_start, timestep_duration=timestep_duration, elements=elements) + return + + # Case 4: Basic initialization + if profile_start is not None and timestep_duration is not None: + super().__init__( + profile_start=profile_start, + timestep_duration=timestep_duration, + elements=elements if elements is not None else [], + ) + return + + # Case 5: Empty initialization (for serialization) + super().__init__() + + def validate(self, profile_metadata: ProfileMetadata, elements: List[int]): + super().validate(profile_metadata, elements) + # Add any JouleProfile-specific validation here if needed + + def default_value(self) -> int: + return 0 + + def subprofile(self, new_start_date: datetime) -> "JouleProfile": + index = self.index_at(new_start_date) + if index < 0: + raise ValueError("New start date is outside profile range") + new_elements = self.elements[index:] + return JouleProfile(new_start_date, self.metadata.timestep_duration, new_elements) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "JouleProfile": + if nr_of_elements < len(self.elements): + new_elements = self.elements[:nr_of_elements] + else: + new_elements = self.elements + [0] * (nr_of_elements - len(self.elements)) + return JouleProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + new_elements, + ) + + def is_compatible(self, other: AbstractProfile) -> bool: + return self.metadata == other.metadata + + def avg_power_at(self, date: datetime) -> Optional[float]: + element = self.element_at(date) + return element / self.metadata.timestep_duration.total_seconds() + + def add(self, other: "JouleProfile") -> "JouleProfile": + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + summed_elements = [0] * len(self.elements) + for i in range(len(self.elements)): + if self.elements[i] is None or other.elements[i] is None: + summed_elements[i] = self.default_value() + else: + summed_elements[i] = self.elements[i] + other.elements[i] + return JouleProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + summed_elements, + ) + + def subtract(self, other: "JouleProfile") -> "JouleProfile": + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + diff_elements = [0] * len(self.elements) + for i in range(len(self.elements)): + if self.elements[i] is None or other.elements[i] is None: + diff_elements[i] = self.default_value() + else: + diff_elements[i] = self.elements[i] - other.elements[i] + return JouleProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + diff_elements, + ) + + def absolute_values(self) -> "JouleProfile": + abs_elements = [abs(e) for e in self.elements] + return JouleProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + abs_elements, + ) + + def sum_quadratic_distance(self) -> float: + return sum(e**2 for e in self.elements if e is not None) + + def is_below_or_equal(self, other: "JouleProfile") -> bool: + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + return all(a <= b for a, b in zip(self.elements, other.elements) if b is not None) + + def is_above_or_equal(self, other: "JouleProfile") -> bool: + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + return all(a >= b for a, b in zip(self.elements, other.elements) if b is not None) + + def minimum(self, other: "JouleProfile") -> "JouleProfile": + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + # skip None values + min_elements = [min(a, b) for a, b in zip(self.elements, other.elements) if a is not None and b is not None] + return JouleProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + min_elements, + ) + + def maximum(self, other: "JouleProfile") -> "JouleProfile": + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + # skip None values + max_elements = [max(a, b) for a, b in zip(self.elements, other.elements) if a is not None and b is not None] + return JouleProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + max_elements, + ) + + def get_total_energy(self) -> int: + return sum(self.elements) + + def get_total_energy_production(self) -> int: + return sum(min(0, e) for e in self.elements) + + def get_total_energy_consumption(self) -> int: + return sum(max(0, e) for e in self.elements) + + def get_energy_for_timestep(self, index: int) -> Optional[int]: + if 0 <= index < len(self.elements): + return self.elements[index] + return None + + def __str__(self) -> str: + return f"JouleProfile(elements={self.elements}, profile_start={self.metadata.profile_start}, timestep_duration={self.metadata.timestep_duration})" diff --git a/flexmeasures_s2/profile_steering/common/joule_range_profile.py b/flexmeasures_s2/profile_steering/common/joule_range_profile.py new file mode 100644 index 0000000..ac86e03 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/joule_range_profile.py @@ -0,0 +1,204 @@ +from dataclasses import dataclass +from datetime import datetime, timedelta +from typing import List, Optional, TypeVar, Union, Tuple + +from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile + + +@dataclass +class Element: + """ + Represents an element in a JouleRangeProfile with min and max joule values. + Both values can be None, representing unbounded values. + """ + + min_joule: Optional[int] = None + max_joule: Optional[int] = None + + # Class constant for NULL element + NULL = None # Will be set after class definition + + def __eq__(self, other): + if not isinstance(other, Element): + return False + return self.min_joule == other.min_joule and self.max_joule == other.max_joule + + def __str__(self): + return f"Element(min_joule={self.min_joule}, max_joule={self.max_joule})" + + +# Set the NULL element after class definition +Element.NULL = Element(None, None) + + +class JouleRangeProfile(AbstractProfile[Element, "JouleRangeProfile"]): + """ + A profile containing elements with minimum and maximum joule values. + This is the Python implementation of the Java JouleRangeProfile class. + """ + + def __init__( + self, + profile_start: Union[datetime, ProfileMetadata], + timestep_duration: Optional[timedelta] = None, + elements: Optional[List[Element]] = None, + min_value: Optional[int] = None, + max_value: Optional[int] = None, + nr_of_timesteps: Optional[int] = None, + ): + """ + Initialize a JouleRangeProfile with various constructor options. + + Args: + profile_start: Either a datetime representing profile start or a ProfileMetadata + timestep_duration: Duration of each timestep (if profile_start is datetime) + elements: List of Element objects with min/max joule values + min_value: Optional default min value for all elements + max_value: Optional default max value for all elements + nr_of_timesteps: Number of timesteps for the profile + """ + if isinstance(profile_start, ProfileMetadata): + metadata = profile_start + if nr_of_timesteps is None: + nr_of_timesteps = metadata.nr_of_timesteps + + elements = self._create_element_array(nr_of_timesteps, min_value, max_value) + + else: + if elements is not None: + metadata = ProfileMetadata(profile_start, timestep_duration or timedelta(), len(elements)) + elif nr_of_timesteps is not None: + metadata = ProfileMetadata(profile_start, timestep_duration or timedelta(), nr_of_timesteps) + elements = self._create_element_array(nr_of_timesteps, min_value, max_value) + else: + metadata = ProfileMetadata(profile_start, timestep_duration or timedelta(), 0) + elements = [] + + super().__init__(metadata, elements) + + def _create_element_array( + self, nr_of_timesteps: int, min_value: Optional[int], max_value: Optional[int] + ) -> List[Element]: + if min_value is None and max_value is None: + return [Element(None, None)] * nr_of_timesteps + return [Element(min_value, max_value)] * nr_of_timesteps + + def validate(self, profile_metadata: ProfileMetadata, elements: List[Element]): + """Validate the elements and metadata for this profile.""" + super().validate(profile_metadata, elements) + # Add any JouleRangeProfile-specific validation here if needed + + def default_value(self) -> Element: + return Element(None, None) + + def subprofile(self, new_start_date: datetime) -> "JouleRangeProfile": + """ + Create a subprofile starting from the given date. + + Args: + new_start_date: Start date for the new profile + + Returns: + New JouleRangeProfile starting from the given date + """ + index = self.index_at(new_start_date) + if index < 0: + raise ValueError("New start date is outside profile range") + new_elements = self.elements[index:] + return JouleRangeProfile(new_start_date, self.metadata.timestep_duration, new_elements) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "JouleRangeProfile": + """ + Adjust the number of elements in this profile. + + Args: + nr_of_elements: New number of elements + + Returns: + New JouleRangeProfile with adjusted number of elements + """ + if nr_of_elements < len(self.elements): + new_elements = self.elements[:nr_of_elements] + else: + new_elements = self.elements + [Element(None, None)] * (nr_of_elements - len(self.elements)) + return JouleRangeProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + new_elements, + ) + + def is_compatible(self, other: AbstractProfile) -> bool: + """ + Check if this profile is compatible with another profile. + + Args: + other: Another profile to check compatibility with + + Returns: + True if compatible, False otherwise + + """ + return self.metadata.timestep_duration == other.metadata.timestep_duration and len(self.elements) == len( + other.elements + ) + + def get_energy_for_timestep(self, index: int) -> Optional[int]: + if 0 <= index < len(self.elements): + return self.elements[index].max_joule + return None + + def get_min_energy_for_timestep(self, index: int) -> Optional[int]: + if 0 <= index < len(self.elements): + return self.elements[index].min_joule + return None + + def get_max_energy_for_timestep(self, index: int) -> Optional[int]: + if 0 <= index < len(self.elements): + return self.elements[index].max_joule + return None + + def add(self, other: "JouleRangeProfile") -> "JouleRangeProfile": + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + summed_elements = [Element(None, None)] * len(self.elements) + for i in range(len(self.elements)): + if self.elements[i].min_joule is None or other.elements[i].min_joule is None: + summed_elements[i] = Element(None, None) + else: + summed_elements[i] = Element( + self.elements[i].min_joule + other.elements[i].min_joule, + self.elements[i].max_joule + other.elements[i].max_joule, + ) + return JouleRangeProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + summed_elements, + ) + + def subtract(self, other: "JouleRangeProfile") -> "JouleRangeProfile": + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + diff_elements = [Element(None, None)] * len(self.elements) + for i in range(len(self.elements)): + if self.elements[i].min_joule is None or other.elements[i].min_joule is None: + diff_elements[i] = Element(None, None) + else: + diff_elements[i] = Element( + self.elements[i].min_joule - other.elements[i].max_joule, + self.elements[i].max_joule - other.elements[i].min_joule, + ) + return JouleRangeProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + diff_elements, + ) + + def __str__(self) -> str: + """Return a string representation of this profile.""" + return ( + f"JouleRangeProfile(elements={self.elements}, " + f"profile_start={self.metadata.profile_start}, " + f"timestep_duration={self.metadata.timestep_duration})" + ) diff --git a/flexmeasures_s2/profile_steering/common/profile_metadata.py b/flexmeasures_s2/profile_steering/common/profile_metadata.py new file mode 100644 index 0000000..ebce1e1 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/profile_metadata.py @@ -0,0 +1,105 @@ +from datetime import datetime, timedelta + + +class ProfileMetadata: + NR_OF_TIMESTEPS_KEY = "nrOfTimesteps" + TIMESTEP_DURATION_KEY = "timestepDurationMs" + PROFILE_START_KEY = "profileStart" + + def __init__( + self, + profile_start: datetime, + timestep_duration: timedelta, + nr_of_timesteps: int, + ): + self.profile_start = profile_start + self.timestep_duration = timestep_duration + self.nr_of_timesteps = nr_of_timesteps + self.profile_end = profile_start + timestep_duration * nr_of_timesteps + self.profile_duration = self.profile_end - self.profile_start + + def get_profile_start(self) -> datetime: + return self.profile_start + + def get_timestep_duration(self) -> timedelta: + return self.timestep_duration + + def get_nr_of_timesteps(self) -> int: + return self.nr_of_timesteps + + def get_profile_end(self) -> datetime: + return self.profile_end + + def get_profile_duration(self) -> timedelta: + return self.profile_duration + + def get_profile_start_at_timestep(self, i: int) -> datetime: + if i >= self.nr_of_timesteps or i < 0: + raise ValueError(f"Expected i to be between 0 <= i < {self.nr_of_timesteps} but was {i}") + return self.profile_start + self.timestep_duration * i + + def get_starting_step_nr(self, instant: datetime) -> int: + if instant < self.profile_start: + return -1 + elif instant >= self.profile_end: + return self.nr_of_timesteps + else: + duration_between_secs = (instant - self.profile_start).total_seconds() + timestep_duration_secs = self.timestep_duration.total_seconds() + return int(duration_between_secs // timestep_duration_secs) + + def is_aligned_with(self, other: "ProfileMetadata") -> bool: + return ( + self.timestep_duration == other.timestep_duration + and ( + abs((self.profile_start - other.profile_start).total_seconds()) % self.timestep_duration.total_seconds() + ) + == 0 + ) + + def to_dict(self) -> dict: + return { + self.PROFILE_START_KEY: int(self.profile_start.timestamp() * 1000), + self.TIMESTEP_DURATION_KEY: int(self.timestep_duration.total_seconds() * 1000), + self.NR_OF_TIMESTEPS_KEY: self.nr_of_timesteps, + } + + @staticmethod + def from_dict(data: dict) -> "ProfileMetadata": + profile_start = datetime.fromtimestamp(data[ProfileMetadata.PROFILE_START_KEY] / 1000) + timestep_duration = timedelta(milliseconds=data[ProfileMetadata.TIMESTEP_DURATION_KEY]) + nr_of_timesteps = data[ProfileMetadata.NR_OF_TIMESTEPS_KEY] + return ProfileMetadata(profile_start, timestep_duration, nr_of_timesteps) + + def subprofile(self, new_start_date: datetime) -> "ProfileMetadata": + if new_start_date < self.profile_start: + raise ValueError("The new start date should be after the current start date") + new_start_date = self.next_aligned_date(new_start_date, self.timestep_duration) + skipped_steps = int( + (new_start_date - self.profile_start).total_seconds() // self.timestep_duration.total_seconds() + ) + nr_of_elements = max(0, self.nr_of_timesteps - skipped_steps) + return ProfileMetadata(new_start_date, self.timestep_duration, nr_of_elements) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "ProfileMetadata": + return ProfileMetadata(self.profile_start, self.timestep_duration, nr_of_elements) + + @staticmethod + def next_aligned_date(date: datetime, timestep_duration: timedelta) -> datetime: + # Align the date to the next timestep + remainder = (date - datetime.min).total_seconds() % timestep_duration.total_seconds() + if remainder == 0: + return date + return date + timedelta(seconds=(timestep_duration.total_seconds() - remainder)) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, ProfileMetadata): + return False + return ( + self.nr_of_timesteps == other.nr_of_timesteps + and self.profile_start == other.profile_start + and self.timestep_duration == other.timestep_duration + ) + + def __hash__(self) -> int: + return hash((self.nr_of_timesteps, self.profile_start, self.timestep_duration)) diff --git a/flexmeasures_s2/profile_steering/common/proposal.py b/flexmeasures_s2/profile_steering/common/proposal.py new file mode 100644 index 0000000..1a38627 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/proposal.py @@ -0,0 +1,131 @@ +from typing import Optional +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import ( + DevicePlanner, +) + + +class Proposal: + def __init__( + self, + global_diff_target: TargetProfile, + diff_to_congestion_max: JouleProfile, + diff_to_congestion_min: JouleProfile, + proposed_plan: JouleProfile, + old_plan: JouleProfile, + origin: DevicePlanner, + ): + self.global_diff_target = global_diff_target + self.diff_to_congestion_max = diff_to_congestion_max + self.diff_to_congestion_min = diff_to_congestion_min + self.proposed_plan = proposed_plan + self.old_plan = old_plan + self.global_improvement_value: Optional[float] = None + self.congestion_improvement_value: Optional[float] = None + self.cost_improvement_value: Optional[float] = None + self.origin = origin + + def get_global_improvement_value(self) -> float: + if self.global_improvement_value is None: + # print(f"self.old_plan: {self.old_plan}") + # print(f"self.proposed_plan: {self.proposed_plan}") + # print the quadratic distance of the global diff target + # print(f"self.global_diff_target.sum_quadratic_distance(): {self.global_diff_target.sum_quadratic_distance()}") + self.global_improvement_value = ( + self.global_diff_target.sum_quadratic_distance() + - self.global_diff_target.add(self.old_plan) + .subtract(self.proposed_plan) + .sum_quadratic_distance() + ) + return self.global_improvement_value + + # def get_cost_improvement_value(self) -> float: + # if self.cost_improvement_value is None: + # self.cost_improvement_value = self.get_cost( + # self.old_plan, self.global_diff_target + # ) - self.get_cost(self.proposed_plan, self.global_diff_target) + # return self.cost_improvement_value + + # @staticmethod + # def get_cost(plan: JouleProfile, target_profile: TargetProfile) -> float: + # cost = 0.0 + # for i in range(target_profile.get_profile_metadata().get_nr_of_timesteps()): + # joule_usage = plan.get_elements()[i] + # target_element = target_profile.get_elements()[i] + # if isinstance(target_element, TargetProfile.TariffElement): + # cost += (joule_usage / 3_600_000) * target_element.get_tariff() + # return cost + + def get_congestion_improvement_value(self) -> float: + if self.congestion_improvement_value is None: + zero_profile = JouleProfile( + self.old_plan.get_profile_metadata().get_profile_start(), + self.old_plan.get_profile_metadata().get_timestep_duration(), + [0] * len(self.old_plan.get_elements()), + ) + exceed_max_target_old = self.diff_to_congestion_max.minimum( + zero_profile + ).sum_quadratic_distance() + # print(f"exceed_max_target_old: {exceed_max_target_old}") + # print(f"self.diff_to_congestion_max: {self.diff_to_congestion_max}") + exceed_max_target_proposal = ( + self.diff_to_congestion_max.add(self.old_plan) + .subtract(self.proposed_plan) + .minimum(zero_profile) + .sum_quadratic_distance() + ) + # print(f"exceed_max_target_proposal: {exceed_max_target_proposal}") + exceed_min_target_old = self.diff_to_congestion_min.maximum( + zero_profile + ).sum_quadratic_distance() + # print(f"exceed_min_target_old: {exceed_min_target_old}") + exceed_min_target_proposal = ( + self.diff_to_congestion_min.add(self.old_plan) + .subtract(self.proposed_plan) + .maximum(zero_profile) + .sum_quadratic_distance() + ) + # print(f"exceed_min_target_proposal: {exceed_min_target_proposal}") + if ( + exceed_max_target_old == exceed_max_target_proposal + and exceed_min_target_old == exceed_min_target_proposal + ): + self.congestion_improvement_value = 0.0 + else: + self.congestion_improvement_value = ( + exceed_max_target_old + + exceed_min_target_old + - exceed_max_target_proposal + - exceed_min_target_proposal + ) + # print(f"congestion_improvement_value: {self.congestion_improvement_value}") + return self.congestion_improvement_value + + def is_preferred_to(self, other: "Proposal") -> bool: + if self.get_congestion_improvement_value() >= 0: + if ( + self.get_global_improvement_value() + > other.get_global_improvement_value() + ): + return True + elif ( + self.get_global_improvement_value() + == other.get_global_improvement_value() + # and self.get_cost_improvement_value() + # > other.get_cost_improvement_value() + ): + return True + return False + + def get_origin(self) -> DevicePlanner: + return self.origin + + def get_proposed_plan(self) -> JouleProfile: + return self.proposed_plan + + def get_old_plan(self) -> JouleProfile: + return self.old_plan + + def get_energy(self) -> JouleProfile: + return self.proposed_plan diff --git a/flexmeasures_s2/profile_steering/common/s2_actuator_configuration.py b/flexmeasures_s2/profile_steering/common/s2_actuator_configuration.py new file mode 100644 index 0000000..b70b0c9 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/s2_actuator_configuration.py @@ -0,0 +1,20 @@ +class S2ActuatorConfiguration: + def __init__(self, operation_mode_id, factor): + self.operation_mode_id = operation_mode_id + self.factor = factor + + def get_operation_mode_id(self): + return self.operation_mode_id + + def get_factor(self): + return self.factor + + def to_dict(self): + return {"operationModeId": self.operation_mode_id, "factor": self.factor} + + @staticmethod + def from_dict(data): + return S2ActuatorConfiguration(data["operationModeId"], data["factor"]) + + def __str__(self): + return f"S2ActuatorConfiguration [operationModeId={self.operation_mode_id}, factor={self.factor}]" diff --git a/flexmeasures_s2/profile_steering/common/soc_profile.py b/flexmeasures_s2/profile_steering/common/soc_profile.py new file mode 100644 index 0000000..32b1f8e --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/soc_profile.py @@ -0,0 +1,45 @@ +from typing import List, Optional +from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from datetime import datetime + + +class SoCProfile(AbstractProfile[float, "SoCProfile"]): + def __init__(self, profile_metadata: ProfileMetadata, elements: Optional[List[float]] = None): + self.profile_metadata = profile_metadata + self.timestep_duration = self.profile_metadata.timestep_duration + self.profile_start = self.profile_metadata.profile_start + self.profile_end = self.profile_metadata.profile_end + super().__init__(self.profile_metadata, elements if elements is not None else []) + + def default_value(self) -> Optional[float]: + return None + + def __str__(self) -> str: + return f"SoCProfile(elements={self.elements}, profile_start={self.profile_start}, timestep_duration={self.timestep_duration})" + + def is_compatible(self, other: AbstractProfile) -> bool: + return self.metadata.timestep_duration == other.metadata.timestep_duration and len(self.elements) == len( + other.elements + ) + + def validate(self, profile_metadata: ProfileMetadata, elements: List[float]): + super().validate(profile_metadata, elements) + + def subprofile(self, new_start_date: datetime) -> "SoCProfile": + index = self.index_at(new_start_date) + if index < 0: + raise ValueError("New start date is outside profile range") + new_elements = self.elements[index:] + return SoCProfile(new_start_date, self.metadata.timestep_duration, new_elements) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "SoCProfile": + if nr_of_elements < len(self.elements): + new_elements = self.elements[:nr_of_elements] + else: + new_elements = self.elements + [0.0] * (nr_of_elements - len(self.elements)) + return SoCProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + new_elements, + ) diff --git a/flexmeasures_s2/profile_steering/common/target_profile.py b/flexmeasures_s2/profile_steering/common/target_profile.py new file mode 100644 index 0000000..b82eab3 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common/target_profile.py @@ -0,0 +1,150 @@ +from typing import List, Union +from datetime import datetime, timedelta +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.abstract_profile import AbstractProfile +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata + + +class TargetProfile(AbstractProfile[Union["TargetProfile.Element", None], "TargetProfile"]): + class Element: + pass + + class JouleElement(Element): + def __init__(self, joules: int): + self.joules = joules + + def get_joules(self) -> int: + return self.joules + + class NullElement(Element): + pass + + NULL_ELEMENT: "TargetProfile.Element" = NullElement() + + def __init__( + self, + profile_start: datetime, + timestep_duration: timedelta, + elements: List["TargetProfile.Element | None"], + ): + metadata = ProfileMetadata(profile_start, timestep_duration, len(elements)) + super().__init__(metadata, elements) + # if elements is a list of ints, convert it to a list of JouleElement + if isinstance(elements, list) and all(isinstance(e, int) for e in elements): + self.elements = [TargetProfile.JouleElement(e) for e in elements] + else: + self.elements = elements + + def validate( + self, + profile_metadata: ProfileMetadata, + elements: List["TargetProfile.Element | None"], + ): + super().validate(profile_metadata, elements) + # Add any TargetProfile-specific validation if needed + + def default_value(self) -> "TargetProfile.Element": + return TargetProfile.NULL_ELEMENT + + def subprofile(self, new_start_date: datetime) -> "TargetProfile": + index = self.index_at(new_start_date) + if index < 0: + raise ValueError("New start date is outside profile range") + new_elements = self.elements[index:] + return TargetProfile(new_start_date, self.metadata.timestep_duration, new_elements) + + def adjust_nr_of_elements(self, nr_of_elements: int) -> "TargetProfile": + if nr_of_elements < len(self.elements): + new_elements = self.elements[:nr_of_elements] + else: + new_elements = self.elements + [self.default_value()] * (nr_of_elements - len(self.elements)) + return TargetProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + new_elements, + ) + + def is_compatible(self, other: AbstractProfile) -> bool: + return self.metadata.timestep_duration == other.metadata.timestep_duration and len(self.elements) == len( + other.elements + ) + + def get_total_energy(self) -> int: + return sum(e.get_joules() for e in self.elements if isinstance(e, TargetProfile.JouleElement)) + + def target_elements_to_joule_profile(self) -> JouleProfile: + joules = [e.get_joules() for e in self.elements if isinstance(e, TargetProfile.JouleElement)] + return JouleProfile( + self.metadata.profile_start, + self.metadata.timestep_duration, + joules, + ) + + def nr_of_joule_target_elements(self) -> int: + return len([e for e in self.elements if isinstance(e, TargetProfile.JouleElement)]) + + def subtract(self, other: JouleProfile) -> "TargetProfile": + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + diff_elements: List["TargetProfile.Element | None"] = [] + for i, element in enumerate(self.elements): + if isinstance(element, TargetProfile.JouleElement): + other_energy = other.get_energy_for_timestep(i) + if other_energy is not None: + diff_elements.append(TargetProfile.JouleElement(element.get_joules() - other_energy)) + else: + diff_elements.append(self.NULL_ELEMENT) + else: + diff_elements.append(self.NULL_ELEMENT) + return TargetProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + diff_elements, + ) + + def add(self, other: JouleProfile) -> "TargetProfile": + if not self.is_compatible(other): + raise ValueError("Profiles are not compatible") + sum_elements: List["TargetProfile.Element | None"] = [] + for i, element in enumerate(self.elements): + if isinstance(element, TargetProfile.JouleElement): + other_energy = other.get_energy_for_timestep(i) + if other_energy is not None: + sum_elements.append(TargetProfile.JouleElement(element.get_joules() + other_energy)) + else: + sum_elements.append(self.NULL_ELEMENT) + else: + sum_elements.append(self.NULL_ELEMENT) + return TargetProfile( + self.metadata.get_profile_start(), + self.metadata.get_timestep_duration(), + sum_elements, + ) + + def sum_quadratic_distance(self) -> float: + return sum(e.get_joules() ** 2 for e in self.elements if isinstance(e, TargetProfile.JouleElement)) + + def __str__(self) -> str: + return f"TargetProfile(elements={self.elements}, profile_start={self.metadata.profile_start}, timestep_duration={self.metadata.timestep_duration})" + + def get_profile_metadata(self) -> ProfileMetadata: + return self.metadata + + def get_elements(self) -> List["TargetProfile.Element | None"]: + return self.elements + + @staticmethod + def null_profile(metadata: ProfileMetadata) -> "TargetProfile": + return TargetProfile( + metadata.profile_start, + metadata.timestep_duration, + [TargetProfile.NULL_ELEMENT] * metadata.nr_of_timesteps, + ) + + @staticmethod + def from_joule_profile(joule_profile: JouleProfile) -> "TargetProfile": + return TargetProfile( + joule_profile.metadata.profile_start, + joule_profile.metadata.timestep_duration, + [TargetProfile.JouleElement(e) for e in joule_profile.elements], + ) diff --git a/flexmeasures_s2/profile_steering/common_data_structures.py b/flexmeasures_s2/profile_steering/common_data_structures.py new file mode 100644 index 0000000..3a67895 --- /dev/null +++ b/flexmeasures_s2/profile_steering/common_data_structures.py @@ -0,0 +1,52 @@ +from datetime import datetime +from typing import List, Dict, Any, Optional + +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile + + +class ClusterState: + """Class representing the state of a cluster of devices.""" + + def __init__(self, timestamp: datetime, device_states: Dict[str, Any] = None, congestion_points_by_connection_id: Dict[str, str] = None): + self._timestamp = timestamp + self._device_states = device_states or {} + self._congestion_points_by_connection_id = congestion_points_by_connection_id or {} + + def set_device_states(self, device_states: Dict[str, Any] = None): + self._device_states = device_states or {} + + def get_device_states(self) -> Dict[str, Any]: + return self._device_states + + def get_congestion_point(self, connection_id: str) -> Optional[str]: + return self._congestion_points_by_connection_id.get(connection_id) + + def set_congestion_point(self, connection_id: str, congestion_point_id: str): + self._congestion_points_by_connection_id[connection_id] = congestion_point_id + + def get_congestion_points(self) -> List[str]: + return list(set(self._congestion_points_by_connection_id.values())) + + +class DevicePlan: + """Class representing a plan for a device.""" + + def __init__(self, device_id: str, profile: JouleProfile): + self._device_id = device_id + self._profile = profile + + def get_device_id(self) -> str: + return self._device_id + + def get_connection_id(self) -> str: + """Get the connection ID for this device plan. + + This is often the same as the device ID but might be different in some cases. + + Returns: + The connection ID + """ + return self._device_id + + def get_profile(self) -> JouleProfile: + return self._profile diff --git a/flexmeasures_s2/profile_steering/congestion_point_planner.py b/flexmeasures_s2/profile_steering/congestion_point_planner.py new file mode 100644 index 0000000..c509101 --- /dev/null +++ b/flexmeasures_s2/profile_steering/congestion_point_planner.py @@ -0,0 +1,245 @@ +from datetime import datetime +from typing import List, Optional +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.joule_range_profile import ( + JouleRangeProfile, +) +from flexmeasures_s2.profile_steering.common.proposal import Proposal +from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import ( + DevicePlanner, +) + + +class CongestionPointPlanner: + def __init__(self, congestion_point_id: str, congestion_target: JouleRangeProfile): + """Initialize a congestion point planner. + + Args: + + congestion_point_id: Unique identifier for this congestion point + congestion_target: Target profile with range constraints for this congestion point + """ + self.MAX_ITERATIONS = 1000 + self.congestion_point_id = congestion_point_id + self.congestion_target = congestion_target + self.profile_metadata = congestion_target.metadata + + # Create an empty profile (using all zeros) + self.empty_profile = JouleProfile( + self.profile_metadata.profile_start, + self.profile_metadata.timestep_duration, + elements=[0] * self.profile_metadata.nr_of_timesteps, + ) + + # List of device controllers that can be used for planning + self.devices: List[DevicePlanner] = [] + + # Keep track of accepted and latest plans + self.accepted_plan = self.empty_profile + self.latest_plan = self.empty_profile + + def add_device(self, device): + """Add a device controller to this congestion point.""" + self.devices.append(device) + + @staticmethod + def is_storage_available(self) -> bool: + """Check if storage is available at this congestion point.""" + # For now, always assume storage is available + return True + + def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: + """Create an initial plan for this congestion point. + + Args: + plan_due_by_date: The date by which the plan must be ready + + Returns: + A JouleProfile representing the initial plan + """ + current_planning = self.empty_profile + + # Aggregate initial plans from all devices + for device in self.devices: + current_planning = current_planning.add( + device.create_initial_planning(plan_due_by_date) + ) + # print(f"Initial planning after adding device {device.get_device_id()}: {current_planning}") + + + # Check if the current planning is within the congestion target range + if self.congestion_target.is_within_range(current_planning): + print(f"Current planning is within the congestion target range. Returning it.") + return current_planning + + # If the current planning is not within the congestion target range, optimize it + print(f"Current planning is not within the congestion target range. Optimizing it.") + + # print(f"Congestion target: {self.congestion_target}") + i = 0 + best_proposal = None + + max_priority_class = self.max_priority_class() + min_priority_class = self.min_priority_class() + + # Iterate over priority classes + for priority_class in range(min_priority_class, max_priority_class + 1): + print(f"Optimizing priority class: {priority_class}") + while True: + best_proposal = None + diff_to_max = self.congestion_target.difference_with_max_value( + current_planning + ) + diff_to_min = self.congestion_target.difference_with_min_value( + current_planning + ) + + # Try to get improved plans from each device controller + for device in self.devices: + if device.get_priority_class() <= priority_class: + try: + proposal = device.create_improved_planning( + self.empty_profile, # Assuming empty global target + diff_to_max, + diff_to_min, + plan_due_by_date, + ) + print( + f"congestion point improvement for '{device.get_device_id()}': {proposal.get_congestion_improvement_value()}" + ) + if ( + best_proposal is None + or proposal.get_congestion_improvement_value() + > best_proposal.get_congestion_improvement_value() + ): + best_proposal = proposal + except Exception as e: + print( + f"Error getting proposal from device {device.get_device_id()}: {e}" + ) + continue + + if ( + best_proposal is None + or best_proposal.get_congestion_improvement_value() <= 0 + ): + break + + # Update the current planning based on the best proposal + current_planning = current_planning.subtract( + best_proposal.get_old_plan() + ).add(best_proposal.get_proposed_plan()) + best_proposal.get_origin().accept_proposal(best_proposal) + i += 1 + + print( + f"Initial planning '{self.congestion_point_id}': best controller '{best_proposal.get_origin().get_device_id()}' with congestion improvement of {best_proposal.get_congestion_improvement_value()}. Iteration {i}." + ) + + if i >= self.MAX_ITERATIONS: + break + + return current_planning + + def create_improved_planning( + self, + difference_profile: JouleProfile, + target_metadata: any, + priority_class: int, + plan_due_by_date: datetime, + ) -> Optional[Proposal]: + """Create an improved plan based on the difference profile. + + Args: + difference_profile: The difference between target and current planning + target_metadata: Metadata about the target profile + priority_class: Priority class for this planning iteration + plan_due_by_date: The date by which the plan must be ready + + Returns: + A Proposal object if an improvement was found, None otherwise + """ + best_proposal = None + + current_planning = self.get_current_planning() + + diff_to_max_value = self.congestion_target.difference_with_max_value( + current_planning + ) + diff_to_min_value = self.congestion_target.difference_with_min_value( + current_planning + ) + # print(f"diff_to_max_value: {diff_to_max_value}") + # print(f"diff_to_min_value: {diff_to_min_value}") + # Try to get improved plans from each device controller + for device in self.devices: + if device.get_priority_class() <= priority_class: + try: + # Get an improved plan from this device + proposal = device.create_improved_planning( + difference_profile, + diff_to_max_value, + diff_to_min_value, + plan_due_by_date, + ) + # print("Plans old vs New") + # print(f"device: {device.get_device_name()}") + # print(f"old: {proposal.get_old_plan()}") + # print(f"new: {proposal.get_proposed_plan()}") + if proposal.get_congestion_improvement_value() < 0: + print( + f"{device.get_device_name()}, congestion improvement: {proposal.get_congestion_improvement_value()}" + ) + + if best_proposal is None or proposal.is_preferred_to(best_proposal): + best_proposal = proposal + except Exception as e: + print( + f"Error getting proposal from device {device.get_device_id()}: {e}" + ) + + continue + + if best_proposal is None: + print( + f"CP '{self.congestion_point_id}': No proposal available at current priority level ({priority_class})" + ) + else: + if best_proposal.get_congestion_improvement_value() == float("-inf"): + raise ValueError( + "Invalid proposal with negative infinity improvement value" + ) + + print( + f"CP '{self.congestion_point_id}': Selected best controller '{best_proposal.get_origin().get_device_name()}' with improvement of {best_proposal.get_global_improvement_value()}." + ) + + return best_proposal + + def get_current_planning(self) -> JouleProfile: + """Get the current planning profile.""" + # Return the latest accepted plan as the current planning + current_planning = self.empty_profile + for device in self.devices: + current_planning = current_planning.add(device.get_current_profile()) + return current_planning + + def add_device_controller(self, device): + """Add a device controller to this congestion point.""" + self.devices.append(device) + + def get_device_controllers(self) -> List[DevicePlanner]: + """Get the list of device controllers.""" + return self.devices + + def max_priority_class(self) -> int: + """Get the maximum priority class among all devices.""" + if not self.devices: + return 1 + return max(device.get_priority_class() for device in self.devices) + + def min_priority_class(self) -> int: + """Get the minimum priority class among all devices.""" + if not self.devices: + return 1 + return min(device.get_priority_class() for device in self.devices) diff --git a/flexmeasures_s2/profile_steering/device_planner/__init__.py b/flexmeasures_s2/profile_steering/device_planner/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/device_planner/device_planner_abstract.py b/flexmeasures_s2/profile_steering/device_planner/device_planner_abstract.py new file mode 100644 index 0000000..a5efb49 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/device_planner_abstract.py @@ -0,0 +1,82 @@ +from datetime import datetime +from typing import Optional +from abc import ABC, abstractmethod +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +from flexmeasures_s2.profile_steering.common.device_planner.device_plan import ( + DevicePlan, +) + + +class DevicePlanner(ABC): + @abstractmethod + def get_device_id(self) -> str: + """Get the device ID.""" + pass + + @abstractmethod + def get_device_name(self) -> str: + """Get the device name.""" + pass + + @abstractmethod + def get_connection_id(self) -> str: + """Get the connection ID.""" + pass + + @abstractmethod + def create_improved_planning( + self, + cluster_diff_profile: TargetProfile, + diff_to_max_profile: JouleProfile, + diff_to_min_profile: JouleProfile, + plan_due_by_date: datetime, + ) -> "Proposal": + """Create an improved planning proposal. + + Args: + cluster_diff_profile: The difference profile for the cluster + diff_to_max_profile: The difference to the maximum profile + diff_to_min_profile: The difference to the minimum profile + plan_due_by_date: The date by which the plan must be ready + + Returns: + A Proposal object representing the improved plan + """ + pass + + @abstractmethod + def create_initial_planning(self, plan_due_by_date: datetime) -> JouleProfile: + """Create an initial planning profile. + + Args: + plan_due_by_date: The date by which the plan must be ready + + Returns: + A JouleProfile representing the initial plan + """ + pass + + @abstractmethod + def accept_proposal(self, accepted_proposal: "Proposal"): + """Accept a proposal and update the device's planning. + + Args: + accepted_proposal: The proposal to accept + """ + pass + + @abstractmethod + def get_current_profile(self) -> JouleProfile: + """Get the current profile of the device.""" + pass + + @abstractmethod + def get_device_plan(self) -> Optional[DevicePlan]: + """Get the device plan.""" + pass + + @abstractmethod + def get_priority_class(self) -> int: + """Get the priority class of the device.""" + pass diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py new file mode 100644 index 0000000..bc101e0 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/fill_level_target_util.py @@ -0,0 +1,55 @@ +from datetime import timedelta, timezone + + +class FillLevelTargetElement: + def __init__(self, start, end, lower_limit, upper_limit): + self.start = start + self.end = end + self.lower_limit = lower_limit + self.upper_limit = upper_limit + + def split(self, date): + if self.date_in_element(date): + return [ + FillLevelTargetElement( + self.start, date, self.lower_limit, self.upper_limit + ), + FillLevelTargetElement( + date, self.end, self.lower_limit, self.upper_limit + ), + ] + return [] + + def date_in_element(self, date): + return self.start <= date <= self.end + + +class FillLevelTargetUtil: + @staticmethod + def from_fill_level_target_profile(fill_level_target_profile): + elements = [] + start = fill_level_target_profile.start_time.astimezone(timezone.utc) + for element in fill_level_target_profile.elements: + end = start + timedelta(seconds=element.duration.root) + elements.append( + FillLevelTargetElement( + start, + end, + element.fill_level_range.start_of_range, + element.fill_level_range.end_of_range, + ) + ) + start = end + timedelta(milliseconds=1) + return elements + + @staticmethod + def get_elements_in_range(target_profile, start, end): + elements_in_range = [] + start = start.replace(tzinfo=None) + end = end.replace(tzinfo=None) + for element in target_profile: + element_start = element.start.replace(tzinfo=None) + element_end = element.end.replace(tzinfo=None) + if element_start <= end and element_end >= start: + elements_in_range.append(element) + return elements_in_range diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py new file mode 100644 index 0000000..7b353f9 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_operation_mode_wrapper.py @@ -0,0 +1,74 @@ +from typing import List +from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import ( + NumberRangeWrapper, +) +from s2python.frbc import FRBCOperationModeElement + + +class FrbcOperationModeElementWrapper: + def __init__(self, frbc_operation_mode_element: FRBCOperationModeElement): + self.fill_rate = NumberRangeWrapper( + frbc_operation_mode_element.fill_rate.start_of_range, + frbc_operation_mode_element.fill_rate.end_of_range, + ) + self.power_ranges = [ + NumberRangeWrapper(pr.start_of_range, pr.end_of_range) + for pr in frbc_operation_mode_element.power_ranges + ] + self.fill_level_range = NumberRangeWrapper( + frbc_operation_mode_element.fill_level_range.start_of_range, + frbc_operation_mode_element.fill_level_range.end_of_range, + ) + self.frbc_operation_mode_element = frbc_operation_mode_element + + def get_fill_rate(self) -> NumberRangeWrapper: + return self.fill_rate + + def get_power_ranges(self) -> List[NumberRangeWrapper]: + return self.power_ranges + + def get_fill_level_range(self) -> NumberRangeWrapper: + return self.fill_level_range + + def get_power_ranges(self): + return self.frbc_operation_mode_element.power_ranges + + +class FrbcOperationModeWrapper: + def __init__(self, frbc_operation_mode): + self.id = frbc_operation_mode.id + self.diagnostic_label = frbc_operation_mode.diagnostic_label + self.abnormal_condition_only = frbc_operation_mode.abnormal_condition_only + self.elements = [ + FrbcOperationModeElementWrapper(element) + for element in frbc_operation_mode.elements + ] + self.uses_factor = self.calculate_uses_factor() + + def calculate_uses_factor(self) -> bool: + from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( + S2FrbcDeviceStateWrapper, + ) + + for element in self.elements: + if ( + abs( + element.fill_rate.start_of_range + - element.fill_rate.end_of_range + ) + > S2FrbcDeviceStateWrapper.epsilon + ): + return True + for power_range in element.frbc_operation_mode_element.power_ranges: + if ( + abs(power_range.start_of_range - power_range.end_of_range) + > S2FrbcDeviceStateWrapper.epsilon + ): + return True + return False + + def get_elements(self) -> List[FrbcOperationModeElementWrapper]: + return self.elements + + def is_uses_factor(self) -> bool: + return self.uses_factor diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py new file mode 100644 index 0000000..39e6209 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_state.py @@ -0,0 +1,501 @@ +from datetime import datetime +from s2python.frbc import ( + FRBCSystemDescription, +) +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +from s2python.frbc.frbc_actuator_status import FRBCActuatorStatus +import flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper as s2_frbc_device_state_wrapper + +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( + S2ActuatorConfiguration, +) +import flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep as frbc_timestep +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.selection_reason_result import ( + SelectionResult, + SelectionReason, +) + +from typing import Dict, Optional, Any + + +class FrbcState: + constraint_epsilon = 1e-4 + tariff_epsilon = 0.5 + + def __init__( + self, + timestep, + present_fill_level: float, + device_state: Optional[S2FrbcDeviceState] = None, + previous_state: Optional["FrbcState"] = None, + actuator_configurations: Optional[Dict[str, S2ActuatorConfiguration]] = None, + ): + if previous_state: + if device_state: + self.device_state = ( + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper(device_state) + ) + else: + self.device_state = previous_state.device_state + self.timestep = timestep + self.previous_state = previous_state + self.system_description = timestep.get_system_description() + self.fill_level = present_fill_level + self.bucket = 0 + self.timestep_energy = 0.0 + self.fill_level = previous_state.fill_level + seconds = self.timestep.get_duration_seconds() + for actuator_id, actuator_configuration in actuator_configurations.items(): + om = self.device_state.get_operation_mode( + self.timestep, + actuator_id, + actuator_configuration.get_operation_mode_id(), + ) + self.timestep_energy += ( + self.device_state.get_operation_mode_power( + om, + previous_state.fill_level, + actuator_configuration.get_factor(), + ) + * seconds + ) + + self.fill_level += ( + self.device_state.get_operation_mode_fill_rate( + om, + previous_state.fill_level, + actuator_configuration.get_factor(), + ) + * seconds + ) + self.fill_level -= ( + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( + self.timestep, self.fill_level + ) + * seconds + ) + self.fill_level += self.timestep.get_forecasted_usage() + self.bucket = ( + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.calculate_bucket( + self.timestep, self.fill_level + ) + ) + if ( + previous_state.system_description.valid_from + == self.system_description.valid_from + ): + self.timer_elapse_map = previous_state.get_timer_elapse_map().copy() + for ( + actuator_id, + actuator_configuration, + ) in actuator_configurations.items(): + previous_operation_mode_id = ( + previous_state.get_actuator_configurations()[ + actuator_id + ].get_operation_mode_id() + ) + new_operation_mode_id = ( + actuator_configuration.get_operation_mode_id() + ) + if previous_operation_mode_id != new_operation_mode_id: + transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( + self.timestep, + actuator_id, + previous_operation_mode_id, + new_operation_mode_id, + ) + last_timer_id = None + new_finished_at = None + for timer_id in transition.start_timers: + duration = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_timer_duration( + self.timestep, actuator_id, str(timer_id) + ) + new_finished_at = self.timestep.get_start_date() + duration + last_timer_id = timer_id + if last_timer_id is not None: + key = FrbcState.timer_key(actuator_id, str(last_timer_id)) + self.timer_elapse_map[key] = new_finished_at + else: + self.timer_elapse_map = ( + self.get_initial_timer_elapse_map_for_system_description( + self.system_description + ) + ) + # calculate scores + target = self.timestep.get_target() + if isinstance(target, TargetProfile.JouleElement): + self.sum_squared_distance = ( + previous_state.get_sum_squared_distance() + + (target.get_joules() - self.timestep_energy) ** 2 + ) + self.sum_energy_cost = previous_state.get_sum_energy_cost() + else: + self.sum_squared_distance = previous_state.get_sum_squared_distance() + self.sum_energy_cost = previous_state.get_sum_energy_cost() + squared_constraint_violation = ( + previous_state.get_sum_squared_constraint_violation() + ) + if self.timestep.get_max_constraint() is not None: + if self.timestep_energy > self.timestep.get_max_constraint(): + squared_constraint_violation += ( + self.timestep_energy - self.timestep.get_max_constraint() + ) ** 2 + if self.timestep.get_min_constraint() is not None: + if self.timestep_energy < self.timestep.get_min_constraint(): + squared_constraint_violation += ( + self.timestep.get_min_constraint() - self.timestep_energy + ) ** 2 + self.sum_squared_constraint_violation = ( + previous_state.get_sum_squared_constraint_violation() + + squared_constraint_violation + ) + self.sum_squared_energy = ( + previous_state.get_sum_squared_energy() + self.timestep_energy**2 + ) + + self.selection_reason: Optional[SelectionReason] = None + self.actuator_configurations = actuator_configurations or {} + for k in list(self.get_actuator_configurations().keys()): + if isinstance(k, str): + self.actuator_configurations[k] = self.actuator_configurations.pop( + k + ) + + self.timestep.add_state(self) + + else: + self.device_state = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper( + device_state + ) + self.timestep = timestep + self.previous_state = None + self.system_description = timestep.get_system_description() + self.fill_level = present_fill_level + self.bucket = 0 + self.timestep_energy = 0.0 + self.sum_squared_distance = 0.0 + self.sum_squared_constraint_violation = 0.0 + self.sum_energy_cost = 0.0 + self.sum_squared_energy = 0.0 + self.selection_reason: Optional[SelectionReason] = None + self.actuator_configurations = {} + self.timer_elapse_map = ( + self.get_initial_timer_elapse_map_for_system_description( + self.system_description + ) + ) + for a in self.device_state.get_actuator_statuses(): + actuator_status = a + actuators = self.system_description.actuators + for actuator in actuators: + if actuator.id == a.actuator_id: + self.actuator_configurations[ + str(a.actuator_id) + ] = S2ActuatorConfiguration( + str(actuator_status.active_operation_mode_id), + actuator_status.operation_mode_factor, + ) + + @staticmethod + def get_initial_timer_elapse_map_for_system_description( + system_description: FRBCSystemDescription, + ) -> Dict[tuple, datetime]: + timer_elapse_map = {} + for actuator in system_description.actuators: + for timer in actuator.timers: + key = FrbcState.timer_key(str(actuator.id), str(timer.id)) + timer_elapse_map[key] = datetime.min # arbitrary day in the past + return timer_elapse_map + + def calculate_state_values( + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], + ): + self.timestep_energy = 0.0 + self.fill_level = previous_state.get_fill_level() + seconds = self.timestep.get_duration_seconds() + for actuator_id, actuator_configuration in actuator_configurations.items(): + om = self.device_state.get_operation_mode( + self.timestep, + actuator_id, + actuator_configuration.get_operation_mode_id(), + ) + self.timestep_energy += ( + self.device_state.get_operation_mode_power( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), + ) + * seconds + ) + self.fill_level += ( + self.device_state.get_operation_mode_fill_rate( + om, + previous_state.get_fill_level(), + actuator_configuration.get_factor(), + ) + * seconds + ) + self.fill_level -= ( + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_leakage_rate( + self.timestep, self.fill_level + ) + * seconds + ) + self.fill_level += self.timestep.get_forecasted_usage() + self.bucket = ( + s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.calculate_bucket( + self.timestep, self.fill_level + ) + ) + self.update_timers(previous_state, actuator_configurations) + self.calculate_scores(previous_state) + self.timestep.add_state(self) + + def update_timers( + self, + previous_state: "FrbcState", + actuator_configurations: Dict[str, S2ActuatorConfiguration], + ): + if ( + previous_state.system_description.valid_from + == self.system_description.valid_from + ): + self.timer_elapse_map = previous_state.get_timer_elapse_map().copy() + for actuator_id, actuator_configuration in actuator_configurations.items(): + previous_operation_mode_id = ( + previous_state.get_actuator_configurations()[ + actuator_id + ].get_operation_mode_id() + ) + new_operation_mode_id = actuator_configuration.get_operation_mode_id() + if previous_operation_mode_id != new_operation_mode_id: + transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( + self.timestep, + actuator_id, + previous_operation_mode_id, + new_operation_mode_id, + ) + if transition is None: + continue + for timer_id in transition.start_timers: + duration = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_timer_duration( + self.timestep, actuator_id, str(timer_id) + ) + new_finished_at = self.timestep.get_start_date() + duration + key = FrbcState.timer_key(actuator_id, str(timer_id)) + self.timer_elapse_map[key] = new_finished_at + else: + self.timer_elapse_map = ( + self.get_initial_timer_elapse_map_for_system_description( + self.system_description + ) + ) + + def calculate_scores(self, previous_state: "FrbcState"): + target = self.timestep.get_target() + if isinstance(target, TargetProfile.JouleElement): + self.sum_squared_distance = ( + previous_state.get_sum_squared_distance() + + (target.get_joules() - self.timestep_energy) ** 2 + ) + self.sum_energy_cost = previous_state.get_sum_energy_cost() + + else: + self.sum_squared_distance = previous_state.get_sum_squared_distance() + self.sum_energy_cost = previous_state.get_sum_energy_cost() + squared_constraint_violation = ( + previous_state.get_sum_squared_constraint_violation() + ) + if ( + self.timestep.get_max_constraint() is not None + and self.timestep_energy > self.timestep.get_max_constraint() + ): + squared_constraint_violation += ( + self.timestep_energy - self.timestep.get_max_constraint() + ) ** 2 + if ( + self.timestep.get_min_constraint() is not None + and self.timestep_energy < self.timestep.get_min_constraint() + ): + squared_constraint_violation += ( + self.timestep.get_min_constraint() - self.timestep_energy + ) ** 2 + self.sum_squared_constraint_violation = ( + previous_state.get_sum_squared_constraint_violation() + + squared_constraint_violation + ) + self.sum_squared_energy = ( + previous_state.get_sum_squared_energy() + self.timestep_energy**2 + ) + + @staticmethod + def timer_key(actuator_id: str, timer_id: str) -> tuple: + return (actuator_id, timer_id) + + def generate_next_timestep_states(self, target_timestep): + all_actions = self.device_state.get_all_possible_actuator_configurations( + target_timestep + ) + for action in all_actions: + self.try_create_next_state(self, target_timestep, action) + + @staticmethod + def try_create_next_state( + previous_state: "FrbcState", + target_timestep, + actuator_configs_for_target_timestep: Dict[str, S2ActuatorConfiguration], + ): + if ( + previous_state.system_description.valid_from + == target_timestep.system_description.valid_from + ): + for ( + actuator_id, + actuator_configuration, + ) in actuator_configs_for_target_timestep.items(): + + # print all the keys in the previous_state.get_actuator_configurations() + # print(previous_state.get_actuator_configurations().keys()) + try: + previous_operation_mode_id = ( + previous_state.get_actuator_configurations()[ + actuator_id + ].get_operation_mode_id() + ) + except KeyError: + raise KeyError( + f"UUID {actuator_id} not found in actuator configurations" + ) + + new_operation_mode_id = actuator_configuration.get_operation_mode_id() + if previous_operation_mode_id != new_operation_mode_id: + transition = s2_frbc_device_state_wrapper.S2FrbcDeviceStateWrapper.get_transition( + target_timestep, + actuator_id, + previous_operation_mode_id, + new_operation_mode_id, + ) + if transition is None: + return False + for timer_id in transition.blocking_timers: + timer_is_finished_at = ( + previous_state.get_timer_elapse_map().get( + FrbcState.timer_key(actuator_id, str(timer_id)) + ) + ) + if ( + timer_is_finished_at + and timer_is_finished_at.year != 1 + and target_timestep.get_start_date() + < timer_is_finished_at.astimezone( + target_timestep.get_start_date().tzinfo + ) + ): + return False + FrbcState( + timestep=target_timestep, + previous_state=previous_state, + actuator_configurations=actuator_configs_for_target_timestep, + present_fill_level=0, + ) + return True + + def is_preferable_than(self, other_state: "FrbcState") -> SelectionResult: + if ( + abs( + self.sum_squared_constraint_violation + - other_state.get_sum_squared_constraint_violation() + ) + >= self.constraint_epsilon + ): + return SelectionResult( + result=self.sum_squared_constraint_violation + < other_state.get_sum_squared_constraint_violation(), + reason=SelectionReason.CONGESTION_CONSTRAINT, + ) + elif ( + abs(self.sum_squared_distance - other_state.get_sum_squared_distance()) + >= self.constraint_epsilon + ): + return SelectionResult( + result=self.sum_squared_distance + < other_state.get_sum_squared_distance(), + reason=SelectionReason.ENERGY_TARGET, + ) + elif ( + abs(self.sum_energy_cost - other_state.get_sum_energy_cost()) + >= self.tariff_epsilon + ): + return SelectionResult( + result=self.sum_energy_cost < other_state.get_sum_energy_cost(), + reason=SelectionReason.TARIFF_TARGET, + ) + else: + return SelectionResult( + result=self.sum_squared_energy < other_state.get_sum_squared_energy(), + reason=SelectionReason.MIN_ENERGY, + ) + + def is_within_fill_level_range(self): + fill_level_range = self.system_description.storage.fill_level_range + return ( + self.fill_level >= fill_level_range.start_of_range + and self.fill_level <= fill_level_range.end_of_range + ) + + def get_fill_level_distance(self): + fill_level_range = self.system_description.storage.fill_level_range + if self.fill_level < fill_level_range.start_of_range: + return fill_level_range.start_of_range - self.fill_level + else: + return self.fill_level - fill_level_range.end_of_range + + def get_device_state(self): + return self.device_state + + def get_previous_state(self): + return self.previous_state + + def get_actuator_configurations(self): + return self.actuator_configurations + + def get_fill_level(self) -> float: + return self.fill_level + + def get_bucket(self) -> int: + return self.bucket + + def get_timestep_energy(self) -> float: + return self.timestep_energy + + def get_sum_squared_distance(self) -> float: + return self.sum_squared_distance + + def get_sum_squared_constraint_violation(self) -> float: + return self.sum_squared_constraint_violation + + def get_sum_energy_cost(self) -> float: + return self.sum_energy_cost + + def get_sum_squared_energy(self) -> float: + return self.sum_squared_energy + + def get_timer_elapse_map(self) -> Dict[tuple, datetime]: + return self.timer_elapse_map + + def set_selection_reason(self, selection_reason): + self.selection_reason = selection_reason + + def get_selection_reason(self) -> Optional[SelectionReason]: + return self.selection_reason + + def get_system_description(self) -> FRBCSystemDescription: + return self.system_description + + def get_timestep(self): + return self.timestep diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py new file mode 100644 index 0000000..f8b663b --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/frbc_timestep.py @@ -0,0 +1,173 @@ +from datetime import datetime, timedelta +from typing import List, Optional + +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import ( + NumberRangeWrapper, +) +from s2python.frbc import FRBCSystemDescription, FRBCLeakageBehaviour +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_state import FrbcState +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) +from enum import Enum + + +class SelectionReason(Enum): + NO_ALTERNATIVE = "NA" + EMERGENCY_STATE = "ES" + CONGESTION_CONSTRAINT = "CC" + ENERGY_TARGET = "ET" + TARIFF_TARGET = "TT" + MIN_ENERGY = "ME" + + @property + def abbr(self) -> str: + return self.value + + +class FrbcTimestep: + def __init__( + self, + start_date: datetime, + end_date: datetime, + system_description: FRBCSystemDescription, + leakage_behaviour: FRBCLeakageBehaviour, + fill_level_target: Optional[NumberRangeWrapper], + forecasted_fill_level_usage: float, + computational_parameters: S2FrbcDeviceState.ComputationalParameters, + ): + self.nr_of_buckets: int = computational_parameters.get_nr_of_buckets() + self.start_date: datetime = start_date + self.end_date: datetime = end_date + self.duration: timedelta = end_date - start_date + self.system_description: FRBCSystemDescription = system_description + self.leakage_behaviour: FRBCLeakageBehaviour = leakage_behaviour + self.fill_level_target: Optional[NumberRangeWrapper] = fill_level_target + self.forecasted_fill_level_usage: float = forecasted_fill_level_usage + self.state_list: List[Optional[FrbcState]] = [None] * (self.nr_of_buckets + 1) + self.emergency_state: Optional[FrbcState] = None + # print timestep start date and end date + # print(f"Timestep start date: {self.start_date}, end date: {self.end_date}") + # print(f"Forecasted fill level usage: {self.forecasted_fill_level_usage}") + # if self.fill_level_target is not None: + # print(f"Fill level start of range: {self.fill_level_target.start_of_range}") + # print(f"Fill level end of range: {self.fill_level_target.end_of_range}") + + def get_nr_of_buckets(self) -> int: + return self.nr_of_buckets + + def set_targets( + self, target: float, min_constraint: float, max_constraint: float + ) -> None: + self.target = target + self.min_constraint = min_constraint + self.max_constraint = max_constraint + + def add_state(self, state: FrbcState) -> None: + if state and state.is_within_fill_level_range(): + stored_state = self.state_list[state.bucket] + if stored_state is None: + self.state_list[state.bucket] = state + state.set_selection_reason(SelectionReason.NO_ALTERNATIVE) + else: + selection_result = state.is_preferable_than(stored_state) + if selection_result.result: + self.state_list[state.bucket] = state + self.state_list[state.bucket].set_selection_reason(selection_result.reason) # type: ignore + else: + if ( + self.emergency_state is None + or state.get_fill_level_distance() + < self.emergency_state.get_fill_level_distance() + ): + self.emergency_state = state + state.set_selection_reason(SelectionReason.EMERGENCY_STATE) + + def add_all_states(self, states: List[FrbcState]) -> None: + for state in states: + self.add_state(state) + + def get_start_date(self) -> datetime: + return self.start_date + + def get_end_date(self) -> datetime: + return self.end_date + + def get_system_description(self) -> FRBCSystemDescription: + return self.system_description + + def get_leakage_behaviour(self) -> FRBCLeakageBehaviour: + return self.leakage_behaviour + + def get_duration(self) -> timedelta: + return self.duration + + def get_duration_seconds(self) -> int: + return int(self.duration.total_seconds()) + + def get_target(self) -> TargetProfile.JouleElement: + return self.target + + def get_min_constraint(self) -> float: + return self.min_constraint + + def get_max_constraint(self) -> float: + return self.max_constraint + + def get_fill_level_target(self) -> Optional[NumberRangeWrapper]: + return self.fill_level_target + + def get_state_list(self) -> List[Optional[FrbcState]]: + return self.state_list + + def get_final_states(self) -> List[FrbcState]: + final_states = [state for state in self.state_list if state is not None] + # print out the position of the states in final_states + + if not final_states and self.emergency_state is not None: + return [self.emergency_state] + return final_states + + def get_final_states_within_fill_level_target(self) -> List[FrbcState]: + final_states = self.get_final_states() + if self.fill_level_target is None: + return final_states + final_states = [ + s for s in final_states if self.state_is_within_fill_level_target_range(s) + ] + if final_states: + return final_states + best_state = min( + self.get_final_states(), key=self.get_fill_level_target_distance + ) + return [best_state] + + def state_is_within_fill_level_target_range(self, state: FrbcState) -> bool: + if self.fill_level_target is None: + return True + return ( + self.fill_level_target.start_of_range is None + or state.get_fill_level() >= self.fill_level_target.start_of_range + ) and ( + self.fill_level_target.end_of_range is None + or state.get_fill_level() <= self.fill_level_target.end_of_range + ) + + def get_fill_level_target_distance(self, state: FrbcState) -> float: + if self.fill_level_target is None: + return 0 + if ( + self.fill_level_target.end_of_range is None + or state.get_fill_level() < self.fill_level_target.start_of_range + ): + return self.fill_level_target.start_of_range - state.get_fill_level() + else: + return state.get_fill_level() - self.fill_level_target.end_of_range + + def get_forecasted_usage(self) -> float: + return self.forecasted_fill_level_usage + + def clear(self) -> None: + self.state_list = [None] * len(self.state_list) + self.emergency_state = None diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py new file mode 100644 index 0000000..91ae363 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/operation_mode_profile_tree.py @@ -0,0 +1,357 @@ +from datetime import datetime, timedelta +from typing import List, Optional, Any, Tuple +from zoneinfo import ZoneInfo + +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import ( + FrbcTimestep, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( + S2FrbcDeviceStateWrapper, +) + +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_state import FrbcState +from flexmeasures_s2.profile_steering.device_planner.frbc.fill_level_target_util import ( + FillLevelTargetUtil, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.usage_forecast_util import ( + UsageForecastUtil, +) +from flexmeasures_s2.profile_steering.s2_utils.number_range_wrapper import ( + NumberRangeWrapper, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import S2FrbcPlan +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.soc_profile import SoCProfile +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) +from pint import UnitRegistry + +SI = UnitRegistry() + + +# TODO: Add S2FrbcInsightsProfile?->Update 08-02-2025: Not needed for now +import matplotlib.pyplot as plt +import matplotlib.dates as mdates +import matplotlib.patches as mpatches + + +def plot_planning_results( + timestep_start_times, energy_elements, fill_level_elements, operation_mode_ids, ids +): + """ + Plots the energy, fill level, actuator usage, and operation mode ID lists using matplotlib. + + :param timestep_start_times: List of datetime objects representing the start time of each timestep. + :param energy_elements: List of energy values. + :param fill_level_elements: List of fill level values. + :param operation_mode_ids: List of dictionaries with actuator configurations. + :param ids: List of tuples (id, name) for debugging. + """ + # Create a figure and a set of subplots + fig, axs = plt.subplots(4, 1, figsize=(12, 16), sharex=True) + + # Plot energy elements + axs[0].plot(timestep_start_times, energy_elements, label="Energy", color="blue") + axs[0].set_ylabel("Energy (Joules)") + axs[0].legend(loc="upper right") + axs[0].grid(True) + + # Plot fill level elements + axs[1].plot( + timestep_start_times, fill_level_elements, label="Fill Level", color="green" + ) + axs[1].set_ylabel("Fill Level (%)") + axs[1].legend(loc="upper right") + axs[1].grid(True) + + # Create a dictionary from the list of tuples for easier lookup + id_to_name = {id_val: name for id_val, name in ids} + + # Create a color mapping for names + unique_names = set(name for _, name in ids) + actuator_colors = {name: f"C{i}" for i, name in enumerate(unique_names)} + + # Plot actuator usage + for i, (time, config) in enumerate(zip(timestep_start_times, operation_mode_ids)): + for actuator_id, config in config.items(): + actuator_name = id_to_name.get(str(actuator_id), str(actuator_id)) + axs[2].scatter( + time, + actuator_name, + color=actuator_colors.get(actuator_name, "black"), + label=actuator_name if i == 0 else "", + ) + axs[2].set_ylabel("Actuator Name") + handles, labels = axs[2].get_legend_handles_labels() + by_label = dict(zip(labels, handles)) + axs[2].legend(by_label.values(), by_label.keys(), loc="upper right") + axs[2].grid(True) + + # Plot operation modes + for i, (time, config) in enumerate(zip(timestep_start_times, operation_mode_ids)): + for actuator_id, config in config.items(): + operation_mode_id = getattr(config, "operation_mode_id", None) + if operation_mode_id: + operation_mode_name = id_to_name.get( + str(operation_mode_id), str(operation_mode_id) + ) + axs[3].scatter( + time, + operation_mode_name, + color=actuator_colors.get(operation_mode_name, "black"), + label=operation_mode_name if i == 0 else "", + ) + axs[3].set_ylabel("Operation Mode Name") + handles, labels = axs[3].get_legend_handles_labels() + by_label = dict(zip(labels, handles)) + axs[3].legend(by_label.values(), by_label.keys(), loc="upper right") + axs[3].grid(True) + + # Format the x-axis to show time and set ticks every 30 minutes + axs[3].xaxis.set_major_locator(mdates.MinuteLocator(interval=30)) + axs[3].xaxis.set_major_formatter(mdates.DateFormatter("%H:%M:%S")) + fig.autofmt_xdate() + + # Adjust layout + plt.tight_layout() + plt.show() + + +class OperationModeProfileTree: + def __init__( + self, + device_state: S2FrbcDeviceState, + profile_metadata: ProfileMetadata, + plan_due_by_date: datetime, + ): + self.device_state = S2FrbcDeviceStateWrapper(device_state) + self.profile_metadata = profile_metadata + self.plan_due_by_date = plan_due_by_date + self.timestep_duration_seconds = int( + profile_metadata.get_timestep_duration().total_seconds() + ) + self.timesteps: List[FrbcTimestep] = [] + self.generate_timesteps() + + def generate_timesteps(self) -> None: + time_step_start = self.profile_metadata.get_profile_start() + for i in range(self.profile_metadata.get_nr_of_timesteps()): + if i == 187: + print("here") + time_step_end = ( + time_step_start + self.profile_metadata.get_timestep_duration() + ) + + if i == 0: + time_step_start = self.plan_due_by_date + system_default_timezone = time_step_start.astimezone().tzinfo + time_step_start_dt = time_step_start.astimezone(system_default_timezone) + current_system_description = self.get_latest_before( + time_step_start_dt, + self.device_state.get_system_descriptions(), + lambda sd: sd.valid_from, + ) + current_leakage_behaviour = self.get_latest_before( + time_step_start_dt, + self.device_state.get_leakage_behaviours(), + lambda lb: lb.valid_from, + ) + current_fill_level = self.get_latest_before( + time_step_start_dt, + self.device_state.get_fill_level_target_profiles(), + lambda fl: fl.start_time, + ) + current_fill_level_target = None + if current_fill_level: + current_fill_level_target = ( + FillLevelTargetUtil.from_fill_level_target_profile( + current_fill_level + ) + ) + fill_level_target = self.get_fill_level_target_for_timestep( + current_fill_level_target, time_step_start, time_step_end + ) + current_usage_forecast = self.get_latest_before( + time_step_start_dt, + self.device_state.get_usage_forecasts(), + lambda uf: uf.start_time, + ) + current_usage_forecast_profile = None + if current_usage_forecast: + current_usage_forecast_profile = ( + UsageForecastUtil.from_storage_usage_profile(current_usage_forecast) + ) + + usage_forecast = self.get_usage_forecast_for_timestep( + current_usage_forecast_profile, time_step_start, time_step_end + ) + self.timesteps.append( + FrbcTimestep( + time_step_start.astimezone(system_default_timezone), + time_step_end.astimezone(system_default_timezone), + current_system_description, + current_leakage_behaviour, + fill_level_target, + usage_forecast, + self.device_state.get_computational_parameters(), + ) + ) + time_step_start = time_step_end + + @staticmethod + def get_latest_before(before, select_from, get_date_time): + latest_before = None + latest_before_date_time = None + if select_from: + for current in select_from: + if current: + current_date_time = get_date_time(current).replace(tzinfo=None) + before = before.replace(tzinfo=None) + if current_date_time <= before and ( + latest_before is None + or current_date_time > latest_before_date_time + ): + latest_before = current + latest_before_date_time = current_date_time + return latest_before + + @staticmethod + def get_fill_level_target_for_timestep( + fill_level_target_profile: Optional[Any], + time_step_start: datetime, + time_step_end: datetime, + ) -> Optional[NumberRangeWrapper]: + if not fill_level_target_profile: + return None + time_step_end -= timedelta(milliseconds=1) + lower, upper = None, None + for e in FillLevelTargetUtil.get_elements_in_range( + fill_level_target_profile, time_step_start, time_step_end + ): + if e.lower_limit is not None and (lower is None or e.lower_limit > lower): + lower = e.lower_limit + if e.upper_limit is not None and (upper is None or e.upper_limit < upper): + upper = e.upper_limit + if lower is None and upper is None: + return None + return NumberRangeWrapper(lower, upper) + + @staticmethod + def get_usage_forecast_for_timestep( + usage_forecast: Optional[Any], + time_step_start: datetime, + time_step_end: datetime, + ) -> float: + if not usage_forecast: + return 0 + time_step_end -= timedelta(milliseconds=1) + usage = 0 + usage = UsageForecastUtil.sub_profile( + usage_forecast=usage_forecast, + time_step_start=time_step_start, + time_step_end=time_step_end, + ) + + return usage + + def find_best_plan( + self, + target_profile: Any, + diff_to_min_profile: Any, + diff_to_max_profile: Any, + ids: Optional[dict] = None, + ) -> Tuple[S2FrbcPlan, List[datetime]]: + for i, ts in enumerate(self.timesteps): + ts.clear() + ts.set_targets( + target_profile.get_elements()[i], + diff_to_min_profile.get_elements()[i], + diff_to_max_profile.get_elements()[i], + ) + first_timestep_index = next( + (i for i, ts in enumerate(self.timesteps) if ts.get_system_description()), + -1, + ) + first_timestep = self.timesteps[first_timestep_index] + last_timestep = self.timesteps[-1] + state_zero = FrbcState( + device_state=self.device_state, + timestep=first_timestep, + present_fill_level=0, + ) + state_zero.generate_next_timestep_states(first_timestep) + + for i in range(first_timestep_index, len(self.timesteps) - 1): + # print(f"Generating next timestep states for timestep: {i}") + # if i == 187: + # print("here") + current_timestep = self.timesteps[i] + next_timestep = self.timesteps[i + 1] + final_states = current_timestep.get_final_states_within_fill_level_target() + # print(f"There are {len(final_states)} final states") + for frbc_state in final_states: + frbc_state.generate_next_timestep_states(next_timestep) + end_state = self.find_best_end_state( + last_timestep.get_final_states_within_fill_level_target() + ) + plan = self.convert_to_plan(first_timestep_index, end_state) + # Extract only the time component from each datetime object + timestep_start_times = [ts.get_start_date() for ts in self.timesteps] + + # Now use this list in the plot function + # plot_planning_results(timestep_start_times, plan.get_energy().elements, plan.get_fill_level().elements, plan.get_operation_mode_id(), ids) + + return plan + + @staticmethod + def find_best_end_state(states: List[FrbcState]) -> FrbcState: + best_state = states[0] + for state in states[1:]: + if state.is_preferable_than(best_state).result: + best_state = state + return best_state + + def convert_to_plan( + self, first_timestep_index_with_state: int, end_state: FrbcState + ) -> S2FrbcPlan: + energy: List[int] = [0] * self.profile_metadata.get_nr_of_timesteps() + fill_level: List[float] = [0.0] * self.profile_metadata.get_nr_of_timesteps() + actuators: List[dict] = [{}] * self.profile_metadata.get_nr_of_timesteps() + insight_elements = [None] * self.profile_metadata.get_nr_of_timesteps() + state_selection_reasons: List[str] = [ + "" + ] * self.profile_metadata.get_nr_of_timesteps() + state = end_state + for i in range(self.profile_metadata.get_nr_of_timesteps() - 1, -1, -1): + if i >= first_timestep_index_with_state: + energy[i] = int(state.get_timestep_energy()) + fill_level[i] = state.get_fill_level() + actuators[i] = state.get_actuator_configurations() + state_selection_reasons[ + i + ] = state.get_selection_reason() # type: ignore + state = state.get_previous_state() + else: + energy[i] = 0 + fill_level[i] = 0.0 + actuators[i] = {} + insight_elements[i] = None + energy[0] += self.device_state.get_energy_in_current_timestep().value + return S2FrbcPlan( + False, + JouleProfile( + self.profile_metadata.get_profile_start(), + self.profile_metadata.get_timestep_duration(), + energy, + ), + SoCProfile( + self.profile_metadata, + fill_level, + ), + actuators, + ) + + def get_timestep_duration_seconds(self) -> int: + return self.timestep_duration_seconds diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py new file mode 100644 index 0000000..ed64373 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_actuator_configuration.py @@ -0,0 +1,25 @@ +from typing import Dict, Any + +# TODO: Should this just be an actuator description + + +class S2ActuatorConfiguration: + def __init__(self, operation_mode_id: str, factor): + self.operation_mode_id = operation_mode_id + self.factor = factor + + def get_operation_mode_id(self) -> str: + return self.operation_mode_id + + def get_factor(self) -> float: + return self.factor + + def to_dict(self): + return {"operationModeId": self.operation_mode_id, "factor": self.factor} + + @staticmethod + def from_dict(data: Dict[str, Any]) -> "S2ActuatorConfiguration": + return S2ActuatorConfiguration(str(data["operationModeId"]), data["factor"]) + + def __str__(self): + return f"S2ActuatorConfiguration [operationModeId={self.operation_mode_id}, factor={self.factor}]" diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py new file mode 100644 index 0000000..ed9b070 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_planner.py @@ -0,0 +1,223 @@ +from datetime import datetime +from typing import Optional + +from sqlalchemy.sql.base import elements + +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.proposal import Proposal +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_plan import S2FrbcPlan +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_instruction_profile import ( + S2FrbcInstructionProfile, +) +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state_wrapper import ( + S2FrbcDeviceStateWrapper, +) +from flexmeasures_s2.profile_steering.common.device_planner.device_plan import ( + DevicePlan, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.operation_mode_profile_tree import ( + OperationModeProfileTree, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) +from flexmeasures_s2.profile_steering.device_planner.device_planner_abstract import ( + DevicePlanner, +) + + +# make sure this is a DevicePlanner +class S2FrbcDevicePlanner(DevicePlanner): + def __init__( + self, + s2_frbc_state: S2FrbcDeviceState, + profile_metadata: ProfileMetadata, + plan_due_by_date: datetime, + ): + self.s2_frbc_state = s2_frbc_state + self.profile_metadata = profile_metadata + self.zero_profile = JouleProfile( + profile_metadata.get_profile_start(), + profile_metadata.get_timestep_duration(), + [0] * profile_metadata.get_nr_of_timesteps(), + ) + self.null_profile = JouleProfile( + profile_metadata.get_profile_start(), + profile_metadata.get_timestep_duration(), + elements=[None] * profile_metadata.get_nr_of_timesteps(), + ) + if self.is_storage_available(self.s2_frbc_state): + self.state_tree = OperationModeProfileTree( + self.s2_frbc_state, + profile_metadata, + plan_due_by_date, + ) + self.priority_class = 1 + self.latest_plan: Optional[S2FrbcPlan] = None + self.accepted_plan: Optional[S2FrbcPlan] = None + + def is_storage_available(self, storage_state: S2FrbcDeviceState) -> bool: + latest_before_first_ptu = OperationModeProfileTree.get_latest_before( + self.profile_metadata.get_profile_start().replace(tzinfo=None), + storage_state.get_system_descriptions(), + lambda sd: sd.valid_from.replace(tzinfo=None), + ) + if not storage_state.get_system_descriptions(): + return False + if latest_before_first_ptu is None: + active_and_upcoming_system_descriptions_has_active_storage = any( + # TODO: ask if TypeError: can't compare offset-naive and offset-aware datetimes could be solved differently + self.profile_metadata.get_profile_end().replace(tzinfo=None) + >= sd.valid_from.replace(tzinfo=None) + >= self.profile_metadata.get_profile_start().replace(tzinfo=None) + for sd in storage_state.get_system_descriptions() + ) + else: + active_and_upcoming_system_descriptions_has_active_storage = any( + self.profile_metadata.get_profile_end().replace(tzinfo=None) + >= sd.valid_from.replace(tzinfo=None) + >= latest_before_first_ptu.valid_from.replace(tzinfo=None) + for sd in storage_state.get_system_descriptions() + ) + return ( + storage_state._is_online() + and active_and_upcoming_system_descriptions_has_active_storage + ) + + def get_device_id(self) -> str: + return self.s2_frbc_state.get_device_id() + + def get_connection_id(self) -> str: + return self.s2_frbc_state.get_connection_id() + + def get_device_name(self) -> str: + return self.s2_frbc_state.get_device_name() + + def create_improved_planning( + self, + diff_to_global_target: TargetProfile, + diff_to_max: JouleProfile, + diff_to_min: JouleProfile, + plan_due_by_date: datetime, + ) -> Proposal: + if self.accepted_plan is None: + raise ValueError("No accepted plan found") + + target = diff_to_global_target.add(self.accepted_plan.get_energy()) + + max_profile = diff_to_max.add(self.accepted_plan.get_energy()) + min_profile = diff_to_min.add(self.accepted_plan.get_energy()) + + if self.is_storage_available(self.s2_frbc_state): + self.latest_plan = self.state_tree.find_best_plan( + target, min_profile, max_profile + ) + else: + self.latest_plan = S2FrbcPlan( + idle=True, + energy=self.zero_profile, + fill_level=None, + operation_mode_id=[], + ) + if self.latest_plan is None: + raise ValueError("No latest plan found") + proposal = Proposal( + global_diff_target=diff_to_global_target, + diff_to_congestion_max=diff_to_max, + diff_to_congestion_min=diff_to_min, + proposed_plan=self.latest_plan.get_energy(), + old_plan=self.accepted_plan.get_energy(), + origin=self, + ) + return proposal + + def create_initial_planning( + self, plan_due_by_date: datetime, ids: Optional[dict] = None + ) -> S2FrbcPlan: + if self.is_storage_available(self.s2_frbc_state): + if ids is None: + self.latest_plan = self.state_tree.find_best_plan( + TargetProfile.null_profile(self.profile_metadata), + self.null_profile, + self.null_profile, + ) + else: + self.latest_plan = self.state_tree.find_best_plan( + TargetProfile.null_profile(self.profile_metadata), + self.null_profile, + self.null_profile, + ids, + ) + else: + self.latest_plan = S2FrbcPlan( + idle=True, + energy=self.zero_profile, + fill_level=None, + operation_mode_id=[], + ) + self.accepted_plan = self.latest_plan + return self.latest_plan.get_energy() # type: ignore + + def accept_proposal(self, accepted_proposal: Proposal) -> None: + if self.latest_plan is None: + raise ValueError("No latest plan found") + if accepted_proposal.get_origin() != self: + raise ValueError( + f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." + ) + if not accepted_proposal.get_proposed_plan() == self.latest_plan.get_energy(): + raise ValueError( + f"Storage controller '{self.get_device_id()}' received a proposal that he did not send." + ) + if accepted_proposal.get_congestion_improvement_value() < 0: + raise ValueError( + f"Storage controller '{self.get_device_id()}' received a proposal with negative improvement" + ) + self.accepted_plan = self.latest_plan + + def get_current_profile(self) -> JouleProfile: + if self.accepted_plan is None: + raise ValueError("No accepted plan found") + return self.accepted_plan.get_energy() + + def get_latest_plan(self) -> Optional[S2FrbcPlan]: + return self.latest_plan + + def get_device_plan(self) -> Optional[DevicePlan]: + if self.accepted_plan is None: + return None + return DevicePlan( + device_id=self.get_device_id(), + device_name=self.get_device_name(), + connection_id=self.get_connection_id(), + energy_profile=self.accepted_plan.get_energy(), + fill_level_profile=self.accepted_plan.get_fill_level(), + instruction_profile=self.convert_plan_to_instructions( + self.profile_metadata, self.accepted_plan + ), + ) + + @staticmethod + def convert_plan_to_instructions( + profile_metadata: ProfileMetadata, device_plan: S2FrbcPlan + ) -> S2FrbcInstructionProfile: + elements = [] + actuator_configurations_per_timestep = device_plan.get_operation_mode_id() + if actuator_configurations_per_timestep is not None: + for actuator_configurations in actuator_configurations_per_timestep: + new_element = S2FrbcInstructionProfile.Element( + not actuator_configurations, actuator_configurations + ) + elements.append(new_element) + else: + elements = [None] * profile_metadata.get_nr_of_timesteps() + return S2FrbcInstructionProfile( + profile_start=profile_metadata.get_profile_start(), + timestep_duration=profile_metadata.get_timestep_duration(), + elements=elements, + ) + + def get_priority_class(self) -> int: + return self.priority_class diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py new file mode 100644 index 0000000..d10eb79 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state.py @@ -0,0 +1,97 @@ +from datetime import datetime +from typing import List, Optional, Dict +from s2python.common import CommodityQuantity, PowerForecast +from s2python.frbc import ( + FRBCSystemDescription, + FRBCLeakageBehaviour, + FRBCUsageForecast, + FRBCFillLevelTargetProfile, +) +from s2python.frbc.frbc_actuator_status import FRBCActuatorStatus +from s2python.generated.gen_s2 import FRBCStorageStatus, PowerValue + + +class S2FrbcDeviceState: + class ComputationalParameters: + def __init__(self, nr_of_buckets: int, stratification_layers: int): + self.nr_of_buckets = nr_of_buckets + self.stratification_layers = stratification_layers + + def get_nr_of_buckets(self) -> int: + return self.nr_of_buckets + + def get_stratification_layers(self) -> int: + return self.stratification_layers + + def __init__( + self, + device_id: str, + device_name: str, + connection_id: str, + priority_class: int, + timestamp: datetime, + energy_in_current_timestep: PowerValue, + is_online: bool, + power_forecast: Optional[PowerForecast], + system_descriptions: List[FRBCSystemDescription], + leakage_behaviours: List[FRBCLeakageBehaviour], + usage_forecasts: List[FRBCUsageForecast], + fill_level_target_profiles: List[FRBCFillLevelTargetProfile], + computational_parameters: ComputationalParameters, + actuator_statuses: Optional[List[FRBCActuatorStatus]] = None, + storage_status: Optional[List[FRBCStorageStatus]] = None, + ): + self.device_id = device_id + self.device_name = device_name + self.connection_id = connection_id + self.priority_class = priority_class + self.timestamp = timestamp + self.energy_in_current_timestep = energy_in_current_timestep + self.is_online = is_online + self.power_forecast = power_forecast + self.system_descriptions = system_descriptions + self.leakage_behaviours = leakage_behaviours + self.usage_forecasts = usage_forecasts + self.fill_level_target_profiles = fill_level_target_profiles + self.computational_parameters = computational_parameters + self.actuator_statuses = actuator_statuses + self.storage_status = storage_status + + def get_system_descriptions(self) -> List[FRBCSystemDescription]: + return self.system_descriptions + + def get_leakage_behaviours(self) -> List[FRBCLeakageBehaviour]: + return self.leakage_behaviours + + def get_usage_forecasts(self) -> List[FRBCUsageForecast]: + return self.usage_forecasts + + def get_fill_level_target_profiles(self) -> List[FRBCFillLevelTargetProfile]: + return self.fill_level_target_profiles + + def get_device_id(self) -> str: + return self.device_id + + def get_device_name(self) -> str: + return self.device_name + + def get_connection_id(self) -> str: + return self.connection_id + + def _is_online(self) -> bool: + return self.is_online + + def get_computational_parameters(self) -> ComputationalParameters: + return self.computational_parameters + + def get_power_forecast(self) -> Optional[PowerForecast]: + return self.power_forecast + + def get_energy_in_current_timestep(self) -> CommodityQuantity: + return self.energy_in_current_timestep + + def get_actuator_statuses(self) -> List[FRBCActuatorStatus]: + return self.actuator_statuses + + def get_storage_status(self) -> List[FRBCStorageStatus]: + return self.storage_status diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py new file mode 100644 index 0000000..7bc86b6 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_device_state_wrapper.py @@ -0,0 +1,373 @@ +from datetime import datetime, timedelta +from typing import Dict, List, Optional, Any +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( + S2ActuatorConfiguration, +) +from s2python.common import CommodityQuantity +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_operation_mode_wrapper import ( + FrbcOperationModeWrapper, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_timestep import ( + FrbcTimestep, +) + +from s2python.common.transition import Transition +from s2python.frbc import ( + FRBCLeakageBehaviourElement, + FRBCActuatorDescription, + FRBCActuatorStatus, + FRBCStorageStatus, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) + + +class S2FrbcDeviceStateWrapper: + epsilon = 1e-4 + + def __init__(self, device_state): + self.device_state: S2FrbcDeviceState = device_state + self.nr_of_buckets: int = ( + self.device_state.get_computational_parameters().get_nr_of_buckets() + ) + self.nr_of_stratification_layers: int = ( + self.device_state.get_computational_parameters().get_stratification_layers() + ) + self.actuator_operation_mode_map_per_timestep: Dict[ + datetime, Dict[str, List[str]] + ] = {} + self.all_actions: Dict[datetime, List[Dict[str, S2ActuatorConfiguration]]] = {} + self.operation_mode_uses_factor_map: Dict[str, bool] = {} + self.operation_modes: Dict[str, FrbcOperationModeWrapper] = {} + + def is_online(self) -> bool: + return self.device_state._is_online() + + def get_power_forecast(self) -> Any: + return self.device_state.get_power_forecast() + + def get_system_descriptions(self) -> Any: + return self.device_state.get_system_descriptions() + + def get_leakage_behaviours(self) -> Any: + return self.device_state.get_leakage_behaviours() + + def get_usage_forecasts(self) -> Any: + return self.device_state.get_usage_forecasts() + + def get_fill_level_target_profiles(self) -> Any: + return self.device_state.get_fill_level_target_profiles() + + def get_computational_parameters(self) -> Any: + return self.device_state.get_computational_parameters() + + def get_actuators(self, target_timestep: FrbcTimestep) -> List[str]: + actuator_operation_mode_map = self.actuator_operation_mode_map_per_timestep.get( + target_timestep.get_start_date() + ) + if actuator_operation_mode_map is None: + actuator_operation_mode_map = self.create_actuator_operation_mode_map( + target_timestep + ) + return list(actuator_operation_mode_map.keys()) + + def get_normal_operation_modes_for_actuator( + self, target_timestep: FrbcTimestep, actuator_id: str + ) -> List[str]: + actuator_operation_mode_map = self.actuator_operation_mode_map_per_timestep.get( + target_timestep.get_start_date() + ) + if actuator_operation_mode_map is None: + actuator_operation_mode_map = self.create_actuator_operation_mode_map( + target_timestep + ) + return actuator_operation_mode_map.get(actuator_id, []) + + def create_actuator_operation_mode_map( + self, target_timestep: FrbcTimestep + ) -> Dict[str, List[str]]: + actuator_operation_mode_map = {} + for a in target_timestep.get_system_description().actuators: + actuator_operation_mode_map[str(a.id)] = [ + str(om.id) for om in a.operation_modes if not om.abnormal_condition_only + ] + self.actuator_operation_mode_map_per_timestep[ + target_timestep.get_start_date() + ] = actuator_operation_mode_map + return actuator_operation_mode_map + + def get_operation_mode( + self, target_timestep, actuator_id: str, operation_mode_id: str + ): + from flexmeasures_s2.profile_steering.device_planner.frbc.frbc_operation_mode_wrapper import ( + FrbcOperationModeWrapper, + ) + + om_key = f"{actuator_id}-{operation_mode_id}" + if om_key in self.operation_modes: + return self.operation_modes[om_key] + actuators = target_timestep.get_system_description().actuators + found_actuator_description = next( + (ad for ad in actuators if str(ad.id) == actuator_id), None + ) + if found_actuator_description: + for operation_mode in found_actuator_description.operation_modes: + if str(operation_mode.id) == operation_mode_id: + found_operation_mode = FrbcOperationModeWrapper(operation_mode) + self.operation_modes[om_key] = found_operation_mode + return found_operation_mode + return None + + def operation_mode_uses_factor( + self, + target_timestep: FrbcTimestep, + actuator_id: str, + operation_mode_id: str, + ) -> bool: + key = f"{actuator_id}-{operation_mode_id}" + if key not in self.operation_mode_uses_factor_map: + result = self.get_operation_mode( + target_timestep, actuator_id, operation_mode_id + ).is_uses_factor() + self.operation_mode_uses_factor_map[key] = result + return self.operation_mode_uses_factor_map[key] + + def get_all_possible_actuator_configurations( + self, target_timestep: FrbcTimestep + ) -> List[Dict[Any, S2ActuatorConfiguration]]: + timestep_date = target_timestep.get_start_date() + if timestep_date not in self.all_actions: + possible_actuator_configs = {} + for actuator_id in self.get_actuators(target_timestep): + actuator_list = [] + for operation_mode_id in self.get_normal_operation_modes_for_actuator( + target_timestep, actuator_id + ): + if self.operation_mode_uses_factor( + target_timestep, actuator_id, operation_mode_id + ): + for i in range(self.nr_of_stratification_layers + 1): + factor_for_actuator = i * ( + 1.0 / self.nr_of_stratification_layers + ) + actuator_list.append( + S2ActuatorConfiguration( + operation_mode_id, factor_for_actuator + ) + ) + else: + actuator_list.append( + S2ActuatorConfiguration(operation_mode_id, 0.0) + ) + possible_actuator_configs[actuator_id] = actuator_list + keys = list(possible_actuator_configs.keys()) + actions_for_timestep = [] + combination = [0] * len(keys) + actions_for_timestep.append( + self.combination_to_map(combination, keys, possible_actuator_configs) + ) + while self.increase(combination, keys, possible_actuator_configs): + actions_for_timestep.append( + self.combination_to_map( + combination, keys, possible_actuator_configs + ) + ) + self.all_actions[timestep_date] = actions_for_timestep + return self.all_actions[timestep_date] + + def combination_to_map( + self, + cur: List[int], + keys: List[str], + possible_actuator_configs: Dict[str, List[S2ActuatorConfiguration]], + ) -> Dict[str, S2ActuatorConfiguration]: + combination = {} + for i, key in enumerate(keys): + combination[key] = possible_actuator_configs[key][cur[i]] + return combination + + def increase( + self, + cur: List[int], + keys: List[str], + possible_actuator_configs: Dict[str, List[S2ActuatorConfiguration]], + ) -> bool: + cur[0] += 1 + for i, key in enumerate(keys): + if cur[i] >= len(possible_actuator_configs[key]): + if i + 1 >= len(keys): + return False + cur[i] = 0 + cur[i + 1] += 1 + return True + + @staticmethod + def get_transition( + target_timestep, + actuator_id: str, + from_operation_mode_id: str, + to_operation_mode_id: str, + ) -> Optional[Transition]: + + actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( + target_timestep, actuator_id + ) + if actuator_description is None: + return None + + for transition in actuator_description.transitions: + if ( + str(transition.from_) == from_operation_mode_id + and str(transition.to) == to_operation_mode_id + ): + return transition + else: + # print(f"Transition {transition.from_} -> {transition.to} does not match {from_operation_mode_id} -> {to_operation_mode_id}") + pass + return None + + def get_operation_mode_power( + self, om: FrbcOperationModeWrapper, fill_level: float, factor: float + ) -> float: + + element = self.find_operation_mode_element(om, fill_level) + power_watt = 0 + for power_range in element.get_power_ranges(): + if power_range.commodity_quantity in [ + CommodityQuantity.ELECTRIC_POWER_L1, + CommodityQuantity.ELECTRIC_POWER_L2, + CommodityQuantity.ELECTRIC_POWER_L3, + CommodityQuantity.ELECTRIC_POWER_3_PHASE_SYMMETRIC, + ]: + start = power_range.start_of_range + end = power_range.end_of_range + power_watt += (end - start) * factor + start + return power_watt + + @staticmethod + def find_operation_mode_element(om, fill_level): + element = next( + ( + e + for e in om.get_elements() + if e.fill_level_range.start_of_range + <= fill_level + <= e.fill_level_range.end_of_range + ), + None, + ) + if element is None: + first = om.get_elements()[0] + last = om.get_elements()[-1] + element = ( + first + if fill_level < first.fill_level_range.start_of_range + else last + ) + return element + + def get_operation_mode_fill_rate( + self, om: FrbcOperationModeWrapper, fill_level: float, factor: float + ) -> float: + element = self.find_operation_mode_element(om, fill_level) + fill_rate = element.fill_rate + start = fill_rate.end_of_range + end = fill_rate.start_of_range + return (start - end) * factor + end + + @staticmethod + def get_leakage_rate(target_timestep: FrbcTimestep, fill_level: float) -> float: + if target_timestep.get_leakage_behaviour() is None: + return 0 + else: + return S2FrbcDeviceStateWrapper.find_leakage_element( + target_timestep, fill_level + ).leakage_rate + + @staticmethod + def find_leakage_element( + target_timestep: FrbcTimestep, fill_level: float + ) -> FRBCLeakageBehaviourElement: + leakage = target_timestep.get_leakage_behaviour() + element = next( + ( + e + for e in leakage.elements + if e.fill_level_range.start_of_range + <= fill_level + <= e.fill_level_range.end_of_range + ), + None, + ) + if element is None: + first = leakage.elements[0] + last = leakage.elements[-1] + element = ( + first if fill_level < first.fill_level_range.start_of_range else last + ) + return element + + @staticmethod + def calculate_bucket(target_timestep: FrbcTimestep, fill_level: float) -> int: + fill_level_lower_limit = ( + target_timestep.get_system_description().storage.fill_level_range.start_of_range + ) + fill_level_upper_limit = ( + target_timestep.get_system_description().storage.fill_level_range.end_of_range + ) + return int( + (fill_level - fill_level_lower_limit) + / (fill_level_upper_limit - fill_level_lower_limit) + * target_timestep.get_nr_of_buckets() + ) + + @staticmethod + def get_timer_duration_milliseconds( + target_timestep: FrbcTimestep, actuator_id: str, timer_id: str + ) -> int: + actuator_description = S2FrbcDeviceStateWrapper.get_actuator_description( + target_timestep, actuator_id + ) + if actuator_description is None: + raise ValueError( + f"Actuator description not found for actuator {actuator_id}" + ) + timer = next( + (t for t in actuator_description.timers if str(t.id) == timer_id), + None, + ) + # Return the duration in milliseconds directly + return timer.duration.root if timer else 0 + + @staticmethod + def get_timer_duration( + target_timestep: FrbcTimestep, actuator_id: str, timer_id: str + ) -> timedelta: + return timedelta( + milliseconds=S2FrbcDeviceStateWrapper.get_timer_duration_milliseconds( + target_timestep, actuator_id, timer_id + ) + ) + + @staticmethod + def get_actuator_description( + target_timestep: FrbcTimestep, actuator_id: str + ) -> Optional[FRBCActuatorDescription]: + return next( + ( + ad + for ad in target_timestep.get_system_description().actuators + if str(ad.id) == actuator_id + ), + None, + ) + + def get_energy_in_current_timestep(self) -> CommodityQuantity: + return self.device_state.get_energy_in_current_timestep() + + def get_actuator_statuses(self) -> List[FRBCActuatorStatus]: + return self.device_state.get_actuator_statuses() + + def get_storage_status(self) -> List[FRBCStorageStatus]: + return self.device_state.get_storage_status() diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py new file mode 100644 index 0000000..7e99542 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_instruction_profile.py @@ -0,0 +1,40 @@ +from typing import Dict, List +from datetime import datetime, timedelta +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( + S2ActuatorConfiguration, +) + + +class S2FrbcInstructionProfile: + class Element: + def __init__( + self, + idle: bool, + actuator_configuration: Dict[str, S2ActuatorConfiguration], + ): + self.idle = idle + self.actuator_configuration = actuator_configuration + + def is_idle(self) -> bool: + return self.idle + + def get_actuator_configuration( + self, + ) -> Dict[str, S2ActuatorConfiguration]: + return self.actuator_configuration + + def __init__( + self, + profile_start: datetime, + timestep_duration: timedelta, + elements: List[Element], + ): + self.profile_start = profile_start + self.timestep_duration = timestep_duration + self.elements = elements + + def default_value(self) -> "S2FrbcInstructionProfile.Element": + return S2FrbcInstructionProfile.Element(True, {}) + + def __str__(self) -> str: + return f"S2FrbcInstructionProfile(elements={self.elements})" diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py new file mode 100644 index 0000000..8ce7a04 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/s2_frbc_plan.py @@ -0,0 +1,30 @@ +from typing import List, Dict +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_actuator_configuration import ( + S2ActuatorConfiguration, +) + + +class S2FrbcPlan: + def __init__( + self, + idle: bool, + energy, + fill_level, + operation_mode_id: List[Dict[str, S2ActuatorConfiguration]], + ): + self.idle = idle + self.energy = energy + self.fill_level = fill_level + self.operation_mode_id = operation_mode_id + + def is_idle(self) -> bool: + return self.idle + + def get_energy(self): + return self.energy + + def get_fill_level(self): + return self.fill_level + + def get_operation_mode_id(self) -> List[Dict[str, S2ActuatorConfiguration]]: + return self.operation_mode_id diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/selection_reason_result.py b/flexmeasures_s2/profile_steering/device_planner/frbc/selection_reason_result.py new file mode 100644 index 0000000..757b859 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/selection_reason_result.py @@ -0,0 +1,20 @@ +from enum import Enum + + +class SelectionReason(Enum): + CONGESTION_CONSTRAINT = "C" + ENERGY_TARGET = "E" + TARIFF_TARGET = "T" + MIN_ENERGY = "M" + NO_ALTERNATIVE = "_" + EMERGENCY_STATE = "!" + + +class SelectionResult: + def __init__( + self, + result: bool, + reason: SelectionReason, + ): + self.result = result + self.reason = reason diff --git a/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py new file mode 100644 index 0000000..9f9cbd6 --- /dev/null +++ b/flexmeasures_s2/profile_steering/device_planner/frbc/usage_forecast_util.py @@ -0,0 +1,116 @@ +# TODO: Is this the same as FRBCUsageForecast? + + +from datetime import timedelta, timezone +from typing import List + + +class UsageForecastElement: + def __init__(self, start, end, usage_rate): + self.start = start.replace(tzinfo=None) + self.end = end.replace(tzinfo=None) + self.usage_rate = usage_rate + + def get_usage(self): + seconds = ( + self.end - self.start + ).total_seconds() + 0.001 # one milisecond added for the offeset from total_Seconds() + return seconds * self.usage_rate + + def split(self, date): + if self.date_in_element(date): + return [ + UsageForecastElement(self.start, date, self.usage_rate), + UsageForecastElement(date, self.end, self.usage_rate), + ] + # If the date is not within the range, return the element itself twice to avoid index errors + return [self, self] + + def date_in_element(self, date): + # Ensure both self.start and self.end are offset-naive or offset-aware + if self.start.tzinfo is None and self.end.tzinfo is None: + # Make date offset-naive + date = date.replace(tzinfo=None) + elif self.start.tzinfo is not None and self.end.tzinfo is not None: + # Make date offset-aware with the same timezone as self.start + date = date.astimezone(self.start.tzinfo) + else: + # If there's a mismatch, raise an error or handle it appropriately + raise ValueError("Mismatch between offset-naive and offset-aware datetimes") + + return self.start <= date <= self.end + + +class UsageForecastUtil: + @staticmethod + def from_storage_usage_profile(usage_forecast): + elements = [] + start = usage_forecast.start_time + start = start.astimezone(timezone.utc) + for element in usage_forecast.elements: + end = start + timedelta(seconds=element.duration.root) + elements.append( + UsageForecastElement(start, end, element.usage_rate_expected) + ) + start = end + timedelta(milliseconds=1) + return elements + + @staticmethod + def sub_profile( + usage_forecast: List[UsageForecastElement], time_step_start, time_step_end + ): + if usage_forecast is None: + return 0 + + usage = 0 + time_step_start = time_step_start.replace(tzinfo=None) + time_step_end = time_step_end.replace(tzinfo=None) + + for element in usage_forecast: + element_start = element.start.replace(tzinfo=None) + element_end = element.end.replace(tzinfo=None) + + if element_start < time_step_start < element_end < time_step_end: + # case 1: ....s.....e + # case 1: |-------|.. + split = element.split(time_step_start) + usage += split[1].get_usage() + elif element_start > time_step_start and element_end < time_step_end: + # case 2: s...........e + # case 2: ..|-------|.. + usage += element.get_usage() + elif time_step_start < element_start < time_step_end < element_end: + # case 3: s.....e.... + # case 3: ..|-------| + split = element.split(time_step_end) + usage += split[0].get_usage() + elif element_start < time_step_start and element_end > time_step_end: + # case 4: ....s...e.... + # case 4: |-----------| + split1 = element.split(time_step_start) + split2 = split1[1].split(time_step_end) + usage += split2[0].get_usage() + elif element_start == time_step_start and element_end == time_step_end: + # case 5: s...........e + # case 5: |-----------| + usage += element.get_usage() + elif element_start == time_step_start and element_end > time_step_end: + # case 6: s.....e...... + # case 6: |-----------| + split = element.split(time_step_end) + usage += split[0].get_usage() + elif element_start == time_step_start and element_end < time_step_end: + # case 7: s...............e + # case 7: |-----------|.... + usage += element.get_usage() + elif element_start < time_step_start and element_end == time_step_end: + # case 8: ......s.....e + # case 8: |-----------| + split = element.split(time_step_start) + usage += split[1].get_usage() + elif element_start > time_step_start and element_end == time_step_end: + # case 9: s...........e + # case 9: ...|--------| + usage += element.get_usage() + + return usage diff --git a/flexmeasures_s2/profile_steering/planning_service_impl.py b/flexmeasures_s2/profile_steering/planning_service_impl.py new file mode 100644 index 0000000..2ce9560 --- /dev/null +++ b/flexmeasures_s2/profile_steering/planning_service_impl.py @@ -0,0 +1,252 @@ +from datetime import datetime +from typing import List, Dict, Any, Optional + +# Core profile steering imports +from flexmeasures_s2.profile_steering.root_planner import RootPlanner +from flexmeasures_s2.profile_steering.congestion_point_planner import ( + CongestionPointPlanner, +) + +# Common data types +from flexmeasures_s2.profile_steering.common.joule_range_profile import ( + JouleRangeProfile, +) +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile + +# Import from common data structures to avoid circular imports +from flexmeasures_s2.profile_steering.common_data_structures import ( + ClusterState, + DevicePlan, +) + +# Import cluster related classes +from flexmeasures_s2.profile_steering.cluster_plan import ClusterPlan, ClusterPlanData +from flexmeasures_s2.profile_steering.cluster_target import ClusterTarget + +# Device planner imports +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_planner import ( + S2FrbcDevicePlanner, +) +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) + +# Logger setup +import logging + +logger = logging.getLogger(__name__) + + +class PlanningServiceConfig: + """Configuration for the planning service.""" + + def __init__( + self, + energy_improvement_criterion: float = 0.01, + cost_improvement_criterion: float = 0.01, + congestion_retry_iterations: int = 5, + multithreaded: bool = False, + ): + self._energy_improvement_criterion = energy_improvement_criterion + self._cost_improvement_criterion = cost_improvement_criterion + self._congestion_retry_iterations = congestion_retry_iterations + self._multithreaded = multithreaded + + def energy_improvement_criterion(self) -> float: + return self._energy_improvement_criterion + + def cost_improvement_criterion(self) -> float: + return self._cost_improvement_criterion + + def congestion_retry_iterations(self) -> int: + return self._congestion_retry_iterations + + def multithreaded(self) -> bool: + return self._multithreaded + + +class PlanningService: + """Interface for planning services.""" + + def plan( + self, + state: ClusterState, + target: ClusterTarget, + planning_window: int, + reason: str, + plan_due_by_date: datetime, + optimize_for_target: bool, + max_priority_class: int, + ) -> ClusterPlan: + """Create a plan for the cluster.""" + raise NotImplementedError("Subclasses must implement this method") + + +class PlanningServiceImpl(PlanningService): + """Implementation of the planning service.""" + + DEFAULT_CONGESTION_POINT = "" + + def __init__(self, config: PlanningServiceConfig, context: Any = None): + """Initialize the planning service. + + Args: + config: Configuration for the planning service + context: Execution context (used for multithreading) + """ + self.config = config + self.context = context + logger.info("Planning service initialized") + + def get_congestion_point( + self, cluster_state: ClusterState, connection_id: str + ) -> str: + """Get the congestion point for a connection ID. + + Args: + cluster_state: The state of the cluster + connection_id: The connection ID to get the congestion point for + + Returns: + The congestion point ID, or DEFAULT_CONGESTION_POINT if none is assigned + """ + congestion_point = cluster_state.get_congestion_point(connection_id) + if congestion_point is None: + # This can happen if a device has no congestion point assigned yet. + # We handle this by giving them all the empty congestion point. + return self.DEFAULT_CONGESTION_POINT + return congestion_point + + def create_controller_tree( + self, + cluster_state: ClusterState, + target: ClusterTarget, + plan_due_by_date: datetime, + ) -> RootPlanner: + """Create a tree of controllers for planning. + + Args: + cluster_state: The state of the cluster + target: The target for the cluster + plan_due_by_date: The date by which planning must be completed + + Returns: + A RootPlanner with appropriate device planners added + """ + root_planner = RootPlanner( + target.get_global_target_profile(), + self.config.energy_improvement_criterion(), + self.config.cost_improvement_criterion(), + self.context, + ) + + for device_id, device_state in cluster_state.get_device_states().items(): + congestion_point = self.get_congestion_point( + cluster_state, device_state.get_connection_id() + ) + cpc = root_planner.get_congestion_point_controller(congestion_point) + + if cpc is None: + # Create a new congestion point controller if one doesn't exist yet + congestion_point_target = target.get_congestion_point_target( + congestion_point + ) + if congestion_point == self.DEFAULT_CONGESTION_POINT: + # This is a dummy congestion point. We will give it an empty profile. + congestion_point_target = JouleRangeProfile( + target.get_global_target_profile().get_profile_metadata(), + elements=congestion_point_target.get_elements(), + ) + + cpc = CongestionPointPlanner(congestion_point, congestion_point_target) + root_planner.add_congestion_point_controller(cpc) + + # Add the appropriate device planner based on the device state type + if isinstance(device_state, S2FrbcDeviceState): + logger.debug("S2 FRBC planner created!") + cpc.add_device_controller( + S2FrbcDevicePlanner( + device_state, target.get_profile_metadata(), plan_due_by_date + ) + ) + # Add other device types here as needed + else: + logger.warning( + f"Unknown device! No device planner added for {device_state}" + ) + + return root_planner + + def plan( + self, + state: ClusterState, + target: ClusterTarget, + planning_window: int, + reason: str, + plan_due_by_date: datetime, + optimize_for_target: bool, + max_priority_class: int, + ) -> ClusterPlan: + """Create a plan for the cluster. + + Args: + state: The state of the cluster + target: The target for the cluster + planning_window: The planning window in seconds + reason: The reason for planning + plan_due_by_date: The date by which planning must be completed + optimize_for_target: Whether to optimize for the target + max_priority_class: The maximum priority class to optimize + + Returns: + A ClusterPlan for the cluster + """ + start_time = datetime.now() + + # Make sure that all congestion points in the ClusterState have a target: + for cp in state.get_congestion_points(): + congestion_point_target = target.get_congestion_point_target(cp) + if congestion_point_target is None and cp is not None: + # We don't have a target for the congestion point + logger.warning( + f"CongestionPoint without target! CongestionPoint: {cp}. Generating empty target." + ) + target.set_congestion_point_target( + congestion_point_id=cp, + congestion_point_target=JouleRangeProfile( + profile_start=target.get_global_target_profile().get_profile_metadata(), + ), + ) + + # Create a tree of controllers and run the planning algorithm + root_controller = self.create_controller_tree(state, target, plan_due_by_date) + + try: + root_controller.plan( + plan_due_by_date, + optimize_for_target, + max_priority_class, + self.config.multithreaded(), + ) + + # Collect device plans + device_plans = [] + for cpc in root_controller.cp_controllers: + for device in cpc.get_device_controllers(): + device_plans.append(device.get_device_plan()) + + # Create and return the cluster plan + plan_data = ClusterPlanData(device_plans, target.get_profile_metadata()) + plan = ClusterPlan(state, target, plan_data, reason, plan_due_by_date, None) + + end_time = datetime.now() + execution_time = ( + end_time - start_time + ).total_seconds() * 1000 # Convert to milliseconds + logger.info(f"Generated new plan in {execution_time} ms") + + return plan + except Exception as e: + logger.error(f"Error during planning: {e}") + raise diff --git a/flexmeasures_s2/profile_steering/root_planner.py b/flexmeasures_s2/profile_steering/root_planner.py new file mode 100644 index 0000000..51fa840 --- /dev/null +++ b/flexmeasures_s2/profile_steering/root_planner.py @@ -0,0 +1,130 @@ +from typing import List, Any +from datetime import datetime +from flexmeasures_s2.profile_steering.common.joule_profile import JouleProfile +from .congestion_point_planner import CongestionPointPlanner +from flexmeasures_s2.profile_steering.common.proposal import Proposal +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile + + +class RootPlanner: + MAX_ITERATIONS = 1000 + + def __init__( + self, + target: TargetProfile, + energy_iteration_criterion: float, + cost_iteration_criterion: float, + context: Any, + ): + """ + target: An object that provides a profile. + It must support a method get_profile_start(), + have attributes timestep_duration and nr_of_timesteps, + and (for optimization purposes) support a subtract() method. + context: In a full implementation, this might be an executor or similar. Here it is passed along. + """ + self.context = context + self.target = self.remove_null_values(target) + self.energy_iteration_criterion = energy_iteration_criterion + self.cost_iteration_criterion = cost_iteration_criterion + # Create an empty JouleProfile. + # We assume that target exposes get_profile_start(), timestep_duration and nr_of_timesteps. + self.empty_profile = JouleProfile( + self.target.metadata.profile_start, + self.target.metadata.timestep_duration, + elements=[0] * self.target.metadata.nr_of_timesteps, + ) + self.cp_controllers: List[CongestionPointPlanner] = [] + self.root_ctrl_planning = self.empty_profile + + def remove_null_values(self, target: Any) -> Any: + # TODO: Stub: simply return the target. + # In a full implementation, you would remove or replace null elements. + return target + + def add_congestion_point_controller(self, cpc: CongestionPointPlanner): + self.cp_controllers.append(cpc) + + def get_congestion_point_controller(self, cp_id: str) -> CongestionPointPlanner: + for cp in self.cp_controllers: + if cp.congestion_point_id == cp_id: + return cp + return None + + def plan( + self, + plan_due_by_date: datetime, + optimize_for_target: bool, + max_priority_class_external: int, + multithreaded: bool = False, + ): + # Compute an initial plan by summing each congestion point's initial planning. + self.root_ctrl_planning = self.empty_profile + for cpc in self.cp_controllers: + initial_plan = cpc.create_initial_planning(plan_due_by_date) + self.root_ctrl_planning = self.root_ctrl_planning.add(initial_plan) + + if not optimize_for_target: + return + + if not self.cp_controllers: + return + + # Determine maximum and minimum priority classes across congestion points. + max_priority_class = max(cpc.max_priority_class() for cpc in self.cp_controllers) + min_priority_class = min(cpc.min_priority_class() for cpc in self.cp_controllers) + + # Iterate over the priority classes. + for priority_class in range(min_priority_class, min(max_priority_class, max_priority_class_external) + 1): + i = 0 + best_proposal = None + + # Simulate a do-while loop: we run at least once. + while True: + # Compute the difference profile + difference_profile = self.target.subtract(self.root_ctrl_planning) + best_proposal = None + + # Get proposals from each congestion point controller + for cpc in self.cp_controllers: + print("Improving------------------------->") + try: + proposal = cpc.create_improved_planning( + difference_profile, + self.target.metadata, + priority_class, + plan_due_by_date, + ) + if proposal is not None: + if best_proposal is None or proposal.is_preferred_to(best_proposal): + best_proposal = proposal + except Exception as e: + print(f"Error getting proposal from controller: {e}") + continue + + if best_proposal is None: + # No proposal could be generated; exit inner loop. + break + + # Update the root controller's planning based on the best proposal. + self.root_ctrl_planning = self.root_ctrl_planning.subtract(best_proposal.get_old_plan()) + self.root_ctrl_planning = self.root_ctrl_planning.add(best_proposal.get_proposed_plan()) + + # Let the origin device/controller accept the proposal. + best_proposal.get_origin().accept_proposal(best_proposal) + i += 1 + print( + f"Root controller: selected best controller '{best_proposal.get_origin().get_device_name()}' with global energy impr {best_proposal.get_global_improvement_value()}, congestion impr {best_proposal.get_congestion_improvement_value()}, iteration {i}." + ) + + # Check stopping criteria: if improvement values are below thresholds or max iterations reached. + if ( + best_proposal.get_global_improvement_value() <= self.energy_iteration_criterion + ) or i >= self.MAX_ITERATIONS: + break + + print(f"Optimizing priority class {priority_class} was done after {i} iterations.") + if i >= self.MAX_ITERATIONS: + print( + f"Warning: Optimization stopped due to iteration limit. Priority class: {priority_class}, Iterations: {i}" + ) diff --git a/flexmeasures_s2/profile_steering/s2_utils/__init__.py b/flexmeasures_s2/profile_steering/s2_utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/s2_utils/number_range_wrapper.py b/flexmeasures_s2/profile_steering/s2_utils/number_range_wrapper.py new file mode 100644 index 0000000..1e47d5c --- /dev/null +++ b/flexmeasures_s2/profile_steering/s2_utils/number_range_wrapper.py @@ -0,0 +1,24 @@ +class NumberRangeWrapper: + def __init__(self, start_of_range, end_of_range): + self.start_of_range = start_of_range + self.end_of_range = end_of_range + + def get_start_of_range(self): + return self.start_of_range + + def get_end_of_range(self): + return self.end_of_range + + def __eq__(self, other): + if not isinstance(other, NumberRangeWrapper): + return False + return ( + self.start_of_range == other.start_of_range + and self.end_of_range == other.end_of_range + ) + + def __hash__(self): + return hash((self.start_of_range, self.end_of_range)) + + def __str__(self): + return f"NumberRangeWrapper(startOfRange={self.start_of_range}, endOfRange={self.end_of_range})" diff --git a/flexmeasures_s2/profile_steering/tests/my plot - D = 10 - B = 20 - S = 10 - T = 160.png b/flexmeasures_s2/profile_steering/tests/my plot - D = 10 - B = 20 - S = 10 - T = 160.png new file mode 100644 index 0000000..7683ed0 Binary files /dev/null and b/flexmeasures_s2/profile_steering/tests/my plot - D = 10 - B = 20 - S = 10 - T = 160.png differ diff --git a/flexmeasures_s2/profile_steering/tests/plot_utils.py b/flexmeasures_s2/profile_steering/tests/plot_utils.py new file mode 100644 index 0000000..dcb55d0 --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/plot_utils.py @@ -0,0 +1,22 @@ +# Write a function to plot two given values against each other in a bar chart +# the values are the execution time of the create_initial_planning function +# the two values are the execution time of the Java and the execution time of the Python version +# the values are in seconds +from matplotlib import pyplot as plt + + +def plot_values(java_time, python_time): + # Create a bar chart with the execution times + # make the bars different colors + # show the values on the bars + plt.bar(["Java", "Python"], [java_time, python_time], color=["red", "blue"]) + # show the values on the bars + for i, v in enumerate([java_time, python_time]): + plt.text(i, v, str(v), ha="center", va="bottom") + plt.title("Execution time of create_initial_planning") + plt.xlabel("Language") + plt.ylabel("Time (seconds)") + plt.show() + + +plot_values(0.231, 0.199840) diff --git a/flexmeasures_s2/profile_steering/tests/profiling_10evs.txt b/flexmeasures_s2/profile_steering/tests/profiling_10evs.txt new file mode 100644 index 0000000..81c12da --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/profiling_10evs.txt @@ -0,0 +1,95 @@ +Test the PlanningServiceImpl with an EV device. +Generating plan! +here +here +here +here +here +here +here +here +here +here +Current planning is within the congestion target range. Returning it. +Improving-------------------------> +CP '': Selected best controller 'battery10' with improvement of 5.287368307500032e+16. +Root controller: selected best controller 'battery10' with global energy impr 5.287368307500032e+16, congestion impr 0.0, iteration 1. +Improving-------------------------> +CP '': Selected best controller 'battery9' with improvement of 4.405210942499994e+16. +Root controller: selected best controller 'battery9' with global energy impr 4.405210942499994e+16, congestion impr 0.0, iteration 2. +Improving-------------------------> +CP '': Selected best controller 'battery8' with improvement of 3.673598557500006e+16. +Root controller: selected best controller 'battery8' with global energy impr 3.673598557500006e+16, congestion impr 0.0, iteration 3. +Improving-------------------------> +CP '': Selected best controller 'battery7' with improvement of 2.9415809024999936e+16. +Root controller: selected best controller 'battery7' with global energy impr 2.9415809024999936e+16, congestion impr 0.0, iteration 4. +Improving-------------------------> +CP '': Selected best controller 'battery6' with improvement of 2.344441207499981e+16. +Root controller: selected best controller 'battery6' with global energy impr 2.344441207499981e+16, congestion impr 0.0, iteration 5. +Improving-------------------------> +CP '': Selected best controller 'battery5' with improvement of 1.9925078175000064e+16. +Root controller: selected best controller 'battery5' with global energy impr 1.9925078175000064e+16, congestion impr 0.0, iteration 6. +Improving-------------------------> +CP '': Selected best controller 'battery4' with improvement of 1.6354931625000448e+16. +Root controller: selected best controller 'battery4' with global energy impr 1.6354931625000448e+16, congestion impr 0.0, iteration 7. +Improving-------------------------> +CP '': Selected best controller 'battery3' with improvement of 1.2916190024999936e+16. +Root controller: selected best controller 'battery3' with global energy impr 1.2916190024999936e+16, congestion impr 0.0, iteration 8. +Improving-------------------------> +CP '': Selected best controller 'battery2' with improvement of 9499199624999936.0. +Root controller: selected best controller 'battery2' with global energy impr 9499199624999936.0, congestion impr 0.0, iteration 9. +Improving-------------------------> +CP '': Selected best controller 'battery1' with improvement of 5950983824999936.0. +Root controller: selected best controller 'battery1' with global energy impr 5950983824999936.0, congestion impr 0.0, iteration 10. +Improving-------------------------> +CP '': Selected best controller 'battery10' with improvement of 176728499999744.0. +Root controller: selected best controller 'battery10' with global energy impr 176728499999744.0, congestion impr 0.0, iteration 11. +Improving-------------------------> +CP '': Selected best controller 'battery10' with improvement of 0.0. +Root controller: selected best controller 'battery10' with global energy impr 0.0, congestion impr 0.0, iteration 12. +Optimizing priority class 1 was done after 12 iterations. +Plan generated in 816.82 seconds +Got cluster plan +Got device plan + + _ ._ __/__ _ _ _ _ _/_ Recorded: 09:22:09 Samples: 804852 + /_//_/// /_\ / //_// / //_'/ // Duration: 3318.116 CPU time: 819.221 +/ _/ v5.0.1 + +Program: test_frbc_device.py + +3318.113 test_frbc_device.py:1 +└─ 3316.660 test_planning_service_impl_with_ev_device test_frbc_device.py:582 + ├─ 2499.828 plot_planning_results test_frbc_device.py:458 + │ └─ 2499.460 show matplotlib/pyplot.py:569 + │ [2 frames hidden] matplotlib + │ 2499.459 Tk.mainloop tkinter/__init__.py:1456 + └─ 816.822 PlanningServiceImpl.plan ../planning_service_impl.py:181 + └─ 816.669 RootPlanner.plan ../root_planner.py:54 + ├─ 755.735 CongestionPointPlanner.create_improved_planning ../congestion_point_planner.py:144 + │ └─ 755.530 S2FrbcDevicePlanner.create_improved_planning ../device_planner/frbc/s2_frbc_device_planner.py:98 + │ └─ 755.442 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:259 + │ └─ 752.563 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 + │ └─ 742.274 try_create_next_state ../device_planner/frbc/frbc_state.py:357 + │ ├─ 587.781 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 + │ │ ├─ 155.578 [self] ../device_planner/frbc/frbc_state.py + │ │ ├─ 75.175 UUID.__init__ uuid.py:138 + │ │ ├─ 65.173 S2FrbcDeviceStateWrapper.get_operation_mode_power ../device_planner/frbc/s2_frbc_device_state_wrapper.py:237 + │ │ │ └─ 41.267 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 + │ │ ├─ 62.648 FrbcTimestep.add_state ../device_planner/frbc/frbc_timestep.py:67 + │ │ ├─ 50.049 S2FrbcDeviceStateWrapper.get_operation_mode_fill_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:277 + │ │ │ └─ 33.823 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 + │ │ ├─ 41.714 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 + │ │ └─ 36.547 get_leakage_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:286 + │ ├─ 73.140 UUID.__init__ uuid.py:138 + │ └─ 54.340 [self] ../device_planner/frbc/frbc_state.py + └─ 60.923 CongestionPointPlanner.create_initial_planning ../congestion_point_planner.py:51 + └─ 60.922 S2FrbcDevicePlanner.create_initial_planning ../device_planner/frbc/s2_frbc_device_planner.py:136 + └─ 60.922 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:259 + └─ 60.786 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 + └─ 60.172 try_create_next_state ../device_planner/frbc/frbc_state.py:357 + └─ 47.543 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 + +To view this report with different options, run: + pyinstrument --load-prev 2025-05-19T09-22-09 [options] + diff --git a/flexmeasures_s2/profile_steering/tests/profiling_20_buckets.txt b/flexmeasures_s2/profile_steering/tests/profiling_20_buckets.txt new file mode 100644 index 0000000..d269bac --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/profiling_20_buckets.txt @@ -0,0 +1,8244 @@ +Test the PlanningServiceImpl with an EV device. +Generating plan! +Current planning is within the congestion target range. Returning it. +CP '': Selected best controller 'bat1' with improvement of 5914932975000000.0. +Root controller: selected best controller 'bat1' with global energy impr 5914932975000000.0, congestion impr 0.0, iteration 1. +CP '': Selected best controller 'bat1' with improvement of 0.0. +Root controller: selected best controller 'bat1' with global energy impr 0.0, congestion impr 0.0, iteration 2. +Optimizing priority class 1 was done after 2 iterations. +Plan generated in 1.67 seconds +Got cluster plan +Got device plan + + _ ._ __/__ _ _ _ _ _/_ Recorded: 16:11:14 Samples: 3233 + /_//_/// /_\ / //_// / //_'/ // Duration: 5.397 CPU time: 4.711 +/ _/ v5.0.1 + +Program: test_frbc_device.py + +5.394 test_frbc_device.py:1 +├─ 4.097 test_planning_service_impl_with_ev_device test_frbc_device.py:582 +│ ├─ 2.429 plot_planning_results test_frbc_device.py:526 +│ │ ├─ 2.082 show matplotlib/pyplot.py:569 +│ │ │ └─ 2.082 _BackendTkAgg.show matplotlib/backend_bases.py:3520 +│ │ │ └─ 2.082 FigureManagerTk.start_main_loop matplotlib/backends/_backend_tk.py:534 +│ │ │ └─ 2.082 Tk.mainloop tkinter/__init__.py:1456 +│ │ │ ├─ 1.799 [self] tkinter/__init__.py +│ │ │ └─ 0.283 CallWrapper.__call__ tkinter/__init__.py:1916 +│ │ │ ├─ 0.272 callit tkinter/__init__.py:837 +│ │ │ │ ├─ 0.261 idle_draw matplotlib/backends/_backend_tk.py:272 +│ │ │ │ │ └─ 0.261 FigureCanvasTkAgg.draw matplotlib/backends/backend_tkagg.py:9 +│ │ │ │ │ ├─ 0.236 FigureCanvasTkAgg.draw matplotlib/backends/backend_agg.py:375 +│ │ │ │ │ │ ├─ 0.214 draw_wrapper matplotlib/artist.py:92 +│ │ │ │ │ │ │ └─ 0.214 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ └─ 0.214 Figure.draw matplotlib/figure.py:3237 +│ │ │ │ │ │ │ ├─ 0.209 _draw_list_compositing_images matplotlib/image.py:116 +│ │ │ │ │ │ │ │ └─ 0.209 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ └─ 0.209 Axes.draw matplotlib/axes/_base.py:3116 +│ │ │ │ │ │ │ │ ├─ 0.179 _draw_list_compositing_images matplotlib/image.py:116 +│ │ │ │ │ │ │ │ │ └─ 0.179 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ ├─ 0.164 XAxis.draw matplotlib/axis.py:1407 +│ │ │ │ │ │ │ │ │ │ ├─ 0.088 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.086 XTick.draw matplotlib/axis.py:268 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.086 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.050 Text.draw matplotlib/text.py:738 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.034 RendererAgg.draw_text matplotlib/backends/backend_agg.py:185 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.031 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FontProperties.__eq__ matplotlib/font_manager.py:711 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__hash__ matplotlib/font_manager.py:700 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/font_manager.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Affine2D.rotate_deg matplotlib/transforms.py:1995 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Affine2D.rotate matplotlib/transforms.py:1972 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 cos +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.invalidate matplotlib/transforms.py:155 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _amin numpy/core/_methods.py:43 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/text.py:433 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text._cm_set matplotlib/artist.py:1243 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text. matplotlib/artist.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text.set matplotlib/artist.py:1237 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 normalize_kwargs matplotlib/cbook.py:1742 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._cm_set matplotlib/artist.py:1243 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text. matplotlib/artist.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.set matplotlib/artist.py:1237 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._internal_update matplotlib/artist.py:1226 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._update_props matplotlib/artist.py:1188 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _setattr_cm matplotlib/cbook.py:2010 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text._set_gc_clip matplotlib/artist.py:935 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GraphicsContextBase.set_clip_path matplotlib/backend_bases.py:848 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GraphicsContextBase.set_foreground matplotlib/backend_bases.py:883 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 to_rgba matplotlib/colors.py:277 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_nth_color matplotlib/colors.py:218 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.__init__ matplotlib/transforms.py:1886 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ndarray.copy +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.036 Line2D.draw matplotlib/lines.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 RendererAgg.draw_path matplotlib/backends/backend_agg.py:93 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 TransformedBbox.__array__ matplotlib/transforms.py:236 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 TransformedBbox.get_points matplotlib/transforms.py:1108 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 Line2D.recache matplotlib/lines.py:672 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 broadcast_arrays numpy/lib/stride_tricks.py:480 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _broadcast_shape numpy/lib/stride_tricks.py:416 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/stride_tricks.py:546 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _broadcast_to numpy/lib/stride_tricks.py:340 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/stride_tricks.py:345 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/stride_tricks.py:538 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Path.__init__ matplotlib/path.py:99 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Path._update_values matplotlib/path.py:202 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/path.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 column_stack numpy/lib/shape_base.py:612 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 array +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 RendererAgg.new_gc matplotlib/backend_bases.py:604 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 GraphicsContextBase.__init__ matplotlib/backend_bases.py:680 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] matplotlib/backend_bases.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 to_rgba matplotlib/colors.py:277 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _is_nth_color matplotlib/colors.py:218 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/colors.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CapStyle.__call__ enum.py:359 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] matplotlib/lines.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 Line2D._get_transformed_path matplotlib/lines.py:732 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Line2D._transform_path matplotlib/lines.py:717 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 TransformedPath.__init__ matplotlib/transforms.py:2751 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 TransformedPath.set_children matplotlib/transforms.py:179 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/transforms.py +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.items +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 TransformedPath.get_transformed_points_and_affine matplotlib/transforms.py:2779 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 TransformedPath._revalidate matplotlib/transforms.py:2766 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/transforms.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Path._fast_from_codes_and_verts matplotlib/path.py:162 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _to_unmasked_float_array matplotlib/cbook.py:1337 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asarray +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BlendedGenericTransform.transform_path_non_affine matplotlib/transforms.py:1612 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 to_rgba matplotlib/colors.py:277 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Line2D._set_gc_clip matplotlib/artist.py:935 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GraphicsContextBase.set_clip_path matplotlib/backend_bases.py:848 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Affine2D.frozen matplotlib/transforms.py:1832 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.__init__ matplotlib/transforms.py:1886 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ndarray.copy +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Line2D._get_markerfacecolor matplotlib/lines.py:968 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GraphicsContextBase.set_url matplotlib/backend_bases.py:918 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TransformedPath.get_transformed_path_and_affine matplotlib/transforms.py:2790 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TransformedPath._revalidate matplotlib/transforms.py:2766 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Path._fast_from_codes_and_verts matplotlib/path.py:162 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _to_unmasked_float_array matplotlib/cbook.py:1337 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text.draw matplotlib/text.py:738 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 RendererAgg.draw_text matplotlib/backends/backend_agg.py:185 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 round +│ │ │ │ │ │ │ │ │ │ ├─ 0.030 XAxis._update_label_position matplotlib/axis.py:2449 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 XAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/dates.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 datetime64.tolist +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 datetime.astimezone +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 datetime.strftime +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _interval_contains_close matplotlib/transforms.py:2917 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 MinuteLocator._create_rrule matplotlib/dates.py:1161 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper.set matplotlib/dates.py:963 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper._update_rrule matplotlib/dates.py:969 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _iterinfo.ddayset dateutil/rrule.py:1278 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule.__iter__ dateutil/rrule.py:105 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.viewlim_to_dt matplotlib/dates.py:1099 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 datetime.replace +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 XAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _amin numpy/core/_methods.py:43 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 array +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Affine2D.transform matplotlib/transforms.py:1782 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform_affine matplotlib/transforms.py:1848 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PyCapsule.affine_transform +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _amax numpy/core/_methods.py:39 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__eq__ matplotlib/font_manager.py:711 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Bbox.translated matplotlib/transforms.py:616 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 helper contextlib.py:279 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__init__ contextlib.py:102 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text.get_transform matplotlib/artist.py:448 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 round numpy/core/fromnumeric.py:3269 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _wrapfunc numpy/core/fromnumeric.py:53 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 float64.round +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GettzFunc.__call__ dateutil/tz/tz.py:1552 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 asanyarray +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _iterinfo.ddayset dateutil/rrule.py:1278 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] dateutil/rrule.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 rrule.__mod_distance dateutil/rrule.py:1079 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 divmod +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _iterinfo.ddayset dateutil/rrule.py:1278 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 union matplotlib/transforms.py:641 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/transforms.py:646 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Bbox.xmin matplotlib/transforms.py:299 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/transforms.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min numpy/core/fromnumeric.py:2836 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _wrapreduction numpy/core/fromnumeric.py:71 +│ │ │ │ │ │ │ │ │ │ ├─ 0.027 XAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.027 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.027 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.027 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 get_font matplotlib/font_manager.py:1586 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/font_manager.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/font_manager.py:1610 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/font_manager.py:1349 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_hinting_flag matplotlib/backends/backend_agg.py:41 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FontProperties.__eq__ matplotlib/font_manager.py:711 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 from_bounds matplotlib/transforms.py:795 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_extents matplotlib/transforms.py:804 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.__init__ matplotlib/transforms.py:749 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ndarray.copy +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Affine2D.__init__ matplotlib/transforms.py:1886 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.get_figure matplotlib/artist.py:723 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Figure.get_figure matplotlib/figure.py:232 +│ │ │ │ │ │ │ │ │ │ ├─ 0.013 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 date2num matplotlib/dates.py:405 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ndarray.astype +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/dates.py:447 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 datetime.replace +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.viewlim_to_dt matplotlib/dates.py:1099 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/function_base.py:2453 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isclose numpy/core/numeric.py:2249 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 within_tol numpy/core/numeric.py:2330 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/dates.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 round numpy/core/fromnumeric.py:3269 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _wrapfunc numpy/core/fromnumeric.py:53 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 float64.round +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] numpy/lib/function_base.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 datetime.strftime +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 date2num matplotlib/dates.py:405 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ndarray.astype +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.viewlim_to_dt matplotlib/dates.py:1099 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GettzFunc.__call__ dateutil/tz/tz.py:1552 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _interval_contains_close matplotlib/transforms.py:2917 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 XTick.update_position matplotlib/axis.py:406 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.set_xdata matplotlib/lines.py:1276 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 iterable numpy/lib/function_base.py:348 +│ │ │ │ │ │ │ │ │ │ ├─ 0.004 YAxis._update_label_position matplotlib/axis.py:2676 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 YAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 YAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 YTick.update_position matplotlib/axis.py:467 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 YTick.stale matplotlib/artist.py:315 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 YTick._stale_axes_callback matplotlib/artist.py:102 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes.stale matplotlib/artist.py:315 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes._stale_figure_callback matplotlib/figure.py:65 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Figure.stale matplotlib/artist.py:315 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _auto_draw_if_interactive matplotlib/pyplot.py:1074 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_interactive matplotlib/__init__.py:1339 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/figure.py +│ │ │ │ │ │ │ │ │ │ └─ 0.002 XAxis._update_offset_text_position matplotlib/axis.py:2475 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 union matplotlib/transforms.py:641 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/transforms.py:647 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.xmax matplotlib/transforms.py:309 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 max numpy/core/fromnumeric.py:2692 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _wrapreduction numpy/core/fromnumeric.py:71 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:648 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.ymin matplotlib/transforms.py:304 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _min_dispatcher numpy/core/fromnumeric.py:2831 +│ │ │ │ │ │ │ │ │ ├─ 0.011 Legend.draw matplotlib/legend.py:734 +│ │ │ │ │ │ │ │ │ │ ├─ 0.008 draw_wrapper matplotlib/artist.py:30 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.008 VPacker.draw matplotlib/offsetbox.py:374 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 draw_wrapper matplotlib/artist.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 HPacker.draw matplotlib/offsetbox.py:374 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 draw_wrapper matplotlib/artist.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 VPacker.draw matplotlib/offsetbox.py:374 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 draw_wrapper matplotlib/artist.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 HPacker.draw matplotlib/offsetbox.py:374 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 draw_wrapper matplotlib/artist.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DrawingArea.draw matplotlib/offsetbox.py:651 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.draw matplotlib/lines.py:744 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.draw_path matplotlib/backends/backend_agg.py:93 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TextArea.draw matplotlib/offsetbox.py:785 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.draw matplotlib/text.py:738 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._cm_set matplotlib/artist.py:1243 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text. matplotlib/artist.py:146 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.set matplotlib/artist.py:1237 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._internal_update matplotlib/artist.py:1226 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._update_props matplotlib/artist.py:1188 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 helper contextlib.py:279 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__init__ contextlib.py:102 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TextArea.get_bbox matplotlib/offsetbox.py:762 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TextArea.get_bbox matplotlib/offsetbox.py:762 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:484 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.intervaly matplotlib/transforms.py:338 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 VPacker.get_offset matplotlib/offsetbox.py:54 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 VPacker.get_offset matplotlib/offsetbox.py:291 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Legend._findoffset matplotlib/legend.py:717 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Legend._find_best_position matplotlib/legend.py:1147 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/legend.py:1165 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Bbox.count_contains matplotlib/transforms.py:560 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 VPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TextArea.get_bbox matplotlib/offsetbox.py:762 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_hinting_flag matplotlib/backends/backend_agg.py:41 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ +│ │ │ │ │ │ │ │ │ │ └─ 0.003 VPacker.get_window_extent matplotlib/offsetbox.py:363 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 VPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 VPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 TextArea.get_bbox matplotlib/offsetbox.py:762 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_hinting_flag matplotlib/backends/backend_agg.py:41 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 VPacker.get_offset matplotlib/offsetbox.py:54 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 VPacker.get_offset matplotlib/offsetbox.py:291 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Legend._findoffset matplotlib/legend.py:717 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Legend._find_best_position matplotlib/legend.py:1147 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Legend._get_anchored_bbox matplotlib/legend.py:1128 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_anchored_bbox matplotlib/offsetbox.py:1054 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.anchored matplotlib/transforms.py:479 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.bounds matplotlib/transforms.py:365 +│ │ │ │ │ │ │ │ │ ├─ 0.001 Rectangle.draw matplotlib/patches.py:633 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Rectangle._draw_paths_with_artist_properties matplotlib/patches.py:583 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.draw_path matplotlib/backends/backend_agg.py:93 +│ │ │ │ │ │ │ │ │ ├─ 0.001 Text.draw matplotlib/text.py:738 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.draw_text matplotlib/backends/backend_agg.py:185 +│ │ │ │ │ │ │ │ │ ├─ 0.001 Line2D.draw matplotlib/lines.py:744 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.draw_path matplotlib/backends/backend_agg.py:93 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 TransformedBbox.__array__ matplotlib/transforms.py:236 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 TransformedBbox.get_points matplotlib/transforms.py:1108 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform matplotlib/transforms.py:1782 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform_affine matplotlib/transforms.py:1848 +│ │ │ │ │ │ │ │ │ └─ 0.001 Spine.draw matplotlib/spines.py:293 +│ │ │ │ │ │ │ │ │ └─ 0.001 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ │ │ └─ 0.001 Spine.draw matplotlib/patches.py:633 +│ │ │ │ │ │ │ │ │ └─ 0.001 Spine._draw_paths_with_artist_properties matplotlib/patches.py:583 +│ │ │ │ │ │ │ │ │ └─ 0.001 Spine._set_gc_clip matplotlib/artist.py:935 +│ │ │ │ │ │ │ │ │ └─ 0.001 GraphicsContextBase.set_clip_path matplotlib/backend_bases.py:848 +│ │ │ │ │ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ │ │ │ │ └─ 0.001 dict.items +│ │ │ │ │ │ │ │ ├─ 0.029 Axes._update_title_position matplotlib/axes/_base.py:3044 +│ │ │ │ │ │ │ │ │ ├─ 0.026 YAxis.get_tightbbox matplotlib/axis.py:1348 +│ │ │ │ │ │ │ │ │ │ ├─ 0.013 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 YAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 AutoLocator.__call__ matplotlib/ticker.py:2226 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 AutoLocator.tick_values matplotlib/ticker.py:2230 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 AutoLocator._raw_ticks matplotlib/ticker.py:2157 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 YAxis.get_tick_space matplotlib/axis.py:2821 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 BboxTransformTo.__sub__ matplotlib/transforms.py:1418 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 Affine2D.inverted matplotlib/transforms.py:1869 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 inv numpy/linalg/linalg.py:492 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 [self] numpy/linalg/linalg.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ndarray.astype +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YTick.update_position matplotlib/axis.py:467 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.set_ydata matplotlib/lines.py:1295 +│ │ │ │ │ │ │ │ │ │ ├─ 0.010 YAxis._update_label_position matplotlib/axis.py:2676 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 YAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 YAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform matplotlib/transforms.py:1782 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ScaledTranslation.get_matrix matplotlib/transforms.py:2676 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform matplotlib/transforms.py:1782 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.transform_affine matplotlib/transforms.py:1848 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 YAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 AutoLocator.__call__ matplotlib/ticker.py:2226 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 AutoLocator.tick_values matplotlib/ticker.py:2230 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 nonsingular matplotlib/transforms.py:2837 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 finfo.__new__ numpy/core/getlimits.py:484 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator._raw_ticks matplotlib/ticker.py:2157 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YAxis.get_tick_space matplotlib/axis.py:2821 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 unit matplotlib/transforms.py:785 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator.__call__ matplotlib/ticker.py:2226 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator.tick_values matplotlib/ticker.py:2230 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator._raw_ticks matplotlib/ticker.py:2157 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 scale_range matplotlib/ticker.py:1982 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YTick.update_position matplotlib/axis.py:467 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YTick.stale matplotlib/artist.py:315 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 YTick._stale_axes_callback matplotlib/artist.py:102 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 union matplotlib/transforms.py:641 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:649 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Bbox.ymax matplotlib/transforms.py:314 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _max_dispatcher numpy/core/fromnumeric.py:2687 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/axis.py:1373 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.get_figure matplotlib/artist.py:723 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 YAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _amax numpy/core/_methods.py:39 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ │ └─ 0.002 Text.get_tightbbox matplotlib/artist.py:348 +│ │ │ │ │ │ │ │ │ └─ 0.002 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ └─ 0.002 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ └─ 0.002 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ └─ 0.002 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ └─ 0.002 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ └─ 0.001 Axes._unstale_viewLim matplotlib/axes/_base.py:851 +│ │ │ │ │ │ │ │ └─ 0.001 matplotlib/axes/_base.py:854 +│ │ │ │ │ │ │ │ └─ 0.001 Grouper.get_siblings matplotlib/cbook.py:871 +│ │ │ │ │ │ │ │ └─ 0.001 WeakKeyDictionary.get weakref.py:452 +│ │ │ │ │ │ │ └─ 0.004 draw_wrapper matplotlib/artist.py:53 +│ │ │ │ │ │ │ └─ 0.004 Rectangle.draw matplotlib/patches.py:633 +│ │ │ │ │ │ │ └─ 0.004 Rectangle._draw_paths_with_artist_properties matplotlib/patches.py:583 +│ │ │ │ │ │ │ └─ 0.004 RendererAgg.draw_path matplotlib/backends/backend_agg.py:93 +│ │ │ │ │ │ ├─ 0.018 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ └─ 0.018 NavigationToolbar2Tk._wait_cursor_for_draw_cm matplotlib/backend_bases.py:2907 +│ │ │ │ │ │ │ └─ 0.018 FigureCanvasTkAgg.set_cursor matplotlib/backends/_backend_tk.py:456 +│ │ │ │ │ │ │ └─ 0.018 Canvas.configure tkinter/__init__.py:1668 +│ │ │ │ │ │ │ └─ 0.018 Canvas._configure tkinter/__init__.py:1655 +│ │ │ │ │ │ │ └─ 0.018 tkapp.call +│ │ │ │ │ │ └─ 0.005 FigureCanvasTkAgg.get_renderer matplotlib/backends/backend_agg.py:387 +│ │ │ │ │ │ └─ 0.005 RendererAgg.__init__ matplotlib/backends/backend_agg.py:63 +│ │ │ │ │ └─ 0.025 FigureCanvasTkAgg.blit matplotlib/backends/backend_tkagg.py:13 +│ │ │ │ │ └─ 0.025 blit matplotlib/backends/_backend_tk.py:70 +│ │ │ │ │ ├─ 0.024 _blit matplotlib/backends/_backend_tk.py:56 +│ │ │ │ │ │ └─ 0.024 PyCapsule.blit +│ │ │ │ │ └─ 0.001 [self] matplotlib/backends/_backend_tk.py +│ │ │ │ └─ 0.011 delayed_destroy matplotlib/backends/_backend_tk.py:597 +│ │ │ │ └─ 0.011 Tk.destroy tkinter/__init__.py:2337 +│ │ │ │ ├─ 0.006 NavigationToolbar2Tk.destroy tkinter/__init__.py:2606 +│ │ │ │ │ ├─ 0.005 Frame.destroy tkinter/__init__.py:2606 +│ │ │ │ │ │ └─ 0.005 tkapp.call +│ │ │ │ │ └─ 0.001 tkapp.call +│ │ │ │ └─ 0.005 tkapp.call +│ │ │ ├─ 0.009 FigureCanvasTkAgg.resize matplotlib/backends/_backend_tk.py:251 +│ │ │ │ ├─ 0.008 PhotoImage.configure tkinter/__init__.py:4067 +│ │ │ │ │ └─ 0.008 tkapp.call +│ │ │ │ └─ 0.001 ResizeEvent.__init__ matplotlib/backend_bases.py:1235 +│ │ │ │ └─ 0.001 bool.get_width_height matplotlib/backend_bases.py:1944 +│ │ │ │ └─ 0.001 TransformedBbox.max matplotlib/transforms.py:324 +│ │ │ │ └─ 0.001 TransformedBbox.get_points matplotlib/transforms.py:1108 +│ │ │ │ └─ 0.001 min +│ │ │ └─ 0.003 FigureCanvasTkAgg.motion_notify_event matplotlib/backends/_backend_tk.py:296 +│ │ │ ├─ 0.002 MouseEvent._process matplotlib/backend_bases.py:1187 +│ │ │ │ └─ 0.002 CallbackRegistry.process matplotlib/cbook.py:348 +│ │ │ │ └─ 0.002 NavigationToolbar2Tk.mouse_move matplotlib/backend_bases.py:2951 +│ │ │ │ ├─ 0.001 NavigationToolbar2Tk.set_message matplotlib/backends/_backend_tk.py:721 +│ │ │ │ │ └─ 0.001 StringVar.set tkinter/__init__.py:400 +│ │ │ │ └─ 0.001 _mouse_event_to_message matplotlib/backend_bases.py:2929 +│ │ │ │ └─ 0.001 Axes.format_coord matplotlib/axes/_base.py:4054 +│ │ │ │ └─ 0.001 Axes.format_ydata matplotlib/axes/_base.py:4044 +│ │ │ │ └─ 0.001 matplotlib/transforms.py:195 +│ │ │ └─ 0.001 MouseEvent.__init__ matplotlib/backend_bases.py:1384 +│ │ │ └─ 0.001 MouseEvent.__init__ matplotlib/backend_bases.py:1266 +│ │ │ └─ 0.001 FigureCanvasTkAgg.inaxes matplotlib/backend_bases.py:1803 +│ │ │ └─ 0.001 matplotlib/backend_bases.py:1818 +│ │ │ └─ 0.001 Rectangle.contains_point matplotlib/patches.py:179 +│ │ │ └─ 0.001 Path.contains_point matplotlib/path.py:502 +│ │ │ └─ 0.001 CompositeGenericTransform.frozen matplotlib/transforms.py:2361 +│ │ │ └─ 0.001 CompositeGenericTransform.frozen matplotlib/transforms.py:2361 +│ │ │ └─ 0.001 composite_transform_factory matplotlib/transforms.py:2498 +│ │ │ └─ 0.001 CompositeAffine2D.__init__ matplotlib/transforms.py:2452 +│ │ │ └─ 0.001 CompositeAffine2D.__init__ matplotlib/transforms.py:1769 +│ │ ├─ 0.209 subplots matplotlib/pyplot.py:1620 +│ │ │ ├─ 0.196 figure matplotlib/pyplot.py:872 +│ │ │ │ └─ 0.196 new_figure_manager matplotlib/pyplot.py:549 +│ │ │ │ ├─ 0.186 _BackendTkAgg.new_figure_manager matplotlib/backend_bases.py:3494 +│ │ │ │ │ ├─ 0.185 _BackendTkAgg.new_figure_manager_given_figure matplotlib/backend_bases.py:3503 +│ │ │ │ │ │ └─ 0.185 FigureCanvasTkAgg.new_manager matplotlib/backend_bases.py:1772 +│ │ │ │ │ │ └─ 0.185 FigureManagerTk.create_with_canvas matplotlib/backends/_backend_tk.py:500 +│ │ │ │ │ │ ├─ 0.132 Tk.__init__ tkinter/__init__.py:2279 +│ │ │ │ │ │ │ └─ 0.132 create +│ │ │ │ │ │ ├─ 0.042 FigureManagerTk.__init__ matplotlib/backends/_backend_tk.py:479 +│ │ │ │ │ │ │ └─ 0.042 FigureManagerTk.__init__ matplotlib/backend_bases.py:2609 +│ │ │ │ │ │ │ └─ 0.042 NavigationToolbar2Tk.__init__ matplotlib/backends/_backend_tk.py:622 +│ │ │ │ │ │ │ ├─ 0.040 NavigationToolbar2Tk._Button matplotlib/backends/_backend_tk.py:827 +│ │ │ │ │ │ │ │ ├─ 0.031 Button.__init__ tkinter/__init__.py:2660 +│ │ │ │ │ │ │ │ │ └─ 0.031 Button.__init__ tkinter/__init__.py:2589 +│ │ │ │ │ │ │ │ │ └─ 0.031 tkapp.call +│ │ │ │ │ │ │ │ └─ 0.009 NavigationToolbar2Tk._set_image_for_button matplotlib/backends/_backend_tk.py:748 +│ │ │ │ │ │ │ │ ├─ 0.003 PngImageFile.convert PIL/Image.py:929 +│ │ │ │ │ │ │ │ │ ├─ 0.002 PngImageFile.load PIL/ImageFile.py:186 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 ImagingDecoder.decode +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PngImageFile.load_prepare PIL/PngImagePlugin.py:971 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 PngImageFile.load_prepare PIL/ImageFile.py:323 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 new +│ │ │ │ │ │ │ │ │ └─ 0.001 PngImageFile.copy PIL/Image.py:1265 +│ │ │ │ │ │ │ │ │ └─ 0.001 PngImageFile._new PIL/Image.py:587 +│ │ │ │ │ │ │ │ ├─ 0.002 Button.configure tkinter/__init__.py:1668 +│ │ │ │ │ │ │ │ │ └─ 0.002 Button._configure tkinter/__init__.py:1655 +│ │ │ │ │ │ │ │ │ └─ 0.002 tkapp.call +│ │ │ │ │ │ │ │ ├─ 0.001 PhotoImage.__init__ PIL/ImageTk.py:92 +│ │ │ │ │ │ │ │ │ └─ 0.001 PhotoImage.__init__ tkinter/__init__.py:4098 +│ │ │ │ │ │ │ │ │ └─ 0.001 PhotoImage.__init__ tkinter/__init__.py:4033 +│ │ │ │ │ │ │ │ ├─ 0.001 _recolor_icon matplotlib/backends/_backend_tk.py:774 +│ │ │ │ │ │ │ │ ├─ 0.001 PosixPath.exists pathlib.py:1285 +│ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.stat pathlib.py:1092 +│ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.__fspath__ pathlib.py:631 +│ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.__str__ pathlib.py:621 +│ │ │ │ │ │ │ │ └─ 0.001 Image.resize PIL/Image.py:2250 +│ │ │ │ │ │ │ │ └─ 0.001 Image.convert PIL/Image.py:929 +│ │ │ │ │ │ │ │ └─ 0.001 ImagingCore.convert +│ │ │ │ │ │ │ └─ 0.003 Label.__init__ tkinter/__init__.py:3169 +│ │ │ │ │ │ │ └─ 0.003 Label.__init__ tkinter/__init__.py:2589 +│ │ │ │ │ │ │ ├─ 0.002 tkapp.call +│ │ │ │ │ │ │ └─ 0.001 Label._options tkinter/__init__.py:1497 +│ │ │ │ │ │ │ └─ 0.001 callable +│ │ │ │ │ │ ├─ 0.008 FigureCanvasTkAgg.__init__ matplotlib/backends/_backend_tk.py:166 +│ │ │ │ │ │ │ ├─ 0.005 Canvas.create_image tkinter/__init__.py:2817 +│ │ │ │ │ │ │ │ └─ 0.005 Canvas._create tkinter/__init__.py:2797 +│ │ │ │ │ │ │ │ └─ 0.005 tkapp.call +│ │ │ │ │ │ │ ├─ 0.002 PhotoImage.__init__ tkinter/__init__.py:4098 +│ │ │ │ │ │ │ │ └─ 0.002 PhotoImage.__init__ tkinter/__init__.py:4033 +│ │ │ │ │ │ │ │ └─ 0.002 tkapp.call +│ │ │ │ │ │ │ └─ 0.001 bool.get_width_height matplotlib/backend_bases.py:1944 +│ │ │ │ │ │ │ └─ 0.001 TransformedBbox.max matplotlib/transforms.py:324 +│ │ │ │ │ │ │ └─ 0.001 TransformedBbox.get_points matplotlib/transforms.py:1108 +│ │ │ │ │ │ │ └─ 0.001 Affine2D.transform matplotlib/transforms.py:1782 +│ │ │ │ │ │ │ └─ 0.001 Affine2D.transform_affine matplotlib/transforms.py:1848 +│ │ │ │ │ │ │ └─ 0.001 NumpyVersion.__init__ numpy/lib/_version.py:55 +│ │ │ │ │ │ │ └─ 0.001 match re.py:187 +│ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 +│ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 +│ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 +│ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 +│ │ │ │ │ │ └─ 0.003 PhotoImage.__init__ PIL/ImageTk.py:92 +│ │ │ │ │ │ └─ 0.003 _get_image_from_kw PIL/ImageTk.py:42 +│ │ │ │ │ │ └─ 0.003 open PIL/Image.py:3409 +│ │ │ │ │ │ ├─ 0.002 preinit PIL/Image.py:344 +│ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 +│ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ └─ 0.001 PIL/GifImagePlugin.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 +│ │ │ │ │ │ │ │ └─ 0.001 type.__new__ +│ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 +│ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 +│ │ │ │ │ │ └─ 0.001 _open_core PIL/Image.py:3482 +│ │ │ │ │ │ └─ 0.001 PngImageFile.__init__ PIL/ImageFile.py:113 +│ │ │ │ │ └─ 0.001 Figure.__init__ matplotlib/figure.py:2464 +│ │ │ │ │ └─ 0.001 Rectangle.__init__ matplotlib/patches.py:748 +│ │ │ │ │ └─ 0.001 Rectangle.__init__ matplotlib/patches.py:48 +│ │ │ │ │ └─ 0.001 Rectangle.set_hatch matplotlib/patches.py:541 +│ │ │ │ └─ 0.010 _warn_if_gui_out_of_main_thread matplotlib/pyplot.py:526 +│ │ │ │ └─ 0.010 _get_backend_mod matplotlib/pyplot.py:359 +│ │ │ │ └─ 0.010 switch_backend matplotlib/pyplot.py:373 +│ │ │ │ ├─ 0.008 switch_backend matplotlib/pyplot.py:373 +│ │ │ │ │ └─ 0.008 BackendRegistry.load_backend_module matplotlib/backends/registry.py:302 +│ │ │ │ │ └─ 0.008 import_module importlib/__init__.py:108 +│ │ │ │ │ └─ 0.008 _gcd_import :1038 +│ │ │ │ │ └─ 0.008 _find_and_load :1022 +│ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.008 _load_unlocked :664 +│ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 +│ │ │ │ │ ├─ 0.006 matplotlib/backends/backend_tkagg.py:1 +│ │ │ │ │ │ └─ 0.006 _handle_fromlist :1053 +│ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.006 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.006 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.006 matplotlib/backends/_backend_tk.py:1 +│ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 +│ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ ├─ 0.003 tkinter/__init__.py:1 +│ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 module_from_spec :564 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 ExtensionFileLoader.create_module :1174 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 create_dynamic +│ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ │ │ │ └─ 0.001 tkinter/filedialog.py:1 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 +│ │ │ │ │ │ │ └─ 0.001 getcwd +│ │ │ │ │ │ └─ 0.001 __build_class__ +│ │ │ │ │ ├─ 0.001 matplotlib/backends/backend_gtk4agg.py:1 +│ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 +│ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 +│ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 +│ │ │ │ │ │ └─ 0.001 loads +│ │ │ │ │ └─ 0.001 matplotlib/backends/backend_qtagg.py:1 +│ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.001 _load_unlocked :664 +│ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 +│ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 +│ │ │ │ │ └─ 0.001 matplotlib/backends/qt_compat.py:1 +│ │ │ │ │ └─ 0.001 _setup_pyqt5plus matplotlib/backends/qt_compat.py:66 +│ │ │ │ │ └─ 0.001 _find_and_load :1022 +│ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 +│ │ │ │ │ └─ 0.001 _find_spec :921 +│ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 +│ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 +│ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 +│ │ │ │ │ └─ 0.001 _path_join :126 +│ │ │ │ │ └─ 0.001 :128 +│ │ │ │ └─ 0.002 _get_running_interactive_framework matplotlib/cbook.py:58 +│ │ │ │ └─ 0.002 PyCapsule.display_is_valid +│ │ │ └─ 0.013 Figure.subplots matplotlib/figure.py:785 +│ │ │ └─ 0.013 GridSpec.subplots matplotlib/gridspec.py:249 +│ │ │ └─ 0.013 Figure.add_subplot matplotlib/figure.py:644 +│ │ │ └─ 0.013 Axes.__init__ matplotlib/axes/_base.py:579 +│ │ │ ├─ 0.011 Axes.clear matplotlib/axes/_base.py:1409 +│ │ │ │ └─ 0.011 Axes.__clear matplotlib/axes/_base.py:1277 +│ │ │ │ ├─ 0.007 XAxis.clear matplotlib/axis.py:856 +│ │ │ │ │ ├─ 0.005 XAxis._set_scale matplotlib/axis.py:761 +│ │ │ │ │ │ └─ 0.005 LinearScale.set_default_locators_and_formatters matplotlib/scale.py:103 +│ │ │ │ │ │ └─ 0.005 ScalarFormatter.__init__ matplotlib/ticker.py:452 +│ │ │ │ │ │ └─ 0.005 ScalarFormatter.set_useMathText matplotlib/ticker.py:573 +│ │ │ │ │ │ └─ 0.005 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ └─ 0.005 FontManager._findfont_cached matplotlib/font_manager.py:1453 +│ │ │ │ │ │ ├─ 0.002 [self] matplotlib/font_manager.py +│ │ │ │ │ │ ├─ 0.001 FontManager.score_stretch matplotlib/font_manager.py:1233 +│ │ │ │ │ │ ├─ 0.001 FontManager.score_family matplotlib/font_manager.py:1175 +│ │ │ │ │ │ │ └─ 0.001 _expand_aliases matplotlib/font_manager.py:1167 +│ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ └─ 0.001 FontManager.score_weight matplotlib/font_manager.py:1251 +│ │ │ │ │ └─ 0.002 Text._reset_visual_defaults matplotlib/text.py:157 +│ │ │ │ │ ├─ 0.001 Text.set_fontproperties matplotlib/text.py:1316 +│ │ │ │ │ │ └─ 0.001 FontProperties._from_any matplotlib/font_manager.py:677 +│ │ │ │ │ │ └─ 0.001 FontProperties.wrapper matplotlib/font_manager.py:556 +│ │ │ │ │ │ └─ 0.001 FontProperties.__init__ matplotlib/font_manager.py:656 +│ │ │ │ │ │ └─ 0.001 FontProperties.set_size matplotlib/font_manager.py:876 +│ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ └─ 0.001 Text.set_linespacing matplotlib/text.py:1040 +│ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ └─ 0.001 Real.__instancecheck__ abc.py:117 +│ │ │ │ ├─ 0.002 Axes.grid matplotlib/axes/_base.py:3273 +│ │ │ │ │ └─ 0.002 XAxis.grid matplotlib/axis.py:1707 +│ │ │ │ │ ├─ 0.001 XAxis.set_tick_params matplotlib/axis.py:957 +│ │ │ │ │ │ └─ 0.001 _LazyTickList.__get__ matplotlib/axis.py:534 +│ │ │ │ │ │ └─ 0.001 XAxis._get_tick matplotlib/axis.py:1596 +│ │ │ │ │ │ └─ 0.001 XTick.__init__ matplotlib/axis.py:367 +│ │ │ │ │ │ └─ 0.001 Axes.get_xaxis_transform matplotlib/axes/_base.py:928 +│ │ │ │ │ │ └─ 0.001 Spine.get_spine_transform matplotlib/spines.py:340 +│ │ │ │ │ │ └─ 0.001 Spine._ensure_position_is_set matplotlib/spines.py:203 +│ │ │ │ │ │ └─ 0.001 Spine.set_position matplotlib/spines.py:300 +│ │ │ │ │ └─ 0.001 [self] matplotlib/axis.py +│ │ │ │ └─ 0.002 YAxis.set_clip_path matplotlib/axis.py:1126 +│ │ │ │ ├─ 0.001 YTick.set_clip_path matplotlib/axis.py:234 +│ │ │ │ │ └─ 0.001 YTick.set_clip_path matplotlib/artist.py:784 +│ │ │ │ │ └─ 0.001 TransformedBbox.__init__ matplotlib/transforms.py:1087 +│ │ │ │ └─ 0.001 _LazyTickList.__get__ matplotlib/axis.py:534 +│ │ │ │ └─ 0.001 XAxis._get_tick matplotlib/axis.py:1596 +│ │ │ │ └─ 0.001 XTick.__init__ matplotlib/axis.py:367 +│ │ │ │ └─ 0.001 Text. matplotlib/artist.py:146 +│ │ │ │ └─ 0.001 Text.set matplotlib/artist.py:1237 +│ │ │ │ └─ 0.001 Text._internal_update matplotlib/artist.py:1226 +│ │ │ │ └─ 0.001 Text._update_props matplotlib/artist.py:1188 +│ │ │ │ └─ 0.001 getattr +│ │ │ ├─ 0.001 Axes._init_axis matplotlib/axes/_base.py:828 +│ │ │ │ └─ 0.001 XAxis.__init__ matplotlib/axis.py:2385 +│ │ │ │ └─ 0.001 XAxis.__init__ matplotlib/axis.py:612 +│ │ │ │ └─ 0.001 Text.__init__ matplotlib/text.py:104 +│ │ │ │ └─ 0.001 Text._reset_visual_defaults matplotlib/text.py:157 +│ │ │ │ └─ 0.001 Text.set_fontproperties matplotlib/text.py:1316 +│ │ │ │ └─ 0.001 FontProperties._from_any matplotlib/font_manager.py:677 +│ │ │ │ └─ 0.001 FontProperties.wrapper matplotlib/font_manager.py:556 +│ │ │ │ └─ 0.001 FontProperties.__init__ matplotlib/font_manager.py:656 +│ │ │ │ └─ 0.001 FontProperties.set_weight matplotlib/font_manager.py:824 +│ │ │ └─ 0.001 Axes.set_subplotspec matplotlib/axes/_base.py:803 +│ │ │ └─ 0.001 Axes._set_position matplotlib/axes/_base.py:1149 +│ │ │ └─ 0.001 Bbox.set matplotlib/transforms.py:1057 +│ │ │ └─ 0.001 any numpy/core/fromnumeric.py:2322 +│ │ ├─ 0.077 tight_layout matplotlib/pyplot.py:2827 +│ │ │ └─ 0.077 Figure.tight_layout matplotlib/figure.py:3608 +│ │ │ └─ 0.077 TightLayoutEngine.execute matplotlib/layout_engine.py:163 +│ │ │ ├─ 0.075 get_tight_layout_figure matplotlib/_tight_layout.py:194 +│ │ │ │ └─ 0.075 _auto_adjust_subplotpars matplotlib/_tight_layout.py:20 +│ │ │ │ ├─ 0.074 _get_tightbbox_for_layout_only matplotlib/artist.py:1395 +│ │ │ │ │ └─ 0.074 Axes.get_tightbbox matplotlib/axes/_base.py:4463 +│ │ │ │ │ ├─ 0.050 _get_tightbbox_for_layout_only matplotlib/artist.py:1395 +│ │ │ │ │ │ └─ 0.050 XAxis.get_tightbbox matplotlib/axis.py:1348 +│ │ │ │ │ │ ├─ 0.023 XAxis._update_label_position matplotlib/axis.py:2449 +│ │ │ │ │ │ │ ├─ 0.017 XAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ │ ├─ 0.012 XAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ └─ 0.012 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ └─ 0.012 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ ├─ 0.010 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ │ ├─ 0.007 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] matplotlib/backends/backend_agg.py +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__hash__ matplotlib/font_manager.py:700 +│ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.get_weight matplotlib/font_manager.py:745 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_font matplotlib/font_manager.py:1586 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__reduce_ex__ +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 _amin numpy/core/_methods.py:43 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ufunc.reduce +│ │ │ │ │ │ │ │ │ │ └─ 0.001 array +│ │ │ │ │ │ │ │ │ └─ 0.002 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ └─ 0.002 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ └─ 0.002 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/transforms.py +│ │ │ │ │ │ │ │ │ └─ 0.001 BlendedGenericTransform.get_affine matplotlib/transforms.py:2248 +│ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ └─ 0.001 BboxTransformFrom.get_matrix matplotlib/transforms.py:2644 +│ │ │ │ │ │ │ │ │ └─ 0.001 TransformedBbox.bounds matplotlib/transforms.py:365 +│ │ │ │ │ │ │ │ │ └─ 0.001 TransformedBbox.get_points matplotlib/transforms.py:1108 +│ │ │ │ │ │ │ │ └─ 0.005 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ ├─ 0.002 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ │ └─ 0.002 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ │ └─ 0.002 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ ├─ 0.001 _get_tzinfo matplotlib/dates.py:208 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ └─ 0.001 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ └─ 0.001 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ └─ 0.001 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ └─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ └─ 0.001 datetime.astimezone +│ │ │ │ │ │ │ │ ├─ 0.001 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ ├─ 0.001 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.__mod_distance dateutil/rrule.py:1079 +│ │ │ │ │ │ │ │ └─ 0.001 XTick.get_loc matplotlib/axis.py:264 +│ │ │ │ │ │ │ ├─ 0.005 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ │ │ └─ 0.005 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ ├─ 0.002 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ │ └─ 0.002 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ │ └─ 0.002 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ │ └─ 0.002 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ │ └─ 0.002 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ │ └─ 0.002 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ │ ├─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/function_base.py:2453 +│ │ │ │ │ │ │ │ │ └─ 0.001 asanyarray +│ │ │ │ │ │ │ │ ├─ 0.001 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ ├─ 0.001 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator._create_rrule matplotlib/dates.py:1161 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper.set matplotlib/dates.py:963 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper._update_rrule matplotlib/dates.py:969 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.__init__ dateutil/rrule.py:428 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.__construct_byset dateutil/rrule.py:1032 +│ │ │ │ │ │ │ │ └─ 0.001 XTick.update_position matplotlib/axis.py:406 +│ │ │ │ │ │ │ │ └─ 0.001 XTick.stale matplotlib/artist.py:315 +│ │ │ │ │ │ │ │ └─ 0.001 XTick._stale_axes_callback matplotlib/artist.py:102 +│ │ │ │ │ │ │ └─ 0.001 union matplotlib/transforms.py:641 +│ │ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:649 +│ │ │ │ │ │ │ └─ 0.001 Bbox.ymax matplotlib/transforms.py:314 +│ │ │ │ │ │ │ └─ 0.001 max numpy/core/fromnumeric.py:2692 +│ │ │ │ │ │ │ └─ 0.001 _wrapreduction numpy/core/fromnumeric.py:71 +│ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ ├─ 0.015 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ ├─ 0.010 YAxis.get_major_ticks matplotlib/axis.py:1655 +│ │ │ │ │ │ │ │ ├─ 0.007 YAxis._get_tick matplotlib/axis.py:1596 +│ │ │ │ │ │ │ │ │ └─ 0.007 YTick.__init__ matplotlib/axis.py:428 +│ │ │ │ │ │ │ │ │ ├─ 0.006 YTick.__init__ matplotlib/axis.py:59 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 Line2D.get_path matplotlib/lines.py:1035 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Line2D.recache matplotlib/lines.py:672 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Path.__init__ matplotlib/path.py:99 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/path.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_shape matplotlib/_api/__init__.py:133 +│ │ │ │ │ │ │ │ │ │ ├─ 0.002 Text.__init__ matplotlib/text.py:104 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Text._reset_visual_defaults matplotlib/text.py:157 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Text.set_fontproperties matplotlib/text.py:1316 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties._from_any matplotlib/font_manager.py:677 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.wrapper matplotlib/font_manager.py:556 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__init__ matplotlib/font_manager.py:656 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.set_family matplotlib/font_manager.py:784 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/text.py +│ │ │ │ │ │ │ │ │ │ └─ 0.002 Line2D.__init__ matplotlib/lines.py:287 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_linewidth matplotlib/lines.py:1129 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _scale_dashes matplotlib/lines.py:75 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.set_dash_capstyle matplotlib/lines.py:1409 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CapStyle.__call__ enum.py:359 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CapStyle.__new__ enum.py:678 +│ │ │ │ │ │ │ │ │ └─ 0.001 YTick._get_text2_transform matplotlib/axis.py:453 +│ │ │ │ │ │ │ │ │ └─ 0.001 Axes.get_yaxis_text2_transform matplotlib/axes/_base.py:1065 +│ │ │ │ │ │ │ │ │ └─ 0.001 BlendedGenericTransform.__add__ matplotlib/transforms.py:1340 +│ │ │ │ │ │ │ │ │ └─ 0.001 composite_transform_factory matplotlib/transforms.py:2498 +│ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.__init__ matplotlib/transforms.py:2341 +│ │ │ │ │ │ │ │ └─ 0.003 YAxis._copy_tick_props matplotlib/axis.py:1617 +│ │ │ │ │ │ │ │ └─ 0.003 Line2D.update_from matplotlib/lines.py:1338 +│ │ │ │ │ │ │ │ └─ 0.003 MarkerStyle.__init__ matplotlib/markers.py:220 +│ │ │ │ │ │ │ │ ├─ 0.002 MarkerStyle._set_marker matplotlib/markers.py:299 +│ │ │ │ │ │ │ │ │ └─ 0.002 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ └─ 0.002 _deepcopy_dict copy.py:227 +│ │ │ │ │ │ │ │ │ └─ 0.002 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/markers.py +│ │ │ │ │ │ │ ├─ 0.002 YAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ ├─ 0.001 AutoLocator.__call__ matplotlib/ticker.py:2226 +│ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator.tick_values matplotlib/ticker.py:2230 +│ │ │ │ │ │ │ │ │ └─ 0.001 AutoLocator._raw_ticks matplotlib/ticker.py:2157 +│ │ │ │ │ │ │ │ │ └─ 0.001 YAxis.get_tick_space matplotlib/axis.py:2821 +│ │ │ │ │ │ │ │ │ └─ 0.001 BboxTransformTo.__sub__ matplotlib/transforms.py:1418 +│ │ │ │ │ │ │ │ │ └─ 0.001 Affine2D.inverted matplotlib/transforms.py:1869 +│ │ │ │ │ │ │ │ │ └─ 0.001 inv numpy/linalg/linalg.py:492 +│ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ └─ 0.001 matplotlib/dates.py:1041 +│ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper._attach_tzinfo matplotlib/dates.py:1000 +│ │ │ │ │ │ │ │ └─ 0.001 datetime.replace +│ │ │ │ │ │ │ ├─ 0.001 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ └─ 0.001 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ └─ 0.001 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ └─ 0.001 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ └─ 0.001 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ └─ 0.001 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ └─ 0.001 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ └─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ ├─ 0.001 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ └─ 0.001 _iterinfo.mtimeset dateutil/rrule.py:1294 +│ │ │ │ │ │ │ └─ 0.001 XTick.update_position matplotlib/axis.py:406 +│ │ │ │ │ │ │ └─ 0.001 Line2D.set_xdata matplotlib/lines.py:1276 +│ │ │ │ │ │ │ └─ 0.001 iterable numpy/lib/function_base.py:348 +│ │ │ │ │ │ ├─ 0.006 XAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ └─ 0.006 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ └─ 0.006 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ ├─ 0.004 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ ├─ 0.002 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ ├─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__eq__ matplotlib/font_manager.py:711 +│ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__hash__ matplotlib/font_manager.py:700 +│ │ │ │ │ │ │ │ ├─ 0.001 _amin numpy/core/_methods.py:43 +│ │ │ │ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/text.py +│ │ │ │ │ │ │ ├─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ └─ 0.001 ScaledTranslation.get_matrix matplotlib/transforms.py:2676 +│ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ │ └─ 0.001 next +│ │ │ │ │ │ ├─ 0.004 YAxis._update_label_position matplotlib/axis.py:2676 +│ │ │ │ │ │ │ ├─ 0.003 YAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ │ ├─ 0.002 YAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/axis.py:1343 +│ │ │ │ │ │ │ │ │ └─ 0.002 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ │ │ ├─ 0.001 CompositeGenericTransform.transform matplotlib/transforms.py:1472 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.transform_affine matplotlib/transforms.py:2408 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CompositeGenericTransform.get_affine matplotlib/transforms.py:2431 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 BlendedGenericTransform.get_affine matplotlib/transforms.py:2248 +│ │ │ │ │ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ │ └─ 0.001 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ └─ 0.001 FontProperties.__newobj__ copyreg.py:100 +│ │ │ │ │ │ │ │ └─ 0.001 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ └─ 0.001 ScalarFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ └─ 0.001 ScalarFormatter.set_locs matplotlib/ticker.py:735 +│ │ │ │ │ │ │ └─ 0.001 union matplotlib/transforms.py:641 +│ │ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:647 +│ │ │ │ │ │ │ └─ 0.001 Bbox.xmax matplotlib/transforms.py:309 +│ │ │ │ │ │ │ └─ 0.001 max numpy/core/fromnumeric.py:2692 +│ │ │ │ │ │ │ └─ 0.001 _wrapreduction numpy/core/fromnumeric.py:71 +│ │ │ │ │ │ ├─ 0.001 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ └─ 0.001 from_bounds matplotlib/transforms.py:795 +│ │ │ │ │ │ │ └─ 0.001 from_extents matplotlib/transforms.py:804 +│ │ │ │ │ │ │ └─ 0.001 reshape numpy/core/fromnumeric.py:200 +│ │ │ │ │ │ │ └─ 0.001 _wrapfunc numpy/core/fromnumeric.py:53 +│ │ │ │ │ │ │ └─ 0.001 _wrapit numpy/core/fromnumeric.py:40 +│ │ │ │ │ │ │ └─ 0.001 asarray +│ │ │ │ │ │ └─ 0.001 XAxis._update_offset_text_position matplotlib/axis.py:2475 +│ │ │ │ │ │ └─ 0.001 union matplotlib/transforms.py:641 +│ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:646 +│ │ │ │ │ ├─ 0.011 Spine.get_tightbbox matplotlib/artist.py:348 +│ │ │ │ │ │ └─ 0.011 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ ├─ 0.010 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ ├─ 0.004 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ │ └─ 0.004 matplotlib/ticker.py:217 +│ │ │ │ │ │ │ │ └─ 0.004 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ │ │ │ └─ 0.004 num2date matplotlib/dates.py:457 +│ │ │ │ │ │ │ │ └─ 0.004 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ │ │ │ └─ 0.004 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ │ │ │ └─ 0.004 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ │ │ │ ├─ 0.003 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/dates.py +│ │ │ │ │ │ │ │ │ ├─ 0.001 datetime.replace +│ │ │ │ │ │ │ │ │ └─ 0.001 GettzFunc.__call__ dateutil/tz/tz.py:1552 +│ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/function_base.py:2453 +│ │ │ │ │ │ │ │ └─ 0.001 asanyarray +│ │ │ │ │ │ │ ├─ 0.002 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ └─ 0.002 date2num matplotlib/dates.py:405 +│ │ │ │ │ │ │ │ ├─ 0.001 ndarray.astype +│ │ │ │ │ │ │ │ └─ 0.001 asarray +│ │ │ │ │ │ │ ├─ 0.002 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ │ │ │ └─ 0.002 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ │ │ │ ├─ 0.001 MinuteLocator._create_rrule matplotlib/dates.py:1161 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper.set matplotlib/dates.py:963 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrulewrapper._update_rrule matplotlib/dates.py:969 +│ │ │ │ │ │ │ │ │ └─ 0.001 rrule.__init__ dateutil/rrule.py:428 +│ │ │ │ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ │ │ │ └─ 0.001 _iterinfo.ddayset dateutil/rrule.py:1278 +│ │ │ │ │ │ │ └─ 0.002 XTick.update_position matplotlib/axis.py:406 +│ │ │ │ │ │ │ ├─ 0.001 Text.set_x matplotlib/text.py:1205 +│ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/axis.py +│ │ │ │ │ │ └─ 0.001 union matplotlib/transforms.py:641 +│ │ │ │ │ │ └─ 0.001 max numpy/core/fromnumeric.py:2692 +│ │ │ │ │ │ └─ 0.001 _wrapreduction numpy/core/fromnumeric.py:71 +│ │ │ │ │ │ └─ 0.001 ufunc.reduce +│ │ │ │ │ ├─ 0.010 Axes._update_title_position matplotlib/axes/_base.py:3044 +│ │ │ │ │ │ ├─ 0.006 Text.get_tightbbox matplotlib/artist.py:348 +│ │ │ │ │ │ │ └─ 0.006 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ │ ├─ 0.005 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ │ │ └─ 0.005 _get_text_metrics_with_cache matplotlib/text.py:65 +│ │ │ │ │ │ │ │ └─ 0.005 _get_text_metrics_with_cache_impl matplotlib/text.py:73 +│ │ │ │ │ │ │ │ └─ 0.005 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ │ │ └─ 0.005 RendererAgg._prepare_font matplotlib/backends/backend_agg.py:248 +│ │ │ │ │ │ │ │ └─ 0.005 FontManager._find_fonts_by_props matplotlib/font_manager.py:1363 +│ │ │ │ │ │ │ │ └─ 0.005 FontManager.findfont matplotlib/font_manager.py:1293 +│ │ │ │ │ │ │ │ └─ 0.005 FontManager._findfont_cached matplotlib/font_manager.py:1453 +│ │ │ │ │ │ │ │ ├─ 0.003 FontManager.score_weight matplotlib/font_manager.py:1251 +│ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/font_manager.py +│ │ │ │ │ │ │ │ │ └─ 0.001 Number.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/font_manager.py +│ │ │ │ │ │ │ │ └─ 0.001 Logger.debug logging/__init__.py:1455 +│ │ │ │ │ │ │ │ └─ 0.001 Logger.isEnabledFor logging/__init__.py:1724 +│ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ └─ 0.004 YAxis.get_tightbbox matplotlib/axis.py:1348 +│ │ │ │ │ │ ├─ 0.002 YAxis._update_label_position matplotlib/axis.py:2676 +│ │ │ │ │ │ │ ├─ 0.001 Spine.get_window_extent matplotlib/spines.py:142 +│ │ │ │ │ │ │ │ └─ 0.001 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ │ └─ 0.001 YAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ │ │ │ └─ 0.001 AutoLocator.__call__ matplotlib/ticker.py:2226 +│ │ │ │ │ │ │ │ └─ 0.001 AutoLocator.tick_values matplotlib/ticker.py:2230 +│ │ │ │ │ │ │ │ └─ 0.001 AutoLocator._raw_ticks matplotlib/ticker.py:2157 +│ │ │ │ │ │ │ │ └─ 0.001 clip numpy/core/fromnumeric.py:2100 +│ │ │ │ │ │ │ │ └─ 0.001 _wrapfunc numpy/core/fromnumeric.py:53 +│ │ │ │ │ │ │ │ └─ 0.001 _wrapit numpy/core/fromnumeric.py:40 +│ │ │ │ │ │ │ │ └─ 0.001 _clip numpy/core/_methods.py:90 +│ │ │ │ │ │ │ └─ 0.001 YAxis._get_tick_boxes_siblings matplotlib/axis.py:2234 +│ │ │ │ │ │ │ └─ 0.001 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ ├─ 0.001 YAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ │ │ │ └─ 0.001 ScalarFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ │ │ └─ 0.001 ScalarFormatter.set_locs matplotlib/ticker.py:735 +│ │ │ │ │ │ │ └─ 0.001 ScalarFormatter._compute_offset matplotlib/ticker.py:744 +│ │ │ │ │ │ │ └─ 0.001 YAxis.getter matplotlib/axis.py:2356 +│ │ │ │ │ │ │ └─ 0.001 Bbox.intervaly matplotlib/transforms.py:338 +│ │ │ │ │ │ └─ 0.001 YAxis._get_ticklabel_bboxes matplotlib/axis.py:1339 +│ │ │ │ │ │ └─ 0.001 matplotlib/axis.py:1343 +│ │ │ │ │ │ └─ 0.001 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ │ │ └─ 0.001 from_bounds matplotlib/transforms.py:795 +│ │ │ │ │ │ └─ 0.001 from_extents matplotlib/transforms.py:804 +│ │ │ │ │ │ └─ 0.001 Bbox.__init__ matplotlib/transforms.py:749 +│ │ │ │ │ ├─ 0.002 Legend.get_tightbbox matplotlib/legend.py:1057 +│ │ │ │ │ │ └─ 0.002 VPacker.get_window_extent matplotlib/offsetbox.py:363 +│ │ │ │ │ │ ├─ 0.001 VPacker.get_offset matplotlib/offsetbox.py:54 +│ │ │ │ │ │ │ └─ 0.001 VPacker.get_offset matplotlib/offsetbox.py:291 +│ │ │ │ │ │ │ └─ 0.001 Legend._findoffset matplotlib/legend.py:717 +│ │ │ │ │ │ │ └─ 0.001 Legend._find_best_position matplotlib/legend.py:1147 +│ │ │ │ │ │ │ └─ 0.001 Bbox.count_overlaps matplotlib/transforms.py:576 +│ │ │ │ │ │ │ └─ 0.001 PyCapsule.count_bboxes_overlapping_bbox +│ │ │ │ │ │ └─ 0.001 VPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ └─ 0.001 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ └─ 0.001 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ └─ 0.001 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ └─ 0.001 VPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ └─ 0.001 VPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:441 +│ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:452 +│ │ │ │ │ │ └─ 0.001 HPacker.get_bbox matplotlib/offsetbox.py:358 +│ │ │ │ │ │ └─ 0.001 HPacker._get_bbox_and_child_offsets matplotlib/offsetbox.py:473 +│ │ │ │ │ │ └─ 0.001 matplotlib/offsetbox.py:479 +│ │ │ │ │ │ └─ 0.001 TextArea.get_bbox matplotlib/offsetbox.py:762 +│ │ │ │ │ │ └─ 0.001 RendererAgg.get_text_width_height_descent matplotlib/backends/backend_agg.py:206 +│ │ │ │ │ │ └─ 0.001 get_hinting_flag matplotlib/backends/backend_agg.py:41 +│ │ │ │ │ └─ 0.001 Text.get_window_extent matplotlib/text.py:926 +│ │ │ │ │ └─ 0.001 Text._get_layout matplotlib/text.py:358 +│ │ │ │ └─ 0.001 [self] matplotlib/_tight_layout.py +│ │ │ └─ 0.002 Figure._get_renderer matplotlib/figure.py:2848 +│ │ │ └─ 0.002 FigureCanvasTkAgg.get_renderer matplotlib/backends/backend_agg.py:387 +│ │ │ └─ 0.002 RendererAgg.__init__ matplotlib/backends/backend_agg.py:63 +│ │ ├─ 0.055 Figure.autofmt_xdate matplotlib/figure.py:175 +│ │ │ └─ 0.055 Axes.wrapper matplotlib/axes/_base.py:73 +│ │ │ └─ 0.055 XAxis.get_ticklabels matplotlib/axis.py:1479 +│ │ │ └─ 0.055 XAxis.get_majorticklabels matplotlib/axis.py:1463 +│ │ │ ├─ 0.054 XAxis._update_ticks matplotlib/axis.py:1287 +│ │ │ │ ├─ 0.048 XAxis.get_major_ticks matplotlib/axis.py:1655 +│ │ │ │ │ ├─ 0.029 XAxis._get_tick matplotlib/axis.py:1596 +│ │ │ │ │ │ └─ 0.029 XTick.__init__ matplotlib/axis.py:367 +│ │ │ │ │ │ ├─ 0.022 XTick.__init__ matplotlib/axis.py:59 +│ │ │ │ │ │ │ ├─ 0.013 Line2D.__init__ matplotlib/lines.py:287 +│ │ │ │ │ │ │ │ ├─ 0.005 Line2D._internal_update matplotlib/artist.py:1226 +│ │ │ │ │ │ │ │ │ └─ 0.005 Line2D._update_props matplotlib/artist.py:1188 +│ │ │ │ │ │ │ │ │ ├─ 0.002 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] contextlib.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _setattr_cm matplotlib/cbook.py:2010 +│ │ │ │ │ │ │ │ │ ├─ 0.001 helper contextlib.py:279 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__init__ contextlib.py:102 +│ │ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_zorder matplotlib/artist.py:1124 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.pchanged matplotlib/artist.py:414 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackRegistry.process matplotlib/cbook.py:348 +│ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py +│ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/lines.py +│ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_pickradius matplotlib/lines.py:506 +│ │ │ │ │ │ │ │ │ └─ 0.001 Real.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck +│ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_markerfacecolor matplotlib/lines.py:1227 +│ │ │ │ │ │ │ │ │ └─ 0.001 Line2D._set_markercolor matplotlib/lines.py:1203 +│ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_markerfacecoloralt matplotlib/lines.py:1237 +│ │ │ │ │ │ │ │ │ └─ 0.001 Line2D._set_markercolor matplotlib/lines.py:1203 +│ │ │ │ │ │ │ │ ├─ 0.001 Line2D.set_data matplotlib/lines.py:648 +│ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.set_ydata matplotlib/lines.py:1295 +│ │ │ │ │ │ │ │ │ └─ 0.001 iterable numpy/lib/function_base.py:348 +│ │ │ │ │ │ │ │ │ └─ 0.001 iter +│ │ │ │ │ │ │ │ ├─ 0.001 Line2D.__init__ matplotlib/artist.py:179 +│ │ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ │ └─ 0.001 RcParams.__getitem__ matplotlib/__init__.py:778 +│ │ │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 +│ │ │ │ │ │ │ ├─ 0.006 Text.__init__ matplotlib/text.py:104 +│ │ │ │ │ │ │ │ ├─ 0.004 Text.update matplotlib/text.py:194 +│ │ │ │ │ │ │ │ │ ├─ 0.003 Text.update matplotlib/artist.py:1215 +│ │ │ │ │ │ │ │ │ │ └─ 0.003 Text._update_props matplotlib/artist.py:1188 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 list.append +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 _setattr_cm matplotlib/cbook.py:2010 +│ │ │ │ │ │ │ │ │ └─ 0.001 normalize_kwargs matplotlib/cbook.py:1742 +│ │ │ │ │ │ │ │ ├─ 0.001 Text._reset_visual_defaults matplotlib/text.py:157 +│ │ │ │ │ │ │ │ │ └─ 0.001 Text.set_linespacing matplotlib/text.py:1040 +│ │ │ │ │ │ │ │ │ └─ 0.001 check_isinstance matplotlib/_api/__init__.py:65 +│ │ │ │ │ │ │ │ │ └─ 0.001 Real.__instancecheck__ abc.py:117 +│ │ │ │ │ │ │ │ └─ 0.001 Text.__init__ matplotlib/artist.py:179 +│ │ │ │ │ │ │ │ └─ 0.001 CallbackRegistry.__init__ matplotlib/cbook.py:259 +│ │ │ │ │ │ │ │ └─ 0.001 _UnhashDict.__init__ matplotlib/cbook.py:152 +│ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/axis.py +│ │ │ │ │ │ │ └─ 0.001 XTick._apply_tickdir matplotlib/axis.py:395 +│ │ │ │ │ │ │ └─ 0.001 Line2D.set_marker matplotlib/lines.py:1189 +│ │ │ │ │ │ │ └─ 0.001 MarkerStyle.__init__ matplotlib/markers.py:220 +│ │ │ │ │ │ │ └─ 0.001 MarkerStyle._set_marker matplotlib/markers.py:299 +│ │ │ │ │ │ │ └─ 0.001 MarkerStyle._recache matplotlib/markers.py:250 +│ │ │ │ │ │ │ └─ 0.001 MarkerStyle._set_tickdown matplotlib/markers.py:776 +│ │ │ │ │ │ │ └─ 0.001 Affine2D.scale matplotlib/transforms.py:2040 +│ │ │ │ │ │ ├─ 0.005 Text. matplotlib/artist.py:146 +│ │ │ │ │ │ │ └─ 0.005 Text.set matplotlib/artist.py:1237 +│ │ │ │ │ │ │ ├─ 0.004 Text._internal_update matplotlib/artist.py:1226 +│ │ │ │ │ │ │ │ └─ 0.004 Text._update_props matplotlib/artist.py:1188 +│ │ │ │ │ │ │ │ ├─ 0.002 Line2D.set_transform matplotlib/lines.py:738 +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/lines.py +│ │ │ │ │ │ │ │ │ └─ 0.001 Line2D.set_transform matplotlib/artist.py:435 +│ │ │ │ │ │ │ │ ├─ 0.001 Text.set_verticalalignment matplotlib/text.py:1259 +│ │ │ │ │ │ │ │ │ └─ 0.001 check_in_list matplotlib/_api/__init__.py:100 +│ │ │ │ │ │ │ │ └─ 0.001 Text.pchanged matplotlib/artist.py:414 +│ │ │ │ │ │ │ │ └─ 0.001 CallbackRegistry.process matplotlib/cbook.py:348 +│ │ │ │ │ │ │ │ └─ 0.001 check_in_list matplotlib/_api/__init__.py:100 +│ │ │ │ │ │ │ └─ 0.001 normalize_kwargs matplotlib/cbook.py:1742 +│ │ │ │ │ │ ├─ 0.001 XTick._get_text2_transform matplotlib/axis.py:392 +│ │ │ │ │ │ │ └─ 0.001 Axes.get_xaxis_text2_transform matplotlib/axes/_base.py:983 +│ │ │ │ │ │ │ └─ 0.001 BlendedGenericTransform.__add__ matplotlib/transforms.py:1340 +│ │ │ │ │ │ │ └─ 0.001 composite_transform_factory matplotlib/transforms.py:2498 +│ │ │ │ │ │ └─ 0.001 Axes.get_xaxis_transform matplotlib/axes/_base.py:928 +│ │ │ │ │ │ └─ 0.001 Spine.get_spine_transform matplotlib/spines.py:340 +│ │ │ │ │ │ └─ 0.001 len +│ │ │ │ │ └─ 0.019 XAxis._copy_tick_props matplotlib/axis.py:1617 +│ │ │ │ │ ├─ 0.018 Line2D.update_from matplotlib/lines.py:1338 +│ │ │ │ │ │ ├─ 0.017 MarkerStyle.__init__ matplotlib/markers.py:220 +│ │ │ │ │ │ │ ├─ 0.016 MarkerStyle._set_marker matplotlib/markers.py:299 +│ │ │ │ │ │ │ │ └─ 0.016 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ └─ 0.016 _deepcopy_dict copy.py:227 +│ │ │ │ │ │ │ │ ├─ 0.013 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ ├─ 0.005 Path.__deepcopy__ matplotlib/path.py:279 +│ │ │ │ │ │ │ │ │ │ └─ 0.005 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ │ ├─ 0.004 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.004 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _deepcopy_dict copy.py:227 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ndarray.__deepcopy__ +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _keep_alive copy.py:243 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] copy.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] copy.py +│ │ │ │ │ │ │ │ │ ├─ 0.004 _deepcopy_method copy.py:237 +│ │ │ │ │ │ │ │ │ │ └─ 0.004 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 _keep_alive copy.py:243 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MarkerStyle.__newobj__ copyreg.py:100 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] copy.py +│ │ │ │ │ │ │ │ │ ├─ 0.001 dict.get +│ │ │ │ │ │ │ │ │ ├─ 0.001 id +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] copy.py +│ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ │ │ │ │ └─ 0.001 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ └─ 0.001 _deepcopy_dict copy.py:227 +│ │ │ │ │ │ │ │ │ └─ 0.001 deepcopy copy.py:128 +│ │ │ │ │ │ │ │ │ └─ 0.001 issubclass +│ │ │ │ │ │ │ │ └─ 0.003 [self] copy.py +│ │ │ │ │ │ │ └─ 0.001 MarkerStyle._set_fillstyle matplotlib/markers.py:275 +│ │ │ │ │ │ └─ 0.001 Line2D.update_from matplotlib/artist.py:1167 +│ │ │ │ │ │ └─ 0.001 Line2D.pchanged matplotlib/artist.py:414 +│ │ │ │ │ └─ 0.001 Text.update_from matplotlib/text.py:342 +│ │ │ │ │ └─ 0.001 FontProperties.copy matplotlib/font_manager.py:961 +│ │ │ │ │ └─ 0.001 copy copy.py:66 +│ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 +│ │ │ │ │ └─ 0.001 hasattr +│ │ │ │ ├─ 0.002 DateFormatter.format_ticks matplotlib/ticker.py:214 +│ │ │ │ │ └─ 0.002 matplotlib/ticker.py:217 +│ │ │ │ │ └─ 0.002 DateFormatter.__call__ matplotlib/dates.py:589 +│ │ │ │ │ └─ 0.002 num2date matplotlib/dates.py:457 +│ │ │ │ │ └─ 0.002 vectorize.__call__ numpy/lib/function_base.py:2367 +│ │ │ │ │ └─ 0.002 tuple._call_as_normal numpy/lib/function_base.py:2337 +│ │ │ │ │ └─ 0.002 vectorize._vectorize_call numpy/lib/function_base.py:2443 +│ │ │ │ │ ├─ 0.001 _from_ordinalf matplotlib/dates.py:334 +│ │ │ │ │ └─ 0.001 [self] numpy/lib/function_base.py +│ │ │ │ ├─ 0.001 XAxis.get_minorticklocs matplotlib/axis.py:1538 +│ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ ├─ 0.001 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ │ │ └─ 0.001 inner_func matplotlib/dates.py:1038 +│ │ │ │ │ └─ 0.001 rrule.between dateutil/rrule.py:271 +│ │ │ │ │ └─ 0.001 rrule._iter dateutil/rrule.py:776 +│ │ │ │ │ └─ 0.001 _iterinfo.mtimeset dateutil/rrule.py:1294 +│ │ │ │ ├─ 0.001 XTick.update_position matplotlib/axis.py:406 +│ │ │ │ └─ 0.001 XAxis.get_transform matplotlib/axis.py:753 +│ │ │ │ └─ 0.001 LinearScale.get_transform matplotlib/scale.py:115 +│ │ │ │ └─ 0.001 IdentityTransform.__init__ matplotlib/transforms.py:1769 +│ │ │ │ └─ 0.001 IdentityTransform.__init__ matplotlib/transforms.py:110 +│ │ │ └─ 0.001 XAxis.get_major_ticks matplotlib/axis.py:1655 +│ │ │ └─ 0.001 XAxis.get_majorticklocs matplotlib/axis.py:1534 +│ │ │ └─ 0.001 MinuteLocator.__call__ matplotlib/dates.py:1145 +│ │ │ └─ 0.001 MinuteLocator.tick_values matplotlib/dates.py:1154 +│ │ │ └─ 0.001 date2num matplotlib/dates.py:405 +│ │ │ └─ 0.001 _dt64_to_ordinalf matplotlib/dates.py:310 +│ │ ├─ 0.003 Axes.plot matplotlib/axes/_axes.py:1532 +│ │ │ ├─ 0.002 _process_plot_var_args.__call__ matplotlib/axes/_base.py:227 +│ │ │ │ └─ 0.002 _process_plot_var_args._plot_args matplotlib/axes/_base.py:396 +│ │ │ │ ├─ 0.001 _check_1d matplotlib/cbook.py:1348 +│ │ │ │ │ └─ 0.001 atleast_1d numpy/core/shape_base.py:23 +│ │ │ │ │ └─ 0.001 asanyarray +│ │ │ │ └─ 0.001 matplotlib/axes/_base.py:546 +│ │ │ │ └─ 0.001 matplotlib/axes/_base.py:539 +│ │ │ │ └─ 0.001 _process_plot_var_args._make_line matplotlib/axes/_base.py:335 +│ │ │ │ └─ 0.001 Line2D.__init__ matplotlib/lines.py:287 +│ │ │ │ └─ 0.001 Line2D._internal_update matplotlib/artist.py:1226 +│ │ │ │ └─ 0.001 Line2D._update_props matplotlib/artist.py:1188 +│ │ │ │ └─ 0.001 Line2D.set_label matplotlib/artist.py:1105 +│ │ │ │ └─ 0.001 Line2D.pchanged matplotlib/artist.py:414 +│ │ │ │ └─ 0.001 CallbackRegistry.process matplotlib/cbook.py:348 +│ │ │ └─ 0.001 Axes.add_line matplotlib/axes/_base.py:2362 +│ │ │ └─ 0.001 Axes._update_line_limits matplotlib/axes/_base.py:2390 +│ │ │ └─ 0.001 Line2D.get_path matplotlib/lines.py:1035 +│ │ │ └─ 0.001 Line2D.recache matplotlib/lines.py:672 +│ │ │ └─ 0.001 Path.__init__ matplotlib/path.py:99 +│ │ │ └─ 0.001 check_shape matplotlib/_api/__init__.py:133 +│ │ ├─ 0.001 test_frbc_device.py:544 +│ │ ├─ 0.001 Axes.legend matplotlib/axes/_axes.py:218 +│ │ │ └─ 0.001 Legend.__init__ matplotlib/legend.py:354 +│ │ │ └─ 0.001 bool._init_legend_box matplotlib/legend.py:837 +│ │ │ └─ 0.001 HandlerLine2D.legend_artist matplotlib/legend_handler.py:103 +│ │ │ └─ 0.001 HandlerLine2D.create_artists matplotlib/legend_handler.py:285 +│ │ │ └─ 0.001 HandlerLine2D.update_prop matplotlib/legend_handler.py:86 +│ │ │ └─ 0.001 HandlerLine2D._update_prop matplotlib/legend_handler.py:77 +│ │ │ └─ 0.001 HandlerLine2D._default_update_prop matplotlib/legend_handler.py:83 +│ │ │ └─ 0.001 Line2D.update_from matplotlib/lines.py:1338 +│ │ │ └─ 0.001 MarkerStyle.__init__ matplotlib/markers.py:220 +│ │ │ └─ 0.001 MarkerStyle._set_marker matplotlib/markers.py:299 +│ │ │ └─ 0.001 deepcopy copy.py:128 +│ │ │ └─ 0.001 _deepcopy_dict copy.py:227 +│ │ │ └─ 0.001 deepcopy copy.py:128 +│ │ │ └─ 0.001 _deepcopy_method copy.py:237 +│ │ │ └─ 0.001 deepcopy copy.py:128 +│ │ └─ 0.001 Axes.grid matplotlib/axes/_base.py:3273 +│ │ └─ 0.001 YAxis.grid matplotlib/axis.py:1707 +│ │ └─ 0.001 YAxis.set_tick_params matplotlib/axis.py:957 +│ │ └─ 0.001 YTick._apply_params matplotlib/axis.py:302 +│ ├─ 1.667 PlanningServiceImpl.plan ../planning_service_impl.py:181 +│ │ ├─ 1.653 RootPlanner.plan ../root_planner.py:54 +│ │ │ ├─ 1.451 CongestionPointPlanner.create_improved_planning ../congestion_point_planner.py:142 +│ │ │ │ ├─ 1.446 S2FrbcDevicePlanner.create_improved_planning ../device_planner/frbc/s2_frbc_device_planner.py:98 +│ │ │ │ │ ├─ 1.445 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:257 +│ │ │ │ │ │ ├─ 1.438 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 +│ │ │ │ │ │ │ ├─ 1.357 try_create_next_state ../device_planner/frbc/frbc_state.py:357 +│ │ │ │ │ │ │ │ ├─ 1.052 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 +│ │ │ │ │ │ │ │ │ ├─ 0.282 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ │ ├─ 0.156 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ │ │ │ ├─ 0.109 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.031 str.replace +│ │ │ │ │ │ │ │ │ │ ├─ 0.010 str.strip +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 list.count +│ │ │ │ │ │ │ │ │ │ └─ 0.003 len +│ │ │ │ │ │ │ │ │ ├─ 0.130 FrbcTimestep.add_state ../device_planner/frbc/frbc_timestep.py:67 +│ │ │ │ │ │ │ │ │ │ ├─ 0.068 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.042 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 SelectionResult.__init__ ../device_planner/frbc/selection_reason_result.py:14 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 abs +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 +│ │ │ │ │ │ │ │ │ │ ├─ 0.041 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.012 FrbcState.is_within_fill_level_range ../device_planner/frbc/frbc_state.py:462 +│ │ │ │ │ │ │ │ │ │ ├─ 0.006 FrbcState.get_bucket ../device_planner/frbc/frbc_state.py:488 +│ │ │ │ │ │ │ │ │ │ └─ 0.003 FrbcState.set_selection_reason ../device_planner/frbc/frbc_state.py:509 +│ │ │ │ │ │ │ │ │ ├─ 0.096 S2FrbcDeviceStateWrapper.get_operation_mode_power ../device_planner/frbc/s2_frbc_device_state_wrapper.py:237 +│ │ │ │ │ │ │ │ │ │ ├─ 0.047 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 next +│ │ │ │ │ │ │ │ │ │ ├─ 0.042 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 0.007 FrbcOperationModeElementWrapper.get_power_ranges ../device_planner/frbc/frbc_operation_mode_wrapper.py:33 +│ │ │ │ │ │ │ │ │ ├─ 0.083 S2FrbcDeviceStateWrapper.get_operation_mode_fill_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:277 +│ │ │ │ │ │ │ │ │ │ ├─ 0.054 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.032 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 next +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 +│ │ │ │ │ │ │ │ │ │ ├─ 0.021 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ ├─ 0.003 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ └─ 0.002 FrbcOperationModeElementWrapper.get_fill_rate ../device_planner/frbc/frbc_operation_mode_wrapper.py:24 +│ │ │ │ │ │ │ │ │ ├─ 0.064 get_leakage_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:286 +│ │ │ │ │ │ │ │ │ │ ├─ 0.045 find_leakage_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:295 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:301 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 next +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 +│ │ │ │ │ │ │ │ │ │ ├─ 0.017 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 0.002 FrbcTimestep.get_leakage_behaviour ../device_planner/frbc/frbc_timestep.py:100 +│ │ │ │ │ │ │ │ │ ├─ 0.049 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 +│ │ │ │ │ │ │ │ │ │ ├─ 0.032 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 0.017 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ │ │ ├─ 0.039 calculate_bucket ../device_planner/frbc/s2_frbc_device_state_wrapper.py:318 +│ │ │ │ │ │ │ │ │ │ ├─ 0.024 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ ├─ 0.011 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ │ └─ 0.004 FrbcTimestep.get_nr_of_buckets ../device_planner/frbc/frbc_timestep.py:57 +│ │ │ │ │ │ │ │ │ ├─ 0.024 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ ├─ 0.018 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ └─ 0.006 isinstance +│ │ │ │ │ │ │ │ │ ├─ 0.018 FrbcTimestep.get_duration_seconds ../device_planner/frbc/frbc_timestep.py:106 +│ │ │ │ │ │ │ │ │ │ ├─ 0.009 timedelta.total_seconds +│ │ │ │ │ │ │ │ │ │ └─ 0.009 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ │ ├─ 0.013 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ │ │ │ │ ├─ 0.009 [self] uuid.py +│ │ │ │ │ │ │ │ │ │ └─ 0.004 hash +│ │ │ │ │ │ │ │ │ ├─ 0.012 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 +│ │ │ │ │ │ │ │ │ ├─ 0.010 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 +│ │ │ │ │ │ │ │ │ ├─ 0.009 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 +│ │ │ │ │ │ │ │ │ ├─ 0.008 get_timer_duration ../device_planner/frbc/s2_frbc_device_state_wrapper.py:350 +│ │ │ │ │ │ │ │ │ │ ├─ 0.007 get_timer_duration_milliseconds ../device_planner/frbc/s2_frbc_device_state_wrapper.py:332 +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 next +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.008 isinstance +│ │ │ │ │ │ │ │ │ ├─ 0.007 dict.copy +│ │ │ │ │ │ │ │ │ ├─ 0.006 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 +│ │ │ │ │ │ │ │ │ ├─ 0.005 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ │ │ ├─ 0.005 FrbcState.get_sum_energy_cost ../device_planner/frbc/frbc_state.py:500 +│ │ │ │ │ │ │ │ │ ├─ 0.005 S2ActuatorConfiguration.get_factor ../device_planner/frbc/s2_frbc_actuator_configuration.py:15 +│ │ │ │ │ │ │ │ │ ├─ 0.004 dict.items +│ │ │ │ │ │ │ │ │ ├─ 0.004 FrbcState.get_timer_elapse_map ../device_planner/frbc/frbc_state.py:506 +│ │ │ │ │ │ │ │ │ ├─ 0.003 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 isinstance +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.003 JouleElement.get_joules ../common/target_profile.py:18 +│ │ │ │ │ │ │ │ │ ├─ 0.003 dict.keys +│ │ │ │ │ │ │ │ │ ├─ 0.002 FrbcTimestep.get_min_constraint ../device_planner/frbc/frbc_timestep.py:112 +│ │ │ │ │ │ │ │ │ ├─ 0.002 FrbcTimestep.get_forecasted_usage ../device_planner/frbc/frbc_timestep.py:168 +│ │ │ │ │ │ │ │ │ ├─ 0.001 FrbcTimestep.get_target ../device_planner/frbc/frbc_timestep.py:109 +│ │ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_max_constraint ../device_planner/frbc/frbc_timestep.py:115 +│ │ │ │ │ │ │ │ ├─ 0.150 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ │ │ ├─ 0.110 [self] uuid.py +│ │ │ │ │ │ │ │ │ ├─ 0.022 str.replace +│ │ │ │ │ │ │ │ │ ├─ 0.009 list.count +│ │ │ │ │ │ │ │ │ ├─ 0.005 str.strip +│ │ │ │ │ │ │ │ │ └─ 0.004 len +│ │ │ │ │ │ │ │ ├─ 0.098 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ ├─ 0.021 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ ├─ 0.016 [self] uuid.py +│ │ │ │ │ │ │ │ │ └─ 0.005 isinstance +│ │ │ │ │ │ │ │ ├─ 0.009 get_transition ../device_planner/frbc/s2_frbc_device_state_wrapper.py:202 +│ │ │ │ │ │ │ │ │ ├─ 0.006 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.003 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ │ ├─ 0.002 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:365 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.001 next +│ │ │ │ │ │ │ │ ├─ 0.008 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 +│ │ │ │ │ │ │ │ ├─ 0.007 isinstance +│ │ │ │ │ │ │ │ ├─ 0.007 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ │ │ │ ├─ 0.004 [self] uuid.py +│ │ │ │ │ │ │ │ │ └─ 0.003 hash +│ │ │ │ │ │ │ │ ├─ 0.003 dict.items +│ │ │ │ │ │ │ │ ├─ 0.001 timer_key ../device_planner/frbc/frbc_state.py:346 +│ │ │ │ │ │ │ │ └─ 0.001 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 +│ │ │ │ │ │ │ ├─ 0.071 S2FrbcDeviceStateWrapper.get_all_possible_actuator_configurations ../device_planner/frbc/s2_frbc_device_state_wrapper.py:133 +│ │ │ │ │ │ │ │ ├─ 0.053 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ ├─ 0.007 S2FrbcDeviceStateWrapper.increase ../device_planner/frbc/s2_frbc_device_state_wrapper.py:187 +│ │ │ │ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.003 len +│ │ │ │ │ │ │ │ ├─ 0.005 S2FrbcDeviceStateWrapper.combination_to_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:176 +│ │ │ │ │ │ │ │ ├─ 0.003 S2ActuatorConfiguration.__init__ ../device_planner/frbc/s2_frbc_actuator_configuration.py:8 +│ │ │ │ │ │ │ │ ├─ 0.002 S2FrbcDeviceStateWrapper.get_actuators ../device_planner/frbc/s2_frbc_device_state_wrapper.py:62 +│ │ │ │ │ │ │ │ │ └─ 0.002 S2FrbcDeviceStateWrapper.create_actuator_operation_mode_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:84 +│ │ │ │ │ │ │ │ │ ├─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.001 UUID.__str__ uuid.py:279 +│ │ │ │ │ │ │ │ └─ 0.001 dict.keys +│ │ │ │ │ │ │ └─ 0.010 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ ├─ 0.003 FrbcTimestep.get_final_states_within_fill_level_target ../device_planner/frbc/frbc_timestep.py:132 +│ │ │ │ │ │ │ ├─ 0.002 ../device_planner/frbc/frbc_timestep.py:136 +│ │ │ │ │ │ │ │ └─ 0.002 FrbcTimestep.state_is_within_fill_level_target_range ../device_planner/frbc/frbc_timestep.py:146 +│ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ ├─ 0.002 FrbcTimestep.clear ../device_planner/frbc/frbc_timestep.py:171 +│ │ │ │ │ │ └─ 0.002 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ │ │ │ └─ 0.001 JouleProfile.add ../common/joule_profile.py:59 +│ │ │ │ ├─ 0.002 Proposal.get_global_improvement_value ../common/proposal.py:29 +│ │ │ │ │ ├─ 0.001 TargetProfile.subtract ../common/target_profile.py:104 +│ │ │ │ │ └─ 0.001 TargetProfile.sum_quadratic_distance ../common/target_profile.py:146 +│ │ │ │ ├─ 0.001 CongestionPointPlanner.get_current_planning ../congestion_point_planner.py:216 +│ │ │ │ │ └─ 0.001 JouleProfile.add ../common/joule_profile.py:59 +│ │ │ │ ├─ 0.001 [self] ../congestion_point_planner.py +│ │ │ │ └─ 0.001 Proposal.get_congestion_improvement_value ../common/proposal.py:60 +│ │ │ │ └─ 0.001 JouleProfile.subtract ../common/joule_profile.py:74 +│ │ │ └─ 0.201 CongestionPointPlanner.create_initial_planning ../congestion_point_planner.py:51 +│ │ │ ├─ 0.200 S2FrbcDevicePlanner.create_initial_planning ../device_planner/frbc/s2_frbc_device_planner.py:136 +│ │ │ │ └─ 0.200 OperationModeProfileTree.find_best_plan ../device_planner/frbc/operation_mode_profile_tree.py:257 +│ │ │ │ ├─ 0.199 FrbcState.generate_next_timestep_states ../device_planner/frbc/frbc_state.py:350 +│ │ │ │ │ ├─ 0.188 try_create_next_state ../device_planner/frbc/frbc_state.py:357 +│ │ │ │ │ │ ├─ 0.148 FrbcState.__init__ ../device_planner/frbc/frbc_state.py:29 +│ │ │ │ │ │ │ ├─ 0.031 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ ├─ 0.024 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ │ ├─ 0.019 [self] uuid.py +│ │ │ │ │ │ │ │ ├─ 0.002 str.replace +│ │ │ │ │ │ │ │ ├─ 0.002 str.strip +│ │ │ │ │ │ │ │ └─ 0.001 list.count +│ │ │ │ │ │ │ ├─ 0.015 get_leakage_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:286 +│ │ │ │ │ │ │ │ ├─ 0.013 find_leakage_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:295 +│ │ │ │ │ │ │ │ │ ├─ 0.010 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.002 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:301 +│ │ │ │ │ │ │ │ │ └─ 0.001 next +│ │ │ │ │ │ │ │ └─ 0.002 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ ├─ 0.015 S2FrbcDeviceStateWrapper.get_operation_mode_fill_rate ../device_planner/frbc/s2_frbc_device_state_wrapper.py:277 +│ │ │ │ │ │ │ │ ├─ 0.011 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ ├─ 0.005 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ ├─ 0.004 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 NumberRangeWrapper.get_start_of_range ../s2_utils/number_range_wrapper.py:6 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 FrbcOperationModeElementWrapper.get_fill_level_range ../device_planner/frbc/frbc_operation_mode_wrapper.py:30 +│ │ │ │ │ │ │ │ │ └─ 0.002 FrbcOperationModeWrapper.get_elements ../device_planner/frbc/frbc_operation_mode_wrapper.py:70 +│ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ └─ 0.001 FrbcOperationModeElementWrapper.get_fill_rate ../device_planner/frbc/frbc_operation_mode_wrapper.py:24 +│ │ │ │ │ │ │ ├─ 0.015 S2FrbcDeviceStateWrapper.get_operation_mode_power ../device_planner/frbc/s2_frbc_device_state_wrapper.py:237 +│ │ │ │ │ │ │ │ ├─ 0.009 find_operation_mode_element ../device_planner/frbc/s2_frbc_device_state_wrapper.py:255 +│ │ │ │ │ │ │ │ │ ├─ 0.005 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:258 +│ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ │ └─ 0.001 NumberRangeWrapper.get_end_of_range ../s2_utils/number_range_wrapper.py:9 +│ │ │ │ │ │ │ │ │ └─ 0.004 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ └─ 0.002 FrbcOperationModeElementWrapper.get_power_ranges ../device_planner/frbc/frbc_operation_mode_wrapper.py:33 +│ │ │ │ │ │ │ ├─ 0.011 FrbcTimestep.add_state ../device_planner/frbc/frbc_timestep.py:67 +│ │ │ │ │ │ │ │ ├─ 0.006 FrbcState.is_preferable_than ../device_planner/frbc/frbc_state.py:426 +│ │ │ │ │ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ │ │ │ ├─ 0.001 abs +│ │ │ │ │ │ │ │ │ └─ 0.001 SelectionResult.__init__ ../device_planner/frbc/selection_reason_result.py:14 +│ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ │ └─ 0.002 FrbcState.is_within_fill_level_range ../device_planner/frbc/frbc_state.py:462 +│ │ │ │ │ │ │ ├─ 0.007 S2FrbcDeviceStateWrapper.get_operation_mode ../device_planner/frbc/s2_frbc_device_state_wrapper.py:97 +│ │ │ │ │ │ │ ├─ 0.006 get_timer_duration ../device_planner/frbc/s2_frbc_device_state_wrapper.py:350 +│ │ │ │ │ │ │ │ ├─ 0.005 get_timer_duration_milliseconds ../device_planner/frbc/s2_frbc_device_state_wrapper.py:332 +│ │ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ │ └─ 0.002 get_actuator_description ../device_planner/frbc/s2_frbc_device_state_wrapper.py:360 +│ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ ├─ 0.004 calculate_bucket ../device_planner/frbc/s2_frbc_device_state_wrapper.py:318 +│ │ │ │ │ │ │ │ ├─ 0.003 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ │ │ ├─ 0.003 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ │ ├─ 0.003 FrbcTimestep.get_duration_seconds ../device_planner/frbc/frbc_timestep.py:106 +│ │ │ │ │ │ │ │ ├─ 0.002 timedelta.total_seconds +│ │ │ │ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/frbc_timestep.py +│ │ │ │ │ │ │ ├─ 0.003 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ │ │ ├─ 0.002 [self] uuid.py +│ │ │ │ │ │ │ │ └─ 0.001 hash +│ │ │ │ │ │ │ ├─ 0.003 FrbcState.get_sum_squared_constraint_violation ../device_planner/frbc/frbc_state.py:497 +│ │ │ │ │ │ │ ├─ 0.002 isinstance +│ │ │ │ │ │ │ ├─ 0.002 FrbcState.get_sum_squared_energy ../device_planner/frbc/frbc_state.py:503 +│ │ │ │ │ │ │ ├─ 0.002 FrbcState.get_sum_squared_distance ../device_planner/frbc/frbc_state.py:494 +│ │ │ │ │ │ │ ├─ 0.001 dict.copy +│ │ │ │ │ │ │ └─ 0.001 FrbcState.get_actuator_configurations ../device_planner/frbc/frbc_state.py:482 +│ │ │ │ │ │ ├─ 0.024 UUID.__init__ uuid.py:138 +│ │ │ │ │ │ │ ├─ 0.013 [self] uuid.py +│ │ │ │ │ │ │ ├─ 0.006 str.replace +│ │ │ │ │ │ │ ├─ 0.003 str.strip +│ │ │ │ │ │ │ ├─ 0.001 len +│ │ │ │ │ │ │ └─ 0.001 list.count +│ │ │ │ │ │ ├─ 0.011 [self] ../device_planner/frbc/frbc_state.py +│ │ │ │ │ │ ├─ 0.002 S2ActuatorConfiguration.get_operation_mode_id ../device_planner/frbc/s2_frbc_actuator_configuration.py:12 +│ │ │ │ │ │ ├─ 0.001 UUID.__eq__ uuid.py:239 +│ │ │ │ │ │ ├─ 0.001 UUID.__hash__ uuid.py:267 +│ │ │ │ │ │ └─ 0.001 isinstance +│ │ │ │ │ └─ 0.011 S2FrbcDeviceStateWrapper.get_all_possible_actuator_configurations ../device_planner/frbc/s2_frbc_device_state_wrapper.py:133 +│ │ │ │ │ ├─ 0.004 [self] ../device_planner/frbc/s2_frbc_device_state_wrapper.py +│ │ │ │ │ ├─ 0.003 S2FrbcDeviceStateWrapper.combination_to_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:176 +│ │ │ │ │ ├─ 0.002 S2FrbcDeviceStateWrapper.increase ../device_planner/frbc/s2_frbc_device_state_wrapper.py:187 +│ │ │ │ │ ├─ 0.001 S2FrbcDeviceStateWrapper.get_actuators ../device_planner/frbc/s2_frbc_device_state_wrapper.py:62 +│ │ │ │ │ │ └─ 0.001 S2FrbcDeviceStateWrapper.create_actuator_operation_mode_map ../device_planner/frbc/s2_frbc_device_state_wrapper.py:84 +│ │ │ │ │ │ └─ 0.001 FrbcTimestep.get_system_description ../device_planner/frbc/frbc_timestep.py:97 +│ │ │ │ │ └─ 0.001 S2ActuatorConfiguration.__init__ ../device_planner/frbc/s2_frbc_actuator_configuration.py:8 +│ │ │ │ └─ 0.001 FrbcTimestep.set_targets ../device_planner/frbc/frbc_timestep.py:60 +│ │ │ └─ 0.001 JouleProfile.add ../common/joule_profile.py:59 +│ │ └─ 0.014 PlanningServiceImpl.create_controller_tree ../planning_service_impl.py:121 +│ │ └─ 0.014 S2FrbcDevicePlanner.__init__ ../device_planner/frbc/s2_frbc_device_planner.py:33 +│ │ └─ 0.014 OperationModeProfileTree.__init__ ../device_planner/frbc/operation_mode_profile_tree.py:123 +│ │ └─ 0.014 OperationModeProfileTree.generate_timesteps ../device_planner/frbc/operation_mode_profile_tree.py:138 +│ │ ├─ 0.005 get_latest_before ../device_planner/frbc/operation_mode_profile_tree.py:201 +│ │ │ ├─ 0.004 datetime.replace +│ │ │ └─ 0.001 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ │ ├─ 0.005 get_usage_forecast_for_timestep ../device_planner/frbc/operation_mode_profile_tree.py:239 +│ │ │ └─ 0.005 sub_profile ../device_planner/frbc/usage_forecast_util.py:58 +│ │ │ ├─ 0.003 UsageForecastElement.split ../device_planner/frbc/usage_forecast_util.py:20 +│ │ │ │ ├─ 0.002 UsageForecastElement.__init__ ../device_planner/frbc/usage_forecast_util.py:9 +│ │ │ │ │ ├─ 0.001 datetime.replace +│ │ │ │ │ └─ 0.001 [self] ../device_planner/frbc/usage_forecast_util.py +│ │ │ │ └─ 0.001 UsageForecastElement.date_in_element ../device_planner/frbc/usage_forecast_util.py:29 +│ │ │ │ └─ 0.001 datetime.replace +│ │ │ ├─ 0.001 [self] ../device_planner/frbc/usage_forecast_util.py +│ │ │ └─ 0.001 UsageForecastElement.get_usage ../device_planner/frbc/usage_forecast_util.py:14 +│ │ │ └─ 0.001 timedelta.total_seconds +│ │ ├─ 0.001 datetime.astimezone +│ │ ├─ 0.001 from_fill_level_target_profile ../device_planner/frbc/fill_level_target_util.py:28 +│ │ ├─ 0.001 from_storage_usage_profile ../device_planner/frbc/usage_forecast_util.py:45 +│ │ └─ 0.001 [self] ../device_planner/frbc/operation_mode_profile_tree.py +│ └─ 0.001 create_ev_device_state test_frbc_device.py:59 +│ └─ 0.001 create_driving_usage_forecast test_frbc_device.py:513 +│ └─ 0.001 inner s2python/validate_values_mixin.py:42 +│ └─ 0.001 FRBCUsageForecast.__init__ pydantic/main.py:204 +│ └─ 0.001 SchemaValidator.validate_python +└─ 1.297 _find_and_load :1022 + └─ 1.297 _find_and_load_unlocked :987 + ├─ 0.760 _load_unlocked :664 + │ └─ 0.760 SourceFileLoader.exec_module :877 + │ ├─ 0.759 _call_with_frames_removed :233 + │ │ ├─ 0.725 ../device_planner/frbc/s2_frbc_device_planner.py:1 + │ │ │ └─ 0.725 _find_and_load :1022 + │ │ │ └─ 0.725 _find_and_load_unlocked :987 + │ │ │ └─ 0.725 _load_unlocked :664 + │ │ │ └─ 0.725 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.725 _call_with_frames_removed :233 + │ │ │ ├─ 0.721 ../device_planner/frbc/operation_mode_profile_tree.py:1 + │ │ │ │ ├─ 0.499 _find_and_load :1022 + │ │ │ │ │ └─ 0.499 _find_and_load_unlocked :987 + │ │ │ │ │ ├─ 0.438 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.438 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ ├─ 0.437 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.289 matplotlib/pyplot.py:1 + │ │ │ │ │ │ │ │ ├─ 0.230 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.230 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.230 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.230 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ ├─ 0.227 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.129 matplotlib/figure.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.122 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.122 matplotlib/projections/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.068 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.068 matplotlib/axes/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.040 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.040 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.040 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.040 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.039 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.039 matplotlib/axes/_axes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 matplotlib/quiver.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 Quiver.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Quiver._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/_docstring.py:79 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Artist.recursive_subclasses matplotlib/_api/__init__.py:354 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 matplotlib/tri/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/tri/_tricontour.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 TriContourSet.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TriContourSet._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__init__ inspect.py:2920 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Substitution.__call__ matplotlib/_docstring.py:66 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/tri/_tripcolor.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _finddoc inspect.py:663 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 matplotlib/category.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 dateutil/parser/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 dateutil/parser/_parser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 __getattr__ dateutil/__init__.py:12 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 import_module importlib/__init__.py:108 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _gcd_import :1038 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 dateutil/tz/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dateutil/tz/tz.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _new_module :48 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 matplotlib/axes/_secondary_axes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis.__init_subclass__ matplotlib/axes/_base.py:747 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SecondaryAxis._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/legend.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Legend.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Legend._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/inset.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InsetIndicator.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 InsetIndicator._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _validate_timestamp_pyc :618 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unpack_uint32 :84 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 Axes matplotlib/axes/_axes.py:67 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.split + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _preprocess_data matplotlib/__init__.py:1447 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _add_data_doc matplotlib/__init__.py:1403 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.split + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] matplotlib/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 make_keyword_only matplotlib/_api/deprecation.py:414 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_api/deprecation.py:439 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Axes.__init_subclass__ matplotlib/axes/_base.py:747 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Axes._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.028 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 matplotlib/axes/_base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 matplotlib/axis.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 Axis.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 Axis._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.expandtabs + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.append + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/table.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Table.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Table._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 matplotlib/offsetbox.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 DrawingArea.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 DrawingArea._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 sub re.py:202 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _AxesBase.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _AxesBase._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.append sre_parse.py:173 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getLogger logging/__init__.py:2071 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _axis_method_wrapper.__set_name__ matplotlib/axes/_base.py:67 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 unwrap inspect.py:612 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.052 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.052 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.051 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.032 mpl_toolkits/mplot3d/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.032 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.032 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.032 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.032 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.031 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.031 mpl_toolkits/mplot3d/axes3d.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 mpl_toolkits/mplot3d/art3d.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 Path3DCollection.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 Path3DCollection._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Patch3DCollection mpl_toolkits/mplot3d/art3d.py:625 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 mpl_toolkits/mplot3d/axis3d.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 Axis.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 Axis._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 Axes3D.__init_subclass__ matplotlib/axes/_base.py:747 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Axes3D.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Axes3D._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Axes3D mpl_toolkits/mplot3d/axes3d.py:41 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _preprocess_data matplotlib/__init__.py:1447 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _axis_method_wrapper.__set_name__ matplotlib/axes/_base.py:67 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 matplotlib/projections/geo.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 GeoAxes.__init_subclass__ matplotlib/axes/_base.py:747 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 GeoAxes.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 GeoAxes._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.expandtabs + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 matplotlib/artist.py:169 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Parameter.__init__ inspect.py:2637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _ParameterKind.__call__ enum.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _ParameterKind.__new__ enum.py:678 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] enum.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 matplotlib/projections/polar.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 PolarAxes.__init_subclass__ matplotlib/axes/_base.py:747 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PolarAxes.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PolarAxes._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 RadialTick.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 RadialTick._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.__exit__ + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 Figure.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Figure._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FigureBase matplotlib/figure.py:118 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ ├─ 0.092 matplotlib/colorbar.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.089 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.089 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.089 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.088 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.054 matplotlib/contour.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.051 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 matplotlib/backend_bases.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.050 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.049 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.048 matplotlib/text.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.041 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.039 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 matplotlib/patches.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 RegularPolygon.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 RegularPolygon._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.join + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Tokenizer.__init__ sre_parse.py:225 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.aliased_name matplotlib/artist.py:1549 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/artist.py:169 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArrowStyle.__init_subclass__ matplotlib/patches.py:2293 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArrowStyle.pprint_styles matplotlib/patches.py:2335 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/patches.py:2339 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.__init__ inspect.py:2637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_bound_method inspect.py:1959 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.replace inspect.py:3014 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__init__ inspect.py:2920 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Parameter.default inspect.py:2691 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Arrow matplotlib/patches.py:1313 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Path._create_closed matplotlib/path.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _to_unmasked_float_array matplotlib/cbook.py:1337 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asarray + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 matplotlib/font_manager.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_fontmanager matplotlib/font_manager.py:1625 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 json_load matplotlib/font_manager.py:1030 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 load json/__init__.py:274 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 loads json/__init__.py:299 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 JSONDecoder.decode json/decoder.py:332 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 JSONDecoder.raw_decode json/decoder.py:343 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _json_decode matplotlib/font_manager.py:989 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] matplotlib/font_manager.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isabs posixpath.py:60 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_sep posixpath.py:41 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FontEntry.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FontEntry._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_afm.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext_data.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _normalize_stix_fontcodes matplotlib/_mathtext_data.py:1722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext_data.py:1728 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _normalize_stix_fontcodes matplotlib/_mathtext_data.py:1722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext_data.py:1728 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _normalize_stix_fontcodes matplotlib/_mathtext_data.py:1722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext_data.py:1726 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _normalize_stix_fontcodes matplotlib/_mathtext_data.py:1722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext_data.py:1724 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 matplotlib/textpath.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/mathtext.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_mathtext.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:2249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/dviread.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Enum.__call__ enum.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Enum._create_ enum.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type.__new__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_text_helpers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LayoutItem._get_field dataclasses.py:722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 Text.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 Text._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.aliased_name matplotlib/artist.py:1549 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.get + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 is_alias matplotlib/artist.py:1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.split + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/backend_tools.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/layout_engine.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ContourSet.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ContourSet._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 list.pop + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.034 matplotlib/collections.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 EventCollection.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 EventCollection._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.split + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 list.pop + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] re.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 hasattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 matplotlib/artist.py:169 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Parameter.__init__ inspect.py:2637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__init__ inspect.py:2920 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 matplotlib/lines.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 Line2D.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Line2D._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_alias matplotlib/artist.py:1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _ArtistKwdocLoader.__missing__ matplotlib/_docstring.py:73 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 number_of_parameters matplotlib/artist.py:1530 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.search + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 define_aliases matplotlib/_api/__init__.py:224 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Collection matplotlib/collections.py:28 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/spines.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Spine._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ColorbarSpine.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ColorbarSpine._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ └─ 0.006 matplotlib/image.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.006 BboxImage.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ │ └─ 0.006 BboxImage._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ ├─ 0.005 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.__init__ matplotlib/artist.py:1413 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_aliases matplotlib/artist.py:1433 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/artist.py:1444 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/artist.py + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ └─ 0.003 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ └─ 0.003 loads + │ │ │ │ │ │ │ │ ├─ 0.051 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ └─ 0.051 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.051 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.051 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.051 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.051 matplotlib/style/__init__.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.051 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.051 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ ├─ 0.041 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ └─ 0.041 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ └─ 0.041 loads + │ │ │ │ │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.010 matplotlib/style/core.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.010 read_style_directory matplotlib/style/core.py:198 + │ │ │ │ │ │ │ │ │ └─ 0.010 _rc_params_in_file matplotlib/__init__.py:884 + │ │ │ │ │ │ │ │ │ ├─ 0.008 RcParams.__setitem__ matplotlib/__init__.py:748 + │ │ │ │ │ │ │ │ │ │ ├─ 0.004 validate_cycler matplotlib/rcsetup.py:814 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 :1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 cycler matplotlib/rcsetup.py:677 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 f matplotlib/rcsetup.py:99 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/rcsetup.py:102 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_color_for_prop_cycle matplotlib/rcsetup.py:304 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_color matplotlib/rcsetup.py:332 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 literal_eval ast.py:54 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert ast.py:84 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert_signed_num ast.py:76 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert_num ast.py:72 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/rcsetup.py:118 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_color_for_prop_cycle matplotlib/rcsetup.py:304 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_color matplotlib/rcsetup.py:332 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_color_like matplotlib/colors.py:223 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/rcsetup.py:759 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cycler cycler/__init__.py:482 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit ast.py:414 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.generic_visit ast.py:420 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit ast.py:414 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.generic_visit ast.py:420 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit ast.py:414 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.generic_visit ast.py:420 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit ast.py:414 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.generic_visit ast.py:420 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit ast.py:414 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _DunderChecker.visit_Constant ast.py:430 + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 validate_color matplotlib/rcsetup.py:332 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] matplotlib/rcsetup.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_color_like matplotlib/colors.py:223 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 to_rgba matplotlib/colors.py:277 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _to_rgba_no_colorcycle matplotlib/colors.py:324 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 RcParams._set matplotlib/__init__.py:678 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 validate_font_properties matplotlib/rcsetup.py:426 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse_fontconfig_pattern matplotlib/_fontconfig_pattern.py:77 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._inner pyparsing/util.py:372 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parse_string pyparsing/core.py:1145 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseCache pyparsing/core.py:973 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Opt._parseCache pyparsing/core.py:973 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParseResults.copy pyparsing/results.py:573 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParseResults.__new__ pyparsing/results.py:153 + │ │ │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _open_file_or_url matplotlib/__init__.py:866 + │ │ │ │ │ │ │ │ │ └─ 0.001 _strip_comment matplotlib/cbook.py:468 + │ │ │ │ │ │ │ │ │ └─ 0.001 str.strip + │ │ │ │ │ │ │ │ ├─ 0.007 _copy_docstring_and_deprecators matplotlib/pyplot.py:176 + │ │ │ │ │ │ │ │ │ ├─ 0.006 _add_pyplot_note matplotlib/pyplot.py:209 + │ │ │ │ │ │ │ │ │ │ └─ 0.006 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] inspect.py + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 len + │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lstrip + │ │ │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/pyplot.py + │ │ │ │ │ │ │ │ └─ 0.001 _ArtistPropertiesSubstitution.__call__ matplotlib/_docstring.py:122 + │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ └─ 0.001 min + │ │ │ │ │ │ │ └─ 0.148 pint/__init__.py:1 + │ │ │ │ │ │ │ ├─ 0.147 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.147 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ ├─ 0.146 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.146 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.146 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.146 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.146 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.146 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.146 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.146 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.146 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.146 pint/delegates/__init__.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.144 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 pint/delegates/txt_defparser/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.144 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ ├─ 0.143 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.143 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.143 pint/delegates/txt_defparser/defparser.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.133 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.133 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.133 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.133 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.132 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.096 pint/delegates/base_defparser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.095 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 pint/facets/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.095 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.093 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.093 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.087 pint/facets/context/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.087 pint/facets/context/definitions.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.085 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 pint/facets/plain/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.085 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.083 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.082 pint/facets/plain/definitions.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.078 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.078 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.077 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.077 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.077 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.073 pint/_typing.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.073 pint/compat.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.072 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.072 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.071 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.071 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.071 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.071 numpy/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.044 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.044 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.044 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.044 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.044 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.044 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.043 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.028 numpy/lib/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.027 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 numpy/lib/index_tricks.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 numpy/matrixlib/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 numpy/matrixlib/defmatrix.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 numpy/linalg/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 numpy/linalg/linalg.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 numpy/_typing/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/_typing/_array_like.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _UnionGenericAlias.__getitem__ typing.py:1046 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.__getitem__ typing.py:1046 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.copy_with typing.py:1083 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _NestedSequence.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1330 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/_typing/_dtype_like.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 typing.py:515 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _LiteralGenericAlias.__eq__ typing.py:1278 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _remove_dups_flatten typing.py:267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _deduplicate typing.py:253 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__hash__ typing.py:1284 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/_typing/_char_codes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _LiteralSpecialForm.__getitem__ typing.py:407 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _LiteralSpecialForm.Literal typing.py:532 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _LiteralGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 typing.py:1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/_typing/_nested_sequence.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _classify_pyc :585 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/twodim_base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/function_base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/npyio.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/_iotools.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/polynomial.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 numpy/lib/scimath.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/type_check.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ismethod numpy/_utils/_inspect.py:13 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/lib/shape_base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 tuple.__new__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] numpy/lib/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 numpy/random/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 numpy/random/_pickle.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ExtensionFileLoader.exec_module :1182 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 numpy/ma/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/ma/core.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert2ma.__init__ numpy/ma/core.py:8389 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _convert2ma.getdoc numpy/ma/core.py:8394 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_object_signature numpy/ma/core.py:131 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargs numpy/_utils/_inspect.py:65 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/ma/extras.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _fromnxfunction_seq.__init__ numpy/ma/extras.py:233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _fromnxfunction_seq.getdoc numpy/ma/extras.py:237 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 doc_note numpy/ma/core.py:115 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 numpy/polynomial/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/fft/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/fft/_pocketfft.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 numpy/__config__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 numpy/core/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 numpy/core/multiarray.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 numpy/core/overrides.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 [self] + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 create_dynamic + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 numpy/core/numeric.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 numpy/core/shape_base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 numpy/core/fromnumeric.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 extend_all numpy/core/numeric.py:2507 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/core/numerictypes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 numpy/core/_type_aliases.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _ModuleLockManager.__init__ :165 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/core/_internal.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ctypes/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _check_size ctypes/__init__.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 calcsize + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.tell sre_parse.py:287 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 numpy/core/_add_newdocs.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 add_newdoc numpy/core/function_base.py:497 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/core/defchararray.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorator numpy/core/overrides.py:142 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 verify_matching_signatures numpy/core/overrides.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargspec numpy/_utils/_inspect.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getargs numpy/_utils/_inspect.py:65 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ModuleSpec.parent :404 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.release :125 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cleanup numpy/__config__.py:19 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/__config__.py:25 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cleanup numpy/__config__.py:19 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/__config__.py:25 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cleanup numpy/__config__.py:19 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/__config__.py:25 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _register_known_types numpy/core/getlimits.py:162 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MachArLike.__init__ numpy/core/getlimits.py:34 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MachArLike._float_to_str numpy/core/getlimits.py:111 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _array_str_implementation numpy/core/arrayprint.py:1595 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 longdouble.wrapper numpy/core/arrayprint.py:506 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _guarded_repr_or_str numpy/core/arrayprint.py:1588 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 numpy/__init__.py:192 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.format + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.__exit__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pint/util.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/util.py:921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 State.closegroup sre_parse.py:97 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/pint_eval.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/converters.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter._hash_add dataclasses.py:842 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Converter._set_qualname dataclasses.py:817 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ImportLockContext.__enter__ :893 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 acquire_lock + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ScaleConverter.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 ScaleConverter._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _DataclassParams.__init__ dataclasses.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] dataclasses.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type._signature_get_user_defined_method inspect.py:1867 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/plain/objects.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/plain/quantity.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ForwardRelation._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ContextDefinition._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pint/facets/nonmultiplicative/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rpartition + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pint/facets/system/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/facets/system/objects.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/system/definitions.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseUnitRule.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseUnitRule._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/facets/group/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/registry.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/quantity.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/facets/numpy/numpy_func.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 path_hook_for_FileFinder :1628 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PintParsedStatement.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PintParsedStatement._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _repr_fn dataclasses.py:587 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 flexcache/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 version importlib/metadata/__init__.py:989 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 distribution importlib/metadata/__init__.py:963 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 Distribution.from_name importlib/metadata/__init__.py:532 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 importlib_metadata/__init__.py:930 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 FastPath.search importlib_metadata/__init__.py:789 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 Lookup.search importlib_metadata/__init__.py:837 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 flexcache/flexcache.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 InvalidateByMultiPathsMtime.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 InvalidateByMultiPathsMtime._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 InvalidateByMultiPathsMtime._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DiskCache flexcache/flexcache.py:284 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem__ typing.py:1194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem_inner__ typing.py:1208 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.copy_with typing.py:1188 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 flexparser/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 flexparser/flexparser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Hash.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 Hash._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 BOS._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] dataclasses.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 pint/delegates/txt_defparser/context.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pint/delegates/txt_defparser/plain.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 AliasDefinition.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 AliasDefinition._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 AliasDefinition._hash_add dataclasses.py:842 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dataclasses.py:1040 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginContext pint/delegates/txt_defparser/context.py:82 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/block.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DirectiveBlock.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DirectiveBlock._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _repr_fn dataclasses.py:587 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pint/delegates/txt_defparser/group.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupDefinition.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupDefinition._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/txt_defparser/system.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginSystem.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginSystem._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _field_init dataclasses.py:448 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.release :125 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/__init__.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/full.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/_to_register.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pint/delegates/formatter/_format_helpers.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ └─ 0.001 version importlib/metadata/__init__.py:989 + │ │ │ │ │ │ │ └─ 0.001 PathDistribution.version importlib_metadata/__init__.py:511 + │ │ │ │ │ │ │ └─ 0.001 PathDistribution.metadata importlib_metadata/__init__.py:476 + │ │ │ │ │ │ │ └─ 0.001 message_from_string email/__init__.py:32 + │ │ │ │ │ │ │ └─ 0.001 Parser.parsestr email/parser.py:59 + │ │ │ │ │ │ │ └─ 0.001 Parser.parse email/parser.py:41 + │ │ │ │ │ │ │ └─ 0.001 FeedParser.feed email/feedparser.py:173 + │ │ │ │ │ │ │ └─ 0.001 FeedParser._call_parse email/feedparser.py:178 + │ │ │ │ │ │ │ └─ 0.001 FeedParser._parsegen email/feedparser.py:218 + │ │ │ │ │ │ │ └─ 0.001 FeedParser._parse_headers email/feedparser.py:471 + │ │ │ │ │ │ │ └─ 0.001 Message.set_raw email/message.py:479 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ └─ 0.062 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.062 _find_and_load :1022 + │ │ │ │ │ └─ 0.062 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.062 _load_unlocked :664 + │ │ │ │ │ └─ 0.062 SourceFileLoader.exec_module :877 + │ │ │ │ │ ├─ 0.060 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.060 matplotlib/__init__.py:1 + │ │ │ │ │ │ ├─ 0.040 _handle_fromlist :1053 + │ │ │ │ │ │ │ └─ 0.040 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.040 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.040 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.040 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.040 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.039 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.038 matplotlib/rcsetup.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.038 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ ├─ 0.037 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.037 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ ├─ 0.035 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 matplotlib/_fontconfig_pattern.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.017 pyparsing/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 pyparsing/core.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Regex.set_parse_action pyparsing/core.py:613 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:694 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _trim_arity pyparsing/core.py:258 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 extract_stack traceback.py:216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 extract traceback.py:338 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrameSummary.line traceback.py:301 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getline linecache.py:26 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getlines linecache.py:36 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 updatecache linecache.py:80 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pyparsing/core.py:6208 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserElement.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 srange pyparsing/core.py:6071 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parse_string pyparsing/core.py:1145 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 OneOrMore._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 OneOrMore.parseImpl pyparsing/core.py:5062 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.parseImpl pyparsing/core.py:3139 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserElement pyparsing/core.py:390 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 replaced_by_pep8 pyparsing/util.py:361 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.__init__ pyparsing/core.py:5779 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.leave_whitespace pyparsing/core.py:4658 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Or.copy pyparsing/core.py:3972 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Or.copy pyparsing/core.py:3972 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Or.copy pyparsing/core.py:3972 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.copy pyparsing/core.py:3972 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3975 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Literal.copy pyparsing/core.py:519 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pyparsing/common.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pyparsing_common pyparsing/common.py:8 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Regex.__add__ pyparsing/core.py:1442 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:4038 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:3846 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:457 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 White.__init__ pyparsing/core.py:3555 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.__init__ pyparsing/core.py:5779 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.leave_whitespace pyparsing/core.py:4658 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.leave_whitespace pyparsing/core.py:3880 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.leave_whitespace pyparsing/core.py:3880 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.leave_whitespace pyparsing/core.py:3880 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pyparsing/core.py:3888 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SingleCharLiteral.copy pyparsing/core.py:519 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pyparsing/helpers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Combine.__call__ pyparsing/core.py:1730 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Combine.copy pyparsing/core.py:519 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Suppress.__init__ pyparsing/core.py:5972 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__init__ pyparsing/core.py:5755 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Suppress.__init__ pyparsing/core.py:4615 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SingleCharLiteral.__init__ pyparsing/core.py:2452 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SingleCharLiteral.name pyparsing/core.py:1940 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 make_html_tags pyparsing/helpers.py:605 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _makeTags pyparsing/helpers.py:547 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pyparsing/exceptions.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collapse_string_to_ranges pyparsing/util.py:209 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pyparsing/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.tell sre_parse.py:287 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 matplotlib/colors.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 PIL/Image.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 PIL/ExifTags.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 __new__ enum.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Base PIL/ExifTags.py:21 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _EnumDict.__setitem__ enum.py:89 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_descriptor enum.py:12 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hasattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PIL/ExifTags.py:295 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _new_module :48 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _classify_pyc :585 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 matplotlib/scale.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 matplotlib/ticker.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/transforms.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 loads + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PIL/PngImagePlugin.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PIL/ImagePalette.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cycler/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Generic.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ └─ 0.001 cb :198 + │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_docstring.py:1 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ ├─ 0.011 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.011 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.011 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.011 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.011 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.011 matplotlib/cm.py:1 + │ │ │ │ │ │ │ ├─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.005 matplotlib/colorizer.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.004 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 matplotlib/artist.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Artist._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 search re.py:197 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.append sre_parse.py:173 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__len__ sre_parse.py:161 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_setters matplotlib/artist.py:1511 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ └─ 0.001 ColorizingArtist.__init_subclass__ matplotlib/artist.py:125 + │ │ │ │ │ │ │ │ │ └─ 0.001 ColorizingArtist._update_set_signature_and_docstring matplotlib/artist.py:158 + │ │ │ │ │ │ │ │ │ └─ 0.001 kwdoc matplotlib/artist.py:1832 + │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.pprint_setters matplotlib/artist.py:1593 + │ │ │ │ │ │ │ │ │ └─ 0.001 ArtistInspector.get_valid_values matplotlib/artist.py:1461 + │ │ │ │ │ │ │ │ │ └─ 0.001 getdoc inspect.py:725 + │ │ │ │ │ │ │ │ │ └─ 0.001 cleandoc inspect.py:744 + │ │ │ │ │ │ │ │ ├─ 0.001 matplotlib/_cm_bivar.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 array + │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/_cm_listed.py:1 + │ │ │ │ │ │ │ └─ 0.003 _gen_cmap_registry matplotlib/cm.py:32 + │ │ │ │ │ │ │ ├─ 0.001 LinearSegmentedColormap.reversed matplotlib/colors.py:1133 + │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/colors.py:1152 + │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/colors.py:1154 + │ │ │ │ │ │ │ ├─ 0.001 ListedColormap.reversed matplotlib/colors.py:1233 + │ │ │ │ │ │ │ │ └─ 0.001 ListedColormap.__init__ matplotlib/colors.py:1193 + │ │ │ │ │ │ │ └─ 0.001 from_list matplotlib/colors.py:1080 + │ │ │ │ │ │ │ └─ 0.001 linspace numpy/core/function_base.py:24 + │ │ │ │ │ │ │ └─ 0.001 arange + │ │ │ │ │ │ ├─ 0.006 _rc_params_in_file matplotlib/__init__.py:884 + │ │ │ │ │ │ │ ├─ 0.003 RcParams.__setitem__ matplotlib/__init__.py:748 + │ │ │ │ │ │ │ │ ├─ 0.002 validate_font_properties matplotlib/rcsetup.py:426 + │ │ │ │ │ │ │ │ │ └─ 0.002 parse_fontconfig_pattern matplotlib/_fontconfig_pattern.py:77 + │ │ │ │ │ │ │ │ │ ├─ 0.001 And._inner pyparsing/util.py:372 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parse_string pyparsing/core.py:1145 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5172 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ZeroOrMore.parseImpl pyparsing/core.py:5062 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 And.parseImpl pyparsing/core.py:4123 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Group.parseImpl pyparsing/core.py:4641 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 MatchFirst.parseImpl pyparsing/core.py:4371 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex._parseNoCache pyparsing/core.py:806 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.parseImpl pyparsing/core.py:3139 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.re_match pyparsing/core.py:3127 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Regex.re pyparsing/core.py:3106 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ └─ 0.001 _make_fontconfig_parser matplotlib/_fontconfig_pattern.py:55 + │ │ │ │ │ │ │ │ │ └─ 0.001 Opt.__add__ pyparsing/core.py:1442 + │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:4038 + │ │ │ │ │ │ │ │ │ └─ 0.001 And.__init__ pyparsing/core.py:3846 + │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ └─ 0.001 validate_cycler matplotlib/rcsetup.py:814 + │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ └─ 0.001 cycler matplotlib/rcsetup.py:677 + │ │ │ │ │ │ │ │ └─ 0.001 f matplotlib/rcsetup.py:99 + │ │ │ │ │ │ │ │ └─ 0.001 matplotlib/rcsetup.py:118 + │ │ │ │ │ │ │ │ └─ 0.001 validate_color_for_prop_cycle matplotlib/rcsetup.py:304 + │ │ │ │ │ │ │ │ └─ 0.001 match re.py:187 + │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ └─ 0.001 _compile_charset sre_compile.py:265 + │ │ │ │ │ │ │ ├─ 0.001 matplotlib/__init__.py:1000 + │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 + │ │ │ │ │ │ │ │ └─ 0.001 _open_file_or_url matplotlib/__init__.py:866 + │ │ │ │ │ │ │ └─ 0.001 [self] matplotlib/__init__.py + │ │ │ │ │ │ ├─ 0.003 _check_versions matplotlib/__init__.py:245 + │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.001 parse packaging/version.py:47 + │ │ │ │ │ │ │ │ └─ 0.001 Version.__init__ packaging/version.py:188 + │ │ │ │ │ │ │ │ └─ 0.001 _parse_letter_version packaging/version.py:471 + │ │ │ │ │ │ │ └─ 0.001 import_module importlib/__init__.py:108 + │ │ │ │ │ │ │ └─ 0.001 _gcd_import :1038 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ └─ 0.001 RcParams.copy matplotlib/__init__.py:842 + │ │ │ │ │ │ └─ 0.001 RcParams._get matplotlib/__init__.py:698 + │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ └─ 0.001 loads + │ │ │ │ ├─ 0.220 RegistryMeta.__call__ pint/facets/plain/registry.py:156 + │ │ │ │ │ └─ 0.220 UnitRegistry._after_init pint/facets/system/registry.py:70 + │ │ │ │ │ └─ 0.220 UnitRegistry._after_init pint/facets/group/registry.py:58 + │ │ │ │ │ └─ 0.220 UnitRegistry._after_init pint/facets/plain/registry.py:328 + │ │ │ │ │ ├─ 0.146 UnitRegistry.load_definitions pint/facets/plain/registry.py:580 + │ │ │ │ │ │ ├─ 0.135 DefParser.parse_file pint/delegates/txt_defparser/defparser.py:121 + │ │ │ │ │ │ │ └─ 0.135 parse flexparser/flexparser.py:1610 + │ │ │ │ │ │ │ ├─ 0.134 _PintParser.parse flexparser/flexparser.py:1218 + │ │ │ │ │ │ │ │ └─ 0.134 _PintParser.parse_file pint/delegates/txt_defparser/defparser.py:53 + │ │ │ │ │ │ │ │ └─ 0.134 _PintParser.parse_file flexparser/flexparser.py:1265 + │ │ │ │ │ │ │ │ └─ 0.134 _PintParser.parse_bytes flexparser/flexparser.py:1248 + │ │ │ │ │ │ │ │ └─ 0.134 PintRootBlock.consume_body_closing flexparser/flexparser.py:1011 + │ │ │ │ │ │ │ │ ├─ 0.133 PintRootBlock.consume_body flexparser/flexparser.py:981 + │ │ │ │ │ │ │ │ │ ├─ 0.063 GroupDefinition.consume flexparser/flexparser.py:1033 + │ │ │ │ │ │ │ │ │ │ ├─ 0.035 GroupDefinition.consume_body_closing flexparser/flexparser.py:1011 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 GroupDefinition.consume_body flexparser/flexparser.py:981 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 UnitDefinition.consume flexparser/flexparser.py:819 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 UnitDefinition.from_statement_and_config flexparser/flexparser.py:799 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 UnitDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:141 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 build_eval_tree pint/pint_eval.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _plain_tokenizer pint/pint_eval.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _tokenize tokenize.py:431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.match + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] tokenize.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _build_eval_tree pint/pint_eval.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _build_eval_tree pint/pint_eval.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ParserHelper.eval_token pint/util.py:732 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.from_word pint/util.py:713 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/util.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.eval_token pint/util.py:732 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.from_word pint/util.py:713 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 string_preprocessor pint/util.py:928 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.sub + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 KeysView.__iter__ _collections_abc.py:885 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__iter__ pint/util.py:549 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 ForwardRelation.from_string_and_config pint/delegates/txt_defparser/context.py:59 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 ForwardRelation._from_string_and_context_sep pint/delegates/txt_defparser/context.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 pint/delegates/txt_defparser/context.py:47 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 ParserConfig.to_dimension_container pint/delegates/base_defparser.py:44 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 ParserConfig.to_units_container pint/delegates/base_defparser.py:38 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 build_eval_tree pint/pint_eval.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _plain_tokenizer pint/pint_eval.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _tokenize tokenize.py:431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] tokenize.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 string_preprocessor pint/util.py:928 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.sub + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _subx re.py:324 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__truediv__ pint/util.py:875 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.items _collections_abc.py:840 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.set_position flexparser/flexparser.py:207 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 GroupDefinition.body_classes flexparser/flexparser.py:945 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupDefinition.specialization flexparser/flexparser.py:127 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupDefinition._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 GroupDefinition.consume_closing flexparser/flexparser.py:997 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 GroupDefinition.closing_classes flexparser/flexparser.py:954 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 GroupDefinition.specialization flexparser/flexparser.py:127 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 GroupDefinition._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 DirectiveBlock._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.items + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 EndDirectiveBlock.consume flexparser/flexparser.py:819 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 StatementIterator.peek flexparser/flexparser.py:699 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 StatementIterator._get_next flexparser/flexparser.py:687 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 StatementIterator._get_next_strip flexparser/flexparser.py:671 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Spliter.__next__ flexparser/flexparser.py:532 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Statement.from_statement_iterator_element flexparser/flexparser.py:181 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Statement.set_position flexparser/flexparser.py:207 + │ │ │ │ │ │ │ │ │ │ ├─ 0.026 ContextDefinition.consume_opening flexparser/flexparser.py:967 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 ContextDefinition.opening_classes flexparser/flexparser.py:936 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 GroupDefinition.specialization flexparser/flexparser.py:127 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.016 GroupDefinition._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 DirectiveBlock._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Block._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dict.items + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _summarize flexparser/flexparser.py:94 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BeginContext.consume flexparser/flexparser.py:819 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 StatementIterator.peek flexparser/flexparser.py:699 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ ├─ 0.056 UnitDefinition.consume flexparser/flexparser.py:819 + │ │ │ │ │ │ │ │ │ │ ├─ 0.042 UnitDefinition.from_statement_and_config flexparser/flexparser.py:799 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.028 UnitDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:141 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 build_eval_tree pint/pint_eval.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _plain_tokenizer pint/pint_eval.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _tokenize tokenize.py:431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 [self] tokenize.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 Pattern.match + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.isidentifier + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 tokenize tokenize.py:406 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.encode + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 string_preprocessor pint/util.py:928 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _subx re.py:324 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.sub + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 filter re.py:330 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 expand_template sre_parse.py:1066 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.eval_token pint/util.py:732 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lower + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Converter.from_arguments pint/converters.py:55 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/delegates/txt_defparser/plain.py + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitDefinition.__init__ :2 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.__post_init__ pint/facets/plain/definitions.py:133 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_dim pint/errors.py:38 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.keys _collections_abc.py:836 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 DerivedDimensionDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:231 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 ParserConfig.to_dimension_container pint/delegates/base_defparser.py:44 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ParserConfig.to_units_container pint/delegates/base_defparser.py:38 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 string_preprocessor pint/util.py:928 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Pattern.sub + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/util.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 build_eval_tree pint/pint_eval.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _plain_tokenizer pint/pint_eval.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 tokenize tokenize.py:406 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 detect_encoding tokenize.py:297 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/util.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pint/util.py:784 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ItemsView.__iter__ _collections_abc.py:909 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/delegates/txt_defparser/plain.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 PrefixDefinition.from_string_and_config pint/delegates/txt_defparser/plain.py:84 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 ParserConfig.to_number pint/delegates/base_defparser.py:54 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ParserConfig.to_scaled_units_container pint/delegates/base_defparser.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 build_eval_tree pint/pint_eval.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _plain_tokenizer pint/pint_eval.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _tokenize tokenize.py:431 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile tokenize.py:99 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 State.closegroup sre_parse.py:97 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 len + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pint/delegates/txt_defparser/plain.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PrefixDefinition.__init__ :2 + │ │ │ │ │ │ │ │ │ │ ├─ 0.013 StatementIterator.peek flexparser/flexparser.py:699 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 StatementIterator._get_next flexparser/flexparser.py:687 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.011 StatementIterator._get_next_strip flexparser/flexparser.py:671 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 Spliter.__next__ flexparser/flexparser.py:532 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 len + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Statement.from_statement_iterator_element flexparser/flexparser.py:181 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ ├─ 0.010 PintRootBlock.body_classes flexparser/flexparser.py:945 + │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 isclass inspect.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 isinstance + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 PintRootBlock.specialization flexparser/flexparser.py:127 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 PintRootBlock._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 RootBlock._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Block._specialization flexparser/flexparser.py:107 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ │ │ └─ 0.001 _yield_types flexparser/flexparser.py:369 + │ │ │ │ │ │ │ │ └─ 0.001 [self] flexparser/flexparser.py + │ │ │ │ │ │ │ └─ 0.001 default_locator flexparser/flexparser.py:1430 + │ │ │ │ │ │ │ └─ 0.001 PosixPath.resolve pathlib.py:1064 + │ │ │ │ │ │ │ └─ 0.001 realpath posixpath.py:392 + │ │ │ │ │ │ │ └─ 0.001 PosixPath.__fspath__ pathlib.py:631 + │ │ │ │ │ │ │ └─ 0.001 PosixPath.__str__ pathlib.py:621 + │ │ │ │ │ │ ├─ 0.010 UnitRegistry._helper_dispatch_adder pint/facets/plain/registry.py:486 + │ │ │ │ │ │ │ ├─ 0.004 UnitRegistry._add_unit pint/facets/group/registry.py:84 + │ │ │ │ │ │ │ │ └─ 0.004 UnitRegistry._add_unit pint/facets/nonmultiplicative/registry.py:71 + │ │ │ │ │ │ │ │ └─ 0.004 UnitRegistry._add_unit pint/facets/plain/registry.py:571 + │ │ │ │ │ │ │ │ └─ 0.004 UnitRegistry._helper_adder pint/facets/plain/registry.py:501 + │ │ │ │ │ │ │ │ ├─ 0.003 UnitRegistry._helper_single_adder pint/facets/plain/registry.py:526 + │ │ │ │ │ │ │ │ │ ├─ 0.001 str.lower + │ │ │ │ │ │ │ │ │ ├─ 0.001 ChainMap.__setitem__ collections/__init__.py:1037 + │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ ├─ 0.003 UnitRegistry._add_system pint/facets/system/registry.py:87 + │ │ │ │ │ │ │ │ └─ 0.003 System.from_definition pint/facets/system/objects.py:148 + │ │ │ │ │ │ │ │ └─ 0.003 UnitRegistry.get_root_units pint/facets/plain/registry.py:802 + │ │ │ │ │ │ │ │ ├─ 0.002 to_units_container pint/util.py:1031 + │ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_units_as_container pint/facets/nonmultiplicative/registry.py:59 + │ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_units_as_container pint/facets/plain/registry.py:1214 + │ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._parse_units_as_container pint/facets/plain/registry.py:1228 + │ │ │ │ │ │ │ │ │ └─ 0.002 ParserHelper.from_string pint/util.py:749 + │ │ │ │ │ │ │ │ │ └─ 0.002 EvalTreeNode.evaluate pint/pint_eval.py:345 + │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/pint_eval.py + │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.eval_token pint/util.py:732 + │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.from_word pint/util.py:713 + │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:452 + │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._get_root_units pint/facets/plain/registry.py:868 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry.add_context pint/facets/context/registry.py:79 + │ │ │ │ │ │ │ │ └─ 0.002 Context.from_definition pint/facets/context/objects.py:168 + │ │ │ │ │ │ │ │ ├─ 0.001 Context.add_transformation pint/facets/context/objects.py:195 + │ │ │ │ │ │ │ │ │ └─ 0.001 WeakValueDictionary.__setitem__ weakref.py:165 + │ │ │ │ │ │ │ │ │ └─ 0.001 KeyedRef.__init__ weakref.py:353 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_dimensionality pint/facets/plain/registry.py:710 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._get_dimensionality pint/facets/plain/registry.py:721 + │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 + │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._add_group pint/facets/group/registry.py:89 + │ │ │ │ │ │ │ └─ 0.001 Group.from_definition pint/facets/group/objects.py:196 + │ │ │ │ │ │ │ └─ 0.001 GroupDefinition.unit_names pint/facets/group/definitions.py:44 + │ │ │ │ │ │ └─ 0.001 DefParser.iter_parsed_project pint/delegates/txt_defparser/defparser.py:75 + │ │ │ │ │ │ └─ 0.001 ContextDefinition.derive_definition pint/delegates/txt_defparser/context.py:173 + │ │ │ │ │ │ └─ 0.001 ContextDefinition.__init__ :2 + │ │ │ │ │ │ └─ 0.001 ContextDefinition.__post_init__ pint/facets/context/definitions.py:118 + │ │ │ │ │ │ └─ 0.001 KeysView.__iter__ _collections_abc.py:885 + │ │ │ │ │ └─ 0.074 UnitRegistry._build_cache pint/facets/context/registry.py:119 + │ │ │ │ │ └─ 0.074 UnitRegistry._build_cache pint/facets/plain/registry.py:605 + │ │ │ │ │ ├─ 0.031 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ └─ 0.031 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ ├─ 0.030 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ ├─ 0.015 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ ├─ 0.013 str.startswith + │ │ │ │ │ │ │ └─ 0.002 ChainMap.__contains__ collections/__init__.py:1000 + │ │ │ │ │ │ │ └─ 0.002 collections/__init__.py:1001 + │ │ │ │ │ │ └─ 0.001 dict.fromkeys + │ │ │ │ │ ├─ 0.018 UnitRegistry._get_root_units pint/facets/plain/registry.py:868 + │ │ │ │ │ │ ├─ 0.013 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ ├─ 0.012 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ ├─ 0.010 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ │ ├─ 0.009 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ │ │ ├─ 0.005 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry._get_root_units_recurse pint/facets/plain/registry.py:950 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__iter__ pint/util.py:549 + │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ └─ 0.002 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ └─ 0.001 ChainMap.__contains__ collections/__init__.py:1000 + │ │ │ │ │ │ │ └─ 0.001 ParserHelper.__getitem__ pint/util.py:555 + │ │ │ │ │ │ ├─ 0.002 pint/facets/plain/registry.py:911 + │ │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ └─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 + │ │ │ │ │ │ ├─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 + │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ │ └─ 0.001 Number.__instancecheck__ abc.py:117 + │ │ │ │ │ │ │ └─ 0.001 _abc_instancecheck + │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ └─ 0.001 ParserHelper.__len__ pint/util.py:552 + │ │ │ │ │ ├─ 0.013 UnitRegistry._get_dimensionality pint/facets/plain/registry.py:721 + │ │ │ │ │ │ ├─ 0.010 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 + │ │ │ │ │ │ │ ├─ 0.009 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 + │ │ │ │ │ │ │ │ ├─ 0.008 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 + │ │ │ │ │ │ │ │ │ ├─ 0.005 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 + │ │ │ │ │ │ │ │ │ │ ├─ 0.004 UnitRegistry._get_dimensionality_recurse pint/facets/plain/registry.py:745 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitRegistry.get_symbol pint/facets/plain/registry.py:693 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 UnitsContainer.__iter__ pint/util.py:549 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__iter__ pint/util.py:549 + │ │ │ │ │ │ │ │ │ └─ 0.003 UnitRegistry.get_name pint/facets/plain/registry.py:652 + │ │ │ │ │ │ │ │ │ ├─ 0.002 UnitRegistry.get_symbol pint/facets/plain/registry.py:693 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry.parse_unit_name pint/facets/plain/registry.py:1101 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _dedup_candidates pint/facets/plain/registry.py:1162 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 UnitRegistry._yield_unit_triplets pint/facets/plain/registry.py:1130 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 str.startswith + │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.__init__ :2 + │ │ │ │ │ │ │ │ │ └─ 0.001 UnitDefinition.__post_init__ pint/facets/plain/definitions.py:133 + │ │ │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.keys _collections_abc.py:836 + │ │ │ │ │ │ │ │ └─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 + │ │ │ │ │ │ │ └─ 0.001 ChainMap.__getitem__ collections/__init__.py:980 + │ │ │ │ │ │ ├─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ │ ├─ 0.001 UnitRegistry.UnitsContainer pint/facets/plain/registry.py:1416 + │ │ │ │ │ │ │ └─ 0.001 UnitsContainer.__init__ pint/util.py:452 + │ │ │ │ │ │ └─ 0.001 ParserHelper.__eq__ pint/util.py:820 + │ │ │ │ │ │ └─ 0.001 ParserHelper.__eq__ pint/util.py:574 + │ │ │ │ │ ├─ 0.004 solve_dependencies pint/util.py:305 + │ │ │ │ │ │ ├─ 0.002 pint/util.py:340 + │ │ │ │ │ │ ├─ 0.001 pint/util.py:329 + │ │ │ │ │ │ └─ 0.001 pint/util.py:331 + │ │ │ │ │ ├─ 0.003 ParserHelper.__eq__ pint/util.py:820 + │ │ │ │ │ │ └─ 0.003 ParserHelper.__eq__ pint/util.py:574 + │ │ │ │ │ │ ├─ 0.002 [self] pint/util.py + │ │ │ │ │ │ └─ 0.001 ParserHelper.__hash__ pint/util.py:561 + │ │ │ │ │ ├─ 0.002 [self] pint/facets/plain/registry.py + │ │ │ │ │ ├─ 0.002 pint/facets/plain/registry.py:618 + │ │ │ │ │ │ ├─ 0.001 UnitsContainer.keys _collections_abc.py:836 + │ │ │ │ │ │ └─ 0.001 [self] pint/facets/plain/registry.py + │ │ │ │ │ └─ 0.001 ParserHelper.from_word pint/util.py:713 + │ │ │ │ │ └─ 0.001 ParserHelper.__init__ pint/util.py:709 + │ │ │ │ └─ 0.001 OperationModeProfileTree ../device_planner/frbc/operation_mode_profile_tree.py:122 + │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 + │ │ │ │ └─ 0.001 _TupleType.copy_with typing.py:1147 + │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ └─ 0.001 str.startswith + │ │ │ ├─ 0.003 ../device_planner/frbc/s2_frbc_device_state_wrapper.py:1 + │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ ├─ 0.001 ../device_planner/frbc/frbc_timestep.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 ../device_planner/frbc/frbc_state.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 ../device_planner/frbc/s2_frbc_device_state.py:1 + │ │ │ │ │ │ └─ 0.001 S2FrbcDeviceState ../device_planner/frbc/s2_frbc_device_state.py:14 + │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ └─ 0.001 ../device_planner/frbc/frbc_operation_mode_wrapper.py:1 + │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ └─ 0.001 S2FrbcDeviceStateWrapper ../device_planner/frbc/s2_frbc_device_state_wrapper.py:27 + │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 + │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ └─ 0.001 _remove_dups_flatten typing.py:267 + │ │ │ │ └─ 0.001 _deduplicate typing.py:253 + │ │ │ └─ 0.001 ../common/proposal.py:1 + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 ../device_planner/device_planner_abstract.py:1 + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 ../common/device_planner/device_plan.py:1 + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 ../common/soc_profile.py:1 + │ │ │ └─ 0.001 SoCProfile ../common/soc_profile.py:7 + │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 + │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ ├─ 0.033 pytest/__init__.py:1 + │ │ │ └─ 0.033 _find_and_load :1022 + │ │ │ └─ 0.033 _find_and_load_unlocked :987 + │ │ │ └─ 0.033 _load_unlocked :664 + │ │ │ └─ 0.033 SourceFileLoader.exec_module :877 + │ │ │ ├─ 0.032 _call_with_frames_removed :233 + │ │ │ │ ├─ 0.010 _pytest/assertion/__init__.py:1 + │ │ │ │ │ └─ 0.010 _handle_fromlist :1053 + │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.010 _find_and_load :1022 + │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.010 _load_unlocked :664 + │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 + │ │ │ │ │ ├─ 0.009 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.009 _pytest/assertion/rewrite.py:1 + │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.006 _pytest/main.py:1 + │ │ │ │ │ │ │ ├─ 0.004 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.003 _pytest/nodes.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.003 _pytest/mark/__init__.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _pytest/mark/structures.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Mark _pytest/mark/structures.py:192 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 field dataclasses.py:367 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _pytest/mark/expression.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ │ │ │ └─ 0.001 MarkMatcher.dataclass dataclasses.py:1156 + │ │ │ │ │ │ │ │ │ └─ 0.001 MarkMatcher.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ └─ 0.001 MarkMatcher._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ ├─ 0.001 CollectionArgument.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ └─ 0.001 CollectionArgument._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ └─ 0.001 CollectionArgument._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 _pytest/runner.py:1 + │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 + │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 + │ │ │ │ │ │ └─ 0.003 _handle_fromlist :1053 + │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.003 _pytest/assertion/util.py:1 + │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.003 _pytest/config/__init__.py:1 + │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 _pytest/config/findpaths.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 iniconfig/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 + │ │ │ │ │ │ └─ 0.001 _get_mixins_ enum.py:579 + │ │ │ │ │ │ └─ 0.001 _find_data_type enum.py:590 + │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ └─ 0.001 loads + │ │ │ │ ├─ 0.010 _pytest/_code/__init__.py:1 + │ │ │ │ │ └─ 0.010 _find_and_load :1022 + │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.010 _load_unlocked :664 + │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.010 _pytest/_code/code.py:1 + │ │ │ │ │ ├─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.002 pluggy/__init__.py:1 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.001 pluggy/_manager.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pluggy/_callers.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ └─ 0.001 pluggy/_hooks.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 + │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 + │ │ │ │ │ │ │ ├─ 0.002 _pytest/_io/__init__.py:1 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.002 _pytest/_io/terminalwriter.py:1 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.002 _pytest/compat.py:1 + │ │ │ │ │ │ │ │ ├─ 0.001 _PytestWrapper.dataclass dataclasses.py:1156 + │ │ │ │ │ │ │ │ │ └─ 0.001 _PytestWrapper.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ └─ 0.001 _PytestWrapper._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ └─ 0.001 _repr_fn dataclasses.py:587 + │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ └─ 0.001 exceptiongroup/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ ├─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ ├─ 0.002 ExceptionChainRepr.wrap dataclasses.py:1174 + │ │ │ │ │ │ └─ 0.002 ExceptionChainRepr._process_class dataclasses.py:881 + │ │ │ │ │ │ ├─ 0.001 [self] dataclasses.py + │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ └─ 0.001 _signature_bound_method inspect.py:1959 + │ │ │ │ │ │ └─ 0.001 Signature.replace inspect.py:3014 + │ │ │ │ │ └─ 0.001 ExceptionInfo.dataclass dataclasses.py:1156 + │ │ │ │ │ └─ 0.001 ExceptionInfo.wrap dataclasses.py:1174 + │ │ │ │ │ └─ 0.001 ExceptionInfo._process_class dataclasses.py:881 + │ │ │ │ │ └─ 0.001 ExceptionInfo._get_field dataclasses.py:722 + │ │ │ │ │ └─ 0.001 field dataclasses.py:367 + │ │ │ │ ├─ 0.003 _pytest/doctest.py:1 + │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 _pytest/python.py:1 + │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 + │ │ │ │ │ │ └─ 0.001 type.__new__ + │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ ├─ 0.003 _pytest/cacheprovider.py:1 + │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.003 _pytest/fixtures.py:1 + │ │ │ │ │ ├─ 0.002 FixtureFunctionMarker.wrap dataclasses.py:1174 + │ │ │ │ │ │ └─ 0.002 FixtureFunctionMarker._process_class dataclasses.py:881 + │ │ │ │ │ │ ├─ 0.001 FixtureFunctionMarker._get_field dataclasses.py:722 + │ │ │ │ │ │ │ └─ 0.001 field dataclasses.py:367 + │ │ │ │ │ │ │ └─ 0.001 Field.__init__ dataclasses.py:286 + │ │ │ │ │ │ └─ 0.001 signature inspect.py:3252 + │ │ │ │ │ │ └─ 0.001 Signature.from_callable inspect.py:2998 + │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ └─ 0.001 _signature_from_callable inspect.py:2375 + │ │ │ │ │ │ └─ 0.001 Signature._signature_from_function inspect.py:2280 + │ │ │ │ │ │ └─ 0.001 Signature.__init__ inspect.py:2920 + │ │ │ │ │ │ └─ 0.001 inspect.py:2969 + │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ ├─ 0.002 _pytest/legacypath.py:1 + │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.001 _pytest/pytester.py:1 + │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ └─ 0.001 _path_isfile :159 + │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 + │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ └─ 0.001 stat + │ │ │ │ ├─ 0.002 _pytest/debugging.py:1 + │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.002 unittest/__init__.py:1 + │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.001 unittest/result.py:1 + │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ └─ 0.001 _pytest/logging.py:1 + │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ └─ 0.001 loads + │ │ └─ 0.002 ../planning_service_impl.py:1 + │ │ └─ 0.002 _find_and_load :1022 + │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ └─ 0.002 _load_unlocked :664 + │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ ├─ 0.001 ../root_planner.py:1 + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 ../congestion_point_planner.py:1 + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 ../common/joule_range_profile.py:1 + │ │ │ └─ 0.001 Element.dataclass dataclasses.py:1156 + │ │ │ └─ 0.001 Element.wrap dataclasses.py:1174 + │ │ │ └─ 0.001 Element._process_class dataclasses.py:881 + │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ └─ 0.001 ../cluster_plan.py:1 + │ │ └─ 0.001 _find_and_load :1022 + │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ └─ 0.001 _load_unlocked :664 + │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ └─ 0.001 ../cluster_target.py:1 + │ │ └─ 0.001 ClusterTarget ../cluster_target.py:12 + │ │ └─ 0.001 inner typing.py:306 + │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 + │ │ └─ 0.001 inner typing.py:306 + │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 + │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:947 + │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 + │ │ └─ 0.001 _is_dunder typing.py:935 + │ └─ 0.001 SourceFileLoader.get_code :950 + │ └─ 0.001 _compile_bytecode :670 + │ └─ 0.001 loads + ├─ 0.535 _call_with_frames_removed :233 + │ └─ 0.535 _find_and_load :1022 + │ └─ 0.535 _find_and_load_unlocked :987 + │ ├─ 0.303 _call_with_frames_removed :233 + │ │ └─ 0.303 _find_and_load :1022 + │ │ └─ 0.303 _find_and_load_unlocked :987 + │ │ ├─ 0.302 _call_with_frames_removed :233 + │ │ │ └─ 0.302 _find_and_load :1022 + │ │ │ └─ 0.302 _find_and_load_unlocked :987 + │ │ │ └─ 0.302 _load_unlocked :664 + │ │ │ └─ 0.302 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.302 _call_with_frames_removed :233 + │ │ │ └─ 0.302 flexmeasures_s2/__init__.py:1 + │ │ │ ├─ 0.217 _handle_fromlist :1053 + │ │ │ │ └─ 0.217 _call_with_frames_removed :233 + │ │ │ │ └─ 0.217 _find_and_load :1022 + │ │ │ │ └─ 0.217 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.217 _load_unlocked :664 + │ │ │ │ └─ 0.217 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.217 _call_with_frames_removed :233 + │ │ │ │ └─ 0.217 flexmeasures_s2/api/somedata.py:1 + │ │ │ │ └─ 0.217 _find_and_load :1022 + │ │ │ │ └─ 0.217 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.217 _load_unlocked :664 + │ │ │ │ └─ 0.217 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.217 _call_with_frames_removed :233 + │ │ │ │ └─ 0.217 flask_security/__init__.py:1 + │ │ │ │ └─ 0.217 _find_and_load :1022 + │ │ │ │ └─ 0.217 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.217 _load_unlocked :664 + │ │ │ │ └─ 0.217 SourceFileLoader.exec_module :877 + │ │ │ │ ├─ 0.216 _call_with_frames_removed :233 + │ │ │ │ │ ├─ 0.089 flask_security/datastore.py:1 + │ │ │ │ │ │ └─ 0.089 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.089 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.089 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.089 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.089 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.089 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.089 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.089 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.089 sqlalchemy/__init__.py:1 + │ │ │ │ │ │ ├─ 0.063 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.063 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.063 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.063 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.063 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.062 sqlalchemy/engine/__init__.py:1 + │ │ │ │ │ │ │ │ ├─ 0.056 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ └─ 0.056 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.056 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.056 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.056 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.056 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.056 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.056 sqlalchemy/engine/events.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.055 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.055 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.055 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.055 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.055 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.055 sqlalchemy/engine/base.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.054 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.054 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.054 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.054 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.053 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.053 sqlalchemy/engine/interfaces.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.051 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.046 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.046 sqlalchemy/sql/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.041 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.038 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.029 sqlalchemy/sql/compiler.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 sqlalchemy/sql/crud.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 sqlalchemy/sql/dml.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 sqlalchemy/sql/util.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 sqlalchemy/sql/schema.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 sqlalchemy/sql/selectable.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/sql/sqltypes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sqlalchemy/sql/sqltypes.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HasExpressionLookup sqlalchemy/sql/sqltypes.py:84 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Comparator.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sqlalchemy/sql/selectable.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerativeSelect sqlalchemy/sql/selectable.py:3864 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Values sqlalchemy/sql/selectable.py:3251 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unique_symbols sqlalchemy/util/langhelpers.py:216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 AliasedReturnsRows sqlalchemy/sql/selectable.py:1656 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Select sqlalchemy/sql/selectable.py:5167 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:138 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _decorate_with_warning sqlalchemy/util/deprecations.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unique_symbols sqlalchemy/util/langhelpers.py:216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ScalarSelect sqlalchemy/sql/selectable.py:6619 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unique_symbols sqlalchemy/util/langhelpers.py:216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Table sqlalchemy/sql/schema.py:315 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:138 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _decorate_with_warning sqlalchemy/util/deprecations.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CheckConstraint sqlalchemy/sql/schema.py:4462 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:2103 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inject_param_text sqlalchemy/util/langhelpers.py:2148 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 match re.py:187 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 sqlalchemy/sql/ddl.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 sqlalchemy/sql/elements.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] sqlalchemy/sql/elements.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/type_api.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeDecorator sqlalchemy/sql/type_api.py:1498 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Comparator.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/util/topological.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/annotation.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:722 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 TypeVar.__init__ typing.py:801 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ValuesBase sqlalchemy/sql/dml.py:957 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _generative sqlalchemy/sql/base.py:264 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 sqlalchemy/sql/functions.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 OrderedSetAgg.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] sqlalchemy/sql/functions.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SQLCompiler sqlalchemy/sql/compiler.py:1033 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RegexFlag.__and__ enum.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RegexFlag.__call__ enum.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 sqlalchemy/sql/base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/visitors.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ColumnMetrics.__init_subclass__ typing.py:1350 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 sqlalchemy/sql/_typing.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _HasDialect.__init__ typing_extensions.py:595 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _HasDialect._get_protocol_attrs typing_extensions.py:518 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/sql/expression.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/lambdas.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 __go sqlalchemy/sql/__init__.py:111 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _prepare_annotations sqlalchemy/sql/annotation.py:580 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 current_timestamp._new_annotation_type sqlalchemy/sql/annotation.py:533 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleRegistry.import_prefix sqlalchemy/util/preloaded.py:127 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/naming.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/sql/events.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Events.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 sqlalchemy/pool/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/pool/events.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/pool/base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PoolResetState.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PoolResetState._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _repr_fn dataclasses.py:587 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/pool/impl.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/api.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/attr.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/legacy.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/event/registry.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __prepare__ enum.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _check_for_existing_members enum.py:569 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TypedDictMeta.__new__ typing_extensions.py:916 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Connection sqlalchemy/engine/base.py:87 + │ │ │ │ │ │ │ │ │ └─ 0.001 ConnectionEvents.__init_subclass__ sqlalchemy/event/base.py:240 + │ │ │ │ │ │ │ │ │ └─ 0.001 ConnectionEvents._create_dispatcher_class sqlalchemy/event/base.py:278 + │ │ │ │ │ │ │ │ │ └─ 0.001 _ClsLevelDispatch.__init__ sqlalchemy/event/attr.py:135 + │ │ │ │ │ │ │ │ │ └─ 0.001 _augment_fn_docs sqlalchemy/event/legacy.py:220 + │ │ │ │ │ │ │ │ │ └─ 0.001 inject_docstring_text sqlalchemy/util/langhelpers.py:2125 + │ │ │ │ │ │ │ │ │ └─ 0.001 _dedent_docstring sqlalchemy/util/langhelpers.py:2113 + │ │ │ │ │ │ │ │ │ └─ 0.001 dedent textwrap.py:422 + │ │ │ │ │ │ │ │ │ └─ 0.001 Pattern.sub + │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ ├─ 0.003 sqlalchemy/engine/cursor.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/engine/result.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] + │ │ │ │ │ │ │ │ │ ├─ 0.001 sqlalchemy/engine/reflection.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Inspector sqlalchemy/engine/reflection.py:181 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:138 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _decorate_with_warning sqlalchemy/util/deprecations.py:359 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/langhelpers.py:249 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _exec_code_in_env sqlalchemy/util/langhelpers.py:338 + │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/engine/create.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 decorate sqlalchemy/util/deprecations.py:224 + │ │ │ │ │ │ │ │ │ └─ 0.001 inject_param_text sqlalchemy/util/langhelpers.py:2148 + │ │ │ │ │ │ │ │ │ └─ 0.001 str.splitlines + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/schema.py:1 + │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.parent :404 + │ │ │ │ │ │ ├─ 0.025 _handle_fromlist :1053 + │ │ │ │ │ │ │ └─ 0.025 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.025 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.025 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.025 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.025 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.025 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.025 sqlalchemy/util/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.025 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.025 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.025 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.025 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.024 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.018 sqlalchemy/util/concurrency.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ ├─ 0.017 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.017 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.017 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.015 asyncio/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 loads + │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 asyncio/base_events.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 asyncio/events.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asyncio/sslproto.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 asyncio/threads.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 greenlet/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic + │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/util/_concurrency_py3k.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/util/langhelpers.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 symbol sqlalchemy/util/langhelpers.py:1595 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ └─ 0.006 sqlalchemy/util/_collections.py:1 + │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 sqlalchemy/util/typing.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 typing_extensions.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing_extensions.py + │ │ │ │ │ │ │ │ │ │ └─ 0.002 sqlalchemy/util/_has_cy.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _import_cy_extensions sqlalchemy/util/_has_cy.py:13 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.exec_module :1182 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sqlalchemy/exc.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 + │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ │ │ └─ 0.001 _get_module_lock :179 + │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ └─ 0.001 Protocol.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ └─ 0.001 __go sqlalchemy/__init__.py:275 + │ │ │ │ │ │ └─ 0.001 _ModuleRegistry.import_prefix sqlalchemy/util/preloaded.py:127 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 sqlalchemy/engine/default.py:1 + │ │ │ │ │ │ └─ 0.001 DefaultDialect sqlalchemy/engine/default.py:115 + │ │ │ │ │ ├─ 0.072 flask_security/core.py:1 + │ │ │ │ │ │ └─ 0.072 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.072 _find_and_load_unlocked :987 + │ │ │ │ │ │ ├─ 0.071 _load_unlocked :664 + │ │ │ │ │ │ │ ├─ 0.070 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ ├─ 0.069 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ ├─ 0.057 flask_security/totp.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.057 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.057 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.057 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.057 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.057 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.051 passlib/pwd.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.051 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.050 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.050 pkg_resources/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.025 _call_aside pkg_resources/__init__.py:3655 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.025 _initialize_master_working_set pkg_resources/__init__.py:3672 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 WorkingSet._build_master pkg_resources/__init__.py:647 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 WorkingSet.__init__ pkg_resources/__init__.py:633 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 WorkingSet.add_entry pkg_resources/__init__.py:689 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.011 find_on_path pkg_resources/__init__.py:2326 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 distributions_from_metadata pkg_resources/__init__.py:2397 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 DistInfoDistribution.from_location pkg_resources/__init__.py:2931 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DistInfoDistribution.__init__ pkg_resources/__init__.py:2912 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 safe_name pkg_resources/__init__.py:1560 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 sub re.py:202 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pkg_resources/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 splitext posixpath.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.lower + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 listdir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isdir genericpath.py:39 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pkg_resources/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 join posixpath.py:71 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pkg_resources/__init__.py:2337 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 join posixpath.py:71 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_sep posixpath.py:41 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 WorkingSet.add pkg_resources/__init__.py:773 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DistInfoDistribution.key pkg_resources/__init__.py:3001 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DistInfoDistribution.__getattr__ pkg_resources/__init__.py:3182 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 WorkingSet.add_entry pkg_resources/__init__.py:689 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.010 find_on_path pkg_resources/__init__.py:2326 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 distributions_from_metadata pkg_resources/__init__.py:2397 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 DistInfoDistribution.from_location pkg_resources/__init__.py:2931 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 DistInfoDistribution.__init__ pkg_resources/__init__.py:2912 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 safe_version pkg_resources/__init__.py:1568 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Version.__init__ packaging/version.py:188 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 DistInfoDistribution._reload_version pkg_resources/__init__.py:2959 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 splitext posixpath.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _splitext genericpath.py:121 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rfind + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 listdir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pkg_resources/__init__.py:2337 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 join posixpath.py:71 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pkg_resources/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dist_factory pkg_resources/__init__.py:2346 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 pkg_resources/__init__.py:3697 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 DistInfoDistribution.activate pkg_resources/__init__.py:3145 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 DistInfoDistribution._get_metadata pkg_resources/__init__.py:3137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PathMetadata.has_metadata pkg_resources/__init__.py:1690 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 PathMetadata._get_metadata_path pkg_resources/__init__.py:1687 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PathMetadata._fn pkg_resources/__init__.py:1771 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _validate_resource_path pkg_resources/__init__.py:1781 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isabs ntpath.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pkg_resources/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DistInfoDistribution.insert_on pkg_resources/__init__.py:3240 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dirname posixpath.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_sep posixpath.py:41 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.022 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 packaging/markers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 packaging/_parser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 packaging/_tokenizer.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 packaging/specifiers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 packaging/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 packaging/version.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NamedTupleMeta.__new__ typing.py:2267 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _make_nmtuple typing.py:2247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Version packaging/version.py:161 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.match sre_parse.py:250 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 packaging/tags.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 packaging/_manylinux.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 Specifier packaging/specifiers.py:99 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] sre_parse.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] sre_parse.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token.dataclass dataclasses.py:1156 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Token._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hash + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 jaraco/text/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 jaraco/functools/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 more_itertools/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 jaraco/context.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 backports/tarfile/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._fill_cache :1587 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 listdir + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib/resources.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 WordSet jaraco/text/__init__.py:258 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_charset_prefix sre_compile.py:516 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 plistlib.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pkg_resources/__init__.py + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DistInfoDistribution pkg_resources/__init__.py:3383 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ └─ 0.007 passlib/totp.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 cryptography/hazmat/primitives/ciphers/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 cryptography/hazmat/primitives/ciphers/base.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/hazmat/primitives/ciphers/modes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/hazmat/primitives/ciphers/algorithms.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 path_hook_for_FileFinder :1628 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.__init__ :1494 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cryptography/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_new_ enum.py:626 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ ├─ 0.010 passlib/context.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 passlib/registry.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 passlib/ifc.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 passlib/utils/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 crypt.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _add_method crypt.py:88 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 crypt crypt.py:70 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 crypt + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 passlib/utils/binary.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 passlib/utils/decor.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] passlib/utils/__init__.py + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _validate_timestamp_pyc :618 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _unpack_uint32 :84 + │ │ │ │ │ │ │ │ │ │ └─ 0.003 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _LazyOverlayModule.__getattr__ passlib/utils/compat/__init__.py:437 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _import_object passlib/utils/compat/__init__.py:406 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 configparser.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LegacyInterpolation configparser.py:523 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_charset_prefix sre_compile.py:516 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ ├─ 0.001 flask_security/oauth_glue.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_module_lock :179 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.__init__ :71 + │ │ │ │ │ │ │ │ │ └─ 0.001 flask_security/webauthn_util.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 + │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 + │ │ │ │ │ ├─ 0.032 flask_security/changeable.py:1 + │ │ │ │ │ │ └─ 0.032 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.032 _find_and_load_unlocked :987 + │ │ │ │ │ │ ├─ 0.031 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.031 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.030 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.029 flask_security/utils.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.029 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.029 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ ├─ 0.028 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 flask_wtf/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.028 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.023 flask_wtf/form.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 flask_wtf/i18n.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.020 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 babel/support.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.018 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.018 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 babel/dates.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 babel/localtime/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 get_localzone babel/localtime/__init__.py:32 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _get_localzone babel/localtime/_unix.py:24 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _get_tzinfo babel/localtime/_helpers.py:12 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 timezone pytz/__init__.py:130 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 LazySet._lazy pytz/lazy.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 LazyList._lazy pytz/lazy.py:97 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 pytz/__init__.py:1114 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 resource_exists pytz/__init__.py:111 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 open_resource pytz/__init__.py:78 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 open + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 dirname posixpath.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] posixpath.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 exists genericpath.py:16 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 str.lstrip + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 join posixpath.py:71 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 BufferedReader.close + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] babel/localtime/_helpers.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 babel/localtime/_unix.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 babel/localtime/_helpers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 zoneinfo/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 zoneinfo/_tzpath.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 reset_tzpath zoneinfo/_tzpath.py:5 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_config_var sysconfig.py:659 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_config_vars sysconfig.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_makefile_filename sysconfig.py:389 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_path sysconfig.py:567 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_paths sysconfig.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _expand_vars sysconfig.py:214 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _extend_dict sysconfig.py:206 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pytz/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 LazyList.__new__ pytz/lazy.py:84 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/numbers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RegexFlag.__and__ enum.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RegexFlag.__call__ enum.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 babel/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 babel/core.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 babel/plural.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__getitem__ sre_parse.py:165 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__init__ sre_parse.py:112 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 + │ │ │ │ │ │ │ │ │ │ └─ 0.005 flask_wtf/csrf.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 wtforms/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 wtforms/fields/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_isfile :159 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_is_mode_type :150 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 wtforms/fields/choices.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 wtforms/validators.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 HostnameValidation wtforms/validators.py:640 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BuiltinImporter.find_spec :746 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_module_lock :179 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ └─ 0.001 flask_login/__init__.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ └─ 0.022 flask_security/change_email.py:1 + │ │ │ │ │ └─ 0.022 _find_and_load :1022 + │ │ │ │ │ └─ 0.022 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.022 _load_unlocked :664 + │ │ │ │ │ └─ 0.022 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.022 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.022 flask_security/forms.py:1 + │ │ │ │ │ ├─ 0.021 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.021 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.021 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.021 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ ├─ 0.020 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.019 flask_security/mail_util.py:1 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.019 email_validator/__init__.py:1 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.019 email_validator/validate_email.py:1 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.019 email_validator/syntax.py:1 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.019 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.019 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.019 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.019 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.018 email_validator/rfc_constants.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.018 compile re.py:249 + │ │ │ │ │ │ │ │ │ └─ 0.018 _compile re.py:288 + │ │ │ │ │ │ │ │ │ └─ 0.018 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ ├─ 0.017 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ ├─ 0.010 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ │ └─ 0.007 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ └─ 0.007 _optimize_charset sre_compile.py:292 + │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.tell sre_parse.py:287 + │ │ │ │ │ │ │ │ └─ 0.001 idna/__init__.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.001 idna/core.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ └─ 0.001 flask_security/babel.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 importlib_resources/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ └─ 0.001 hasattr + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ └─ 0.001 [self] flask_security/forms.py + │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ ├─ 0.078 _find_and_load :1022 + │ │ │ │ └─ 0.078 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.078 _load_unlocked :664 + │ │ │ │ └─ 0.078 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.078 _call_with_frames_removed :233 + │ │ │ │ ├─ 0.076 flask/__init__.py:1 + │ │ │ │ │ ├─ 0.040 _handle_fromlist :1053 + │ │ │ │ │ │ └─ 0.040 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.040 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.040 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.040 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.040 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.040 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.040 flask/json/__init__.py:1 + │ │ │ │ │ │ └─ 0.040 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.040 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.040 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.040 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.040 _call_with_frames_removed :233 + │ │ │ │ │ │ ├─ 0.039 flask/globals.py:1 + │ │ │ │ │ │ │ └─ 0.039 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.039 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ ├─ 0.038 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.038 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.038 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.038 _load_unlocked :664 + │ │ │ │ │ │ │ │ ├─ 0.037 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.037 werkzeug/__init__.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.037 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.037 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.037 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.037 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ ├─ 0.031 werkzeug/serving.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.031 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.031 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ ├─ 0.030 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.030 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.027 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 http/server.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 http/client.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 ssl.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 IntFlag._convert_ enum.py:536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 IntFlag.__call__ enum.py:359 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IntFlag._create_ enum.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_new_ enum.py:626 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 enum.py:553 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 namedtuple collections/__init__.py:328 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 email/message.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/parser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/feedparser.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLockManager.__enter__ :169 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 email/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 email/charset.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :134 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rfind + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/quoprimime.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.join + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 email/_parseaddr.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _verbose_message :244 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 html/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 mimetypes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.010 werkzeug/urls.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 werkzeug/datastructures/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 werkzeug/datastructures/accept.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 werkzeug/datastructures/structures.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 werkzeug/http.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 urllib/request.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hashlib.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __get_openssl_constructor hashlib.py:126 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __get_builtin_constructor hashlib.py:82 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :128 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/sansio/http.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.__next sre_parse.py:234 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _class_escape sre_parse.py:296 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FrozenImporter.find_spec :826 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_frozen + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 werkzeug/datastructures/range.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/datastructures/cache_control.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_hooks :1343 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 zipimporter.__init__ :64 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _make_unquote_part werkzeug/urls.py:29 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 State.closegroup sre_parse.py:97 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 werkzeug/_internal.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 logging/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 traceback.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 StrFormatStyle logging/__init__.py:445 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Tokenizer.get sre_parse.py:255 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 socket.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 IntEnum._convert_ enum.py:536 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 enum.py:553 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 socket.py:78 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.isupper + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 socket.py:93 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.isupper + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 loads + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 http/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ enum.py:180 + │ │ │ │ │ │ │ │ │ └─ 0.006 werkzeug/test.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ ├─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 werkzeug/sansio/multipart.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 File.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 File._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 File._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_info sre_compile.py:560 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.getwidth sre_parse.py:175 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/utils.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/security.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 cb :198 + │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.002 werkzeug/wrappers/__init__.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ ├─ 0.001 werkzeug/wrappers/response.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 DistutilsMetaFinder.find_spec _distutils_hack/__init__.py:102 + │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/wrappers/request.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ └─ 0.001 str.rpartition + │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ └─ 0.001 getattr + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ └─ 0.001 flask/json/provider.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 decimal.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 _validate_timestamp_pyc :618 + │ │ │ │ │ └─ 0.036 _find_and_load :1022 + │ │ │ │ │ └─ 0.036 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.036 _load_unlocked :664 + │ │ │ │ │ └─ 0.036 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.036 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.036 flask/app.py:1 + │ │ │ │ │ ├─ 0.030 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.030 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.030 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.030 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.030 _call_with_frames_removed :233 + │ │ │ │ │ │ ├─ 0.017 flask/sansio/app.py:1 + │ │ │ │ │ │ │ ├─ 0.016 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.016 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.016 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ ├─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.015 flask/templating.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.015 jinja2/__init__.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ ├─ 0.014 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.013 jinja2/environment.py:1 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 jinja2/lexer.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _validate_timestamp_pyc :618 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/_identifier.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 jinja2/defaults.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 jinja2/filters.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/runtime.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem__ typing.py:1194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem_inner__ typing.py:1208 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 jinja2/compiler.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder._get_spec :1531 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 spec_from_file_location :721 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CodeGenerator jinja2/compiler.py:300 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _verbose_message :244 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 jinja2/nodes.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ jinja2/nodes.py:59 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 type.__new__ + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] jinja2/nodes.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SubPattern.__init__ sre_parse.py:112 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Environment jinja2/environment.py:144 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing.py:206 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 jinja2/bccache.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 pickle.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_dynamic + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ └─ 0.001 App flask/sansio/app.py:59 + │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ └─ 0.001 str.endswith + │ │ │ │ │ │ ├─ 0.007 click/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.007 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.007 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.007 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.007 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.005 click/core.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 click/types.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 click/exceptions.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BadParameter click/exceptions.py:94 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 click/_compat.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TupleType.__getitem__ typing.py:1223 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1234 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ ├─ 0.001 Group click/core.py:1790 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 click/formatting.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 click/parser.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 click/decorators.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem__ typing.py:1194 + │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.__getitem_inner__ typing.py:1208 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableType.copy_with typing.py:1188 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ └─ 0.001 BufferedReader.read + │ │ │ │ │ │ ├─ 0.004 werkzeug/routing/__init__.py:1 + │ │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ │ ├─ 0.003 werkzeug/routing/map.py:1 + │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ ├─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.002 werkzeug/routing/matcher.py:1 + │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 werkzeug/routing/rules.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 parse sre_parse.py:944 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse_sub sre_parse.py:436 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _parse sre_parse.py:494 + │ │ │ │ │ │ │ │ │ └─ 0.001 [self] werkzeug/routing/matcher.py + │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.parent :404 + │ │ │ │ │ │ │ │ └─ 0.001 str.rpartition + │ │ │ │ │ │ │ └─ 0.001 werkzeug/routing/exceptions.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ ├─ 0.001 flask/wrappers.py:1 + │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ └─ 0.001 flask/sessions.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 itsdangerous/__init__.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 itsdangerous/serializer.py:1 + │ │ │ │ │ │ └─ 0.001 _GenericAlias.__mro_entries__ typing.py:1107 + │ │ │ │ │ └─ 0.006 _handle_fromlist :1053 + │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ ├─ 0.004 flask/cli.py:1 + │ │ │ │ │ │ └─ 0.004 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.004 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.004 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.004 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.004 _call_with_frames_removed :233 + │ │ │ │ │ │ ├─ 0.003 importlib/metadata/__init__.py:1 + │ │ │ │ │ │ │ ├─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ ├─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.001 csv.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ │ │ └─ 0.001 PathFinder._path_importer_cache :1356 + │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ └─ 0.001 importlib/metadata/_adapters.py:1 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ └─ 0.001 flask/helpers.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 flask/signals.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 blinker/__init__.py:1 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ └─ 0.002 flask/typing.py:1 + │ │ │ │ │ └─ 0.002 inner typing.py:306 + │ │ │ │ │ ├─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ └─ 0.001 typing.py:515 + │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ └─ 0.001 _CallableGenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ └─ 0.001 _GenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 + │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 + │ │ │ │ │ └─ 0.001 _GenericAlias.__hash__ typing.py:1037 + │ │ │ │ │ └─ 0.001 _UnionGenericAlias.__hash__ typing.py:1247 + │ │ │ │ └─ 0.002 importlib_metadata/__init__.py:1 + │ │ │ │ ├─ 0.001 __build_class__ + │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ └─ 0.007 version importlib_metadata/__init__.py:1020 + │ │ │ ├─ 0.006 distribution importlib_metadata/__init__.py:994 + │ │ │ │ └─ 0.006 Distribution.from_name importlib_metadata/__init__.py:411 + │ │ │ │ └─ 0.006 bucket._get_values importlib_metadata/_itertools.py:133 + │ │ │ │ ├─ 0.004 importlib_metadata/__init__.py:930 + │ │ │ │ │ └─ 0.004 FastPath.search importlib_metadata/__init__.py:789 + │ │ │ │ │ └─ 0.004 FastPath.wrapper importlib_metadata/_functools.py:75 + │ │ │ │ │ └─ 0.004 FastPath.lookup importlib_metadata/__init__.py:798 + │ │ │ │ │ └─ 0.004 Lookup.__init__ importlib_metadata/__init__.py:808 + │ │ │ │ │ ├─ 0.002 FastPath.children importlib_metadata/__init__.py:772 + │ │ │ │ │ │ ├─ 0.001 listdir + │ │ │ │ │ │ └─ 0.001 FastPath.zip_children importlib_metadata/__init__.py:779 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ └─ 0.001 _find_spec :921 + │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ ├─ 0.001 FastPath.joinpath importlib_metadata/__init__.py:769 + │ │ │ │ │ │ └─ 0.001 PosixPath.__new__ pathlib.py:957 + │ │ │ │ │ │ └─ 0.001 PosixPath._from_parts pathlib.py:589 + │ │ │ │ │ └─ 0.001 normalize importlib_metadata/__init__.py:884 + │ │ │ │ │ └─ 0.001 sub re.py:202 + │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ └─ 0.002 importlib_metadata/__init__.py:456 + │ │ │ │ └─ 0.002 PathDistribution.metadata importlib_metadata/__init__.py:476 + │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 importlib_metadata/_adapters.py:1 + │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 email/policy.py:1 + │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 email/headerregistry.py:1 + │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ └─ 0.002 email/_header_value_parser.py:1 + │ │ │ │ ├─ 0.001 [self] email/_header_value_parser.py + │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ └─ 0.001 State.groups sre_parse.py:82 + │ │ │ └─ 0.001 PathDistribution.version importlib_metadata/__init__.py:511 + │ │ │ └─ 0.001 PathDistribution.metadata importlib_metadata/__init__.py:476 + │ │ │ └─ 0.001 message_from_string email/__init__.py:32 + │ │ │ └─ 0.001 Parser.parsestr email/parser.py:59 + │ │ │ └─ 0.001 Parser.parse email/parser.py:41 + │ │ │ └─ 0.001 FeedParser.feed email/feedparser.py:173 + │ │ │ └─ 0.001 FeedParser._call_parse email/feedparser.py:178 + │ │ │ └─ 0.001 FeedParser._parsegen email/feedparser.py:218 + │ │ │ └─ 0.001 BufferedSubFile.__next__ email/feedparser.py:128 + │ │ └─ 0.001 _load_unlocked :664 + │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ └─ 0.001 s2python/__init__.py:1 + │ │ └─ 0.001 version importlib/metadata/__init__.py:989 + │ │ └─ 0.001 distribution importlib/metadata/__init__.py:963 + │ │ └─ 0.001 Distribution.from_name importlib/metadata/__init__.py:532 + │ │ └─ 0.001 importlib_metadata/__init__.py:930 + │ │ └─ 0.001 FastPath.search importlib_metadata/__init__.py:789 + │ │ └─ 0.001 Lookup.search importlib_metadata/__init__.py:837 + │ │ └─ 0.001 FreezableDefaultDict.__missing__ importlib_metadata/_collections.py:20 + │ └─ 0.232 _load_unlocked :664 + │ └─ 0.232 SourceFileLoader.exec_module :877 + │ └─ 0.232 _call_with_frames_removed :233 + │ ├─ 0.231 s2python/frbc/__init__.py:1 + │ │ └─ 0.231 _find_and_load :1022 + │ │ └─ 0.231 _find_and_load_unlocked :987 + │ │ └─ 0.231 _load_unlocked :664 + │ │ └─ 0.231 SourceFileLoader.exec_module :877 + │ │ └─ 0.231 _call_with_frames_removed :233 + │ │ ├─ 0.205 s2python/frbc/frbc_fill_level_target_profile_element.py:1 + │ │ │ ├─ 0.185 _find_and_load :1022 + │ │ │ │ └─ 0.185 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.185 _load_unlocked :664 + │ │ │ │ └─ 0.185 SourceFileLoader.exec_module :877 + │ │ │ │ ├─ 0.184 _call_with_frames_removed :233 + │ │ │ │ │ ├─ 0.183 s2python/common/__init__.py:1 + │ │ │ │ │ │ └─ 0.183 _find_and_load :1022 + │ │ │ │ │ │ └─ 0.183 _find_and_load_unlocked :987 + │ │ │ │ │ │ ├─ 0.181 _load_unlocked :664 + │ │ │ │ │ │ │ ├─ 0.180 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ ├─ 0.179 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ ├─ 0.131 s2python/generated/gen_s2.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.077 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.047 DDBCActuatorDescription.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.026 ResourceManagerDetails.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.026 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.023 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.023 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _GeneratorContextManager.__enter__ contextlib.py:130 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 get_type_ref pydantic/_internal/_core_utils.py:69 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_utils.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 display_as_type pydantic/_internal/_repr.py:91 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_generate_schema.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._union_schema pydantic/_internal/_generate_schema.py:1316 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_generate_schema.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PPBCPowerSequenceStatus.lenient_issubclass pydantic/_internal/_utils.py:97 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BaseModel.__subclasscheck__ abc.py:121 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerRange.__subclasscheck__ abc.py:121 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _abc_subclasscheck + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._add_js_function pydantic/_internal/_generate_schema.py:564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.get + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _Definitions.get_schema_or_ref pydantic/_internal/_generate_schema.py:2446 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_type_ref pydantic/_internal/_core_utils.py:69 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._list_schema pydantic/_internal/_generate_schema.py:366 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _extract_get_pydantic_json_schema pydantic/_internal/_generate_schema.py:2380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hasattr + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema._apply_single_annotation pydantic/_internal/_generate_schema.py:2062 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 apply_known_metadata pydantic/_internal/_known_annotated_metadata.py:167 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_known_metadata pydantic/_internal/_known_annotated_metadata.py:331 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata.__instancecheck__ typing.py:1490 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._is_callable_members_only typing.py:1425 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_generate_schema.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GroupedMetadata.__instancecheck__ typing.py:1490 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GroupedMetadata._is_callable_members_only typing.py:1425 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1506 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._config_wrapper pydantic/_internal/_generate_schema.py:352 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pydantic/_internal/_generate_schema.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 update_core_metadata pydantic/_internal/_core_metadata.py:41 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_metadata.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.parent :404 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rpartition + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _apply_field_title_generator_to_field_info pydantic/_internal/_generate_schema.py:1195 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 dict.values + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _extract_json_schema_info_from_field_info pydantic/_internal/_generate_schema.py:259 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 to_jsonable_python + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _GeneratorContextManager.__enter__ contextlib.py:130 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 definition_reference_schema pydantic_core/core_schema.py:3851 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _dict_not_none pydantic_core/core_schema.py:4108 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_generate_schema.py + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 simplify_schema_references pydantic/_internal/_core_utils.py:442 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_refs pydantic/_internal/_core_utils.py:448 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._copy_schema pydantic/_internal/_core_utils.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_utils.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 count_refs pydantic/_internal/_core_utils.py:470 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 apply_discriminators pydantic/_internal/_discriminated_union.py:37 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_core_utils.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 collect_definitions pydantic/_internal/_core_utils.py:114 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._copy_schema pydantic/_internal/_core_utils.py:180 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 validate_core_schema pydantic/_internal/_core_utils.py:607 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 validate_core_schema + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_invalid_schemas pydantic/_internal/_core_utils.py:147 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 create_schema_validator pydantic/plugin/_schema_validator.py:21 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 [self] pydantic/plugin/_schema_validator.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 DynamicClassAttribute.__get__ types.py:176 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.__getattr__ pydantic/_internal/_config.py:148 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.024 SelectControlType.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.024 SelectControlType.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 get_model_type_hints pydantic/_internal/_typing_extra.py:472 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.008 try_eval_type pydantic/_internal/_typing_extra.py:538 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 eval_type_backport pydantic/_internal/_typing_extra.py:593 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _eval_type_backport pydantic/_internal/_typing_extra.py:626 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.007 _eval_type pydantic/_internal/_typing_extra.py:656 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _eval_type typing.py:320 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 ForwardRef._evaluate typing.py:679 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 :1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _LiteralSpecialForm.__getitem__ typing.py:407 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LazyLocalNamespace.__getitem__ pydantic/_internal/_namespace_utils.py:96 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cached_property.__get__ functools.py:961 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 LazyLocalNamespace.data pydantic/_internal/_namespace_utils.py:89 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] typing.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__eq__ typing.py:1278 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_typing_extra.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert pydantic/_internal/_typing_extra.py:454 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 from_annotated_attribute pydantic/fields.py:342 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pydantic/fields.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 merge_field_infos pydantic/fields.py:427 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/fields.py + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 any + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 [self] pydantic/_internal/_fields.py + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 getattr + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ModelMetaclass.__getattr__ pydantic/_internal/_model_construction.py:259 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 is_classvar_annotation pydantic/_internal/_typing_extra.py:244 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_classvar pydantic/_internal/_typing_extra.py:224 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _SpecialGenericAlias.__instancecheck__ typing.py:993 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _warn_on_nested_alias_in_annotation pydantic/_internal/_fields.py:253 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_annotated pydantic/_internal/_typing_extra.py:99 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_finalvar_with_default_val pydantic/_internal/_fields.py:269 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_finalvar pydantic/_internal/_typing_extra.py:273 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_origin typing.py:1902 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 inspect_namespace pydantic/_internal/_model_construction.py:357 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 [self] pydantic/_internal/_model_construction.py + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 NsResolver.__init__ pydantic/_internal/_namespace_utils.py:227 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 + │ │ │ │ │ │ │ │ │ │ ├─ 0.042 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.042 __getattr__ pydantic/__init__.py:402 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.042 import_module importlib/__init__.py:108 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.042 _gcd_import :1038 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.042 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.041 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.041 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.021 pydantic/root_model.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.021 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.020 RootModel.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 validate_core_schema pydantic/_internal/_core_utils.py:607 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 [self] pydantic/_internal/_core_utils.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 validate_core_schema + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 create_schema_validator pydantic/plugin/_schema_validator.py:21 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.004 get_plugins pydantic/plugin/_loader.py:21 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 PathDistribution.entry_points importlib_metadata/__init__.py:516 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 PathDistribution.read_text importlib_metadata/__init__.py:947 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PosixPath.joinpath pathlib.py:845 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath._make_child pathlib.py:615 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath._parse_args pathlib.py:569 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PosixPath.read_text pathlib.py:1129 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 EntryPoints._from_text_for importlib_metadata/__init__.py:321 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib_metadata/__init__.py:323 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib_metadata/__init__.py:327 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 importlib_metadata/__init__.py:114 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 read importlib_metadata/__init__.py:120 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PathDistribution.__init__ importlib_metadata/__init__.py:940 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 RootModel.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._get_prepare_pydantic_annotations_for_known_type pydantic/_internal/_generate_schema.py:1985 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_std_types_schema.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MappingValidator.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 MappingValidator._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Signature.__str__ inspect.py:3206 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/_internal/_model_construction.py + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.017 pydantic/types.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.009 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.009 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 annotated_types/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 Timezone.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 Timezone._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Timezone._hash_add dataclasses.py:842 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _hash_fn dataclasses.py:637 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _repr_fn dataclasses.py:587 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Lt._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 MultipleOf annotated_types/__init__.py:229 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Annotated.__class_getitem__ typing.py:1695 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__init__ typing.py:1621 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/json_schema.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 TypeVar.__init__ typing.py:801 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :134 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.rfind + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pydantic/_internal/_fields.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_config.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/aliases.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AliasPath.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 AliasPath._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/config.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _TypedDictMeta.__new__ typing_extensions.py:916 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing_extensions.py:954 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_validators.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 open_code + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 StringConstraints.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 StringConstraints._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Discriminator.update_abstractmethods abc.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 hasattr + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Annotated.__class_getitem__ typing.py:1695 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__init__ typing.py:1621 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _AnnotatedAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SecretBase.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 pydantic/main.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_model_construction.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] pydantic/_internal/_model_construction.py + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Decorator.__class_getitem__ typing.py:1323 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 str.startswith + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/fields.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ComputedFieldInfo.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ComputedFieldInfo._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _lock_unlock_module :216 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _ModuleLock.acquire :100 + │ │ │ │ │ │ │ │ │ │ ├─ 0.002 RootModel.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RootModel[Annotated[str, StringConstraints]].complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 RootModel[Annotated[str, StringConstraints]].__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._annotated_schema pydantic/_internal/_generate_schema.py:1969 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 generic_recursion_self_type pydantic/_internal/_generics.py:404 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PEBCAllowedLimitRange s2python/generated/gen_s2.py:1048 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_metadata pydantic/fields.py:536 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Currency s2python/generated/gen_s2.py:30 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _EnumDict.__setitem__ enum.py:89 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PowerForecast s2python/generated/gen_s2.py:1284 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 Timer s2python/generated/gen_s2.py:223 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 InstructionStatusUpdate s2python/generated/gen_s2.py:574 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PPBCStartInterruptionInstruction s2python/generated/gen_s2.py:655 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/fields.py:209 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PEBCPowerEnvelope s2python/generated/gen_s2.py:1069 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 ResourceManagerDetails s2python/generated/gen_s2.py:1212 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PowerForecastElement s2python/generated/gen_s2.py:1035 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Field pydantic/fields.py:900 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 from_field pydantic/fields.py:252 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo.__init__ pydantic/fields.py:202 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 EnergyManagementRole s2python/generated/gen_s2.py:154 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _EnumDict.__setitem__ enum.py:89 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_dunder enum.py:22 + │ │ │ │ │ │ │ │ │ ├─ 0.017 s2python/common/duration.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ └─ 0.017 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ └─ 0.017 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ ├─ 0.016 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 s2python/validate_values_mixin.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.016 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.015 pydantic/v1/__init__.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.014 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.014 pydantic/v1/dataclasses.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.013 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.013 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.012 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.012 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.007 pydantic/v1/error_wrappers.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.006 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.006 pydantic/v1/json.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.005 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.004 pydantic/v1/networks.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/v1/validators.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/v1/datetime_parse.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 typing.py:515 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile re.py:249 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile re.py:288 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile sre_compile.py:783 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _code sre_compile.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile sre_compile.py:87 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 loads + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 IPvAnyInterface pydantic/v1/networks.py:656 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Union typing.py:483 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/types.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConstrainedStr pydantic/v1/types.py:405 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.__getitem__ typing.py:401 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialForm.Optional typing.py:523 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_check typing.py:146 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] pydantic/v1/json.py + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.003 pydantic/v1/class_validators.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/v1/errors.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __build_class__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/utils.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_data :1070 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 BufferedReader.__exit__ + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/v1/main.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 [self] + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _path_split :132 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ModuleSpec.cached :391 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _get_cached :510 + │ │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cache_from_source :380 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 contextmanager contextlib.py:252 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 update_wrapper functools.py:35 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/v1/env_settings.py:1 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/v1/main.py:122 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 dir + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 s2python/s2_validation_error.py:1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2ValidationError.dataclass dataclasses.py:1156 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2ValidationError.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2ValidationError._process_class dataclasses.py:881 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 [self] + │ │ │ │ │ │ │ │ │ ├─ 0.004 s2python/common/transition.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 Transition.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 Transition.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.002 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._match_generic_type pydantic/_internal/_generate_schema.py:997 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._union_schema pydantic/_internal/_generate_schema.py:1316 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_from_property pydantic/_internal/_generate_schema.py:738 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Duration.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 mappingproxy.get + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 expand_grouped_metadata pydantic/_internal/_known_annotated_metadata.py:105 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata.__instancecheck__ typing.py:1490 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._is_callable_members_only typing.py:1425 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GroupedMetadata._get_protocol_attrs typing.py:1408 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Transition.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Transition.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 eval_type_backport pydantic/_internal/_typing_extra.py:593 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type_backport pydantic/_internal/_typing_extra.py:626 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type pydantic/_internal/_typing_extra.py:656 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _eval_type typing.py:320 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef._evaluate typing.py:679 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 :1 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 prepare_class types.py:100 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 isinstance + │ │ │ │ │ │ │ │ │ ├─ 0.004 s2python/common/resource_manager_details.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ ├─ 0.002 ResourceManagerDetails.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ │ ├─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 simplify_schema_references pydantic/_internal/_core_utils.py:442 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inline_refs pydantic/_internal/_core_utils.py:528 + │ │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ResourceManagerDetails.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.match_type pydantic/_internal/_generate_schema.py:886 + │ │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 is_dataclass dataclasses.py:1210 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ResourceManagerDetails.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ResourceManagerDetails.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[ResourceManagerDetails].complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[ResourceManagerDetails].__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.core_config pydantic/_internal/_config.py:157 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/revoke_object.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ abc.py:105 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 RevokeObject.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.__getattr__ pydantic/_internal/_config.py:148 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/power_forecast.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 build pydantic/_internal/_decorators.py:426 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecast.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 collect_invalid_schemas pydantic/_internal/_core_utils.py:147 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/timer.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Timer.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 Timer.get_model_typevars_map pydantic/_internal/_generics.py:237 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/session_request.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 S2MessageComponent[SessionRequest].complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.collect_definitions pydantic/_internal/_generate_schema.py:553 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 cast typing.py:1737 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SessionRequest.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 SessionRequest.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/power_forecast_element.py:1 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.for_model pydantic/_internal/_config.py:99 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.__init__ pydantic/_internal/_config.py:93 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 prepare_config pydantic/_internal/_config.py:282 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 check_deprecated pydantic/_internal/_config.py:332 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastElement.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastElement.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/power_forecast_value.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ ├─ 0.001 PowerForecastValue.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 + │ │ │ │ │ │ │ │ │ │ │ └─ 0.001 eval_type_backport pydantic/_internal/_typing_extra.py:593 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerForecastValue.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._get_prepare_pydantic_annotations_for_known_type pydantic/_internal/_generate_schema.py:1985 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 hash + │ │ │ │ │ │ │ │ │ ├─ 0.002 s2python/common/handshake_response.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 build pydantic/_internal/_decorators.py:426 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 build pydantic/_internal/_decorators.py:426 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 build pydantic/_internal/_decorators.py:426 + │ │ │ │ │ │ │ │ │ │ └─ 0.002 DecoratorInfos.__init__ :2 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_measurement.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerMeasurement.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerMeasurement.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 try_eval_type pydantic/_internal/_typing_extra.py:538 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _type_convert pydantic/_internal/_typing_extra.py:454 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/role.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Role.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_value.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerValue.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerValue.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/handshake.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Handshake.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 Handshake.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/reception_status.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ReceptionStatus.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ReceptionStatus.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 _reconstruct copy.py:259 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/instruction_status_update.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 InstructionStatusUpdate.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 InstructionStatusUpdate.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__init__ pydantic/_internal/_schema_generation_shared.py:73 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/number_range.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 NumberRange.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 NumberRange.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ │ │ │ │ │ ├─ 0.001 s2python/common/power_range.py:1 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 PowerRange.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 ConfigWrapper.core_config pydantic/_internal/_config.py:157 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 dict.get + │ │ │ │ │ │ │ │ │ └─ 0.001 s2python/common/select_control_type.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ │ │ │ │ │ └─ 0.001 SelectControlType.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ │ │ │ │ │ └─ 0.001 SelectControlType.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ │ └─ 0.001 _classify_pyc :585 + │ │ │ │ │ │ │ └─ 0.001 [self] + │ │ │ │ │ │ └─ 0.002 _find_spec :921 + │ │ │ │ │ │ ├─ 0.001 _ImportLockContext.__enter__ :893 + │ │ │ │ │ │ └─ 0.001 PathFinder.find_spec :1431 + │ │ │ │ │ │ └─ 0.001 PathFinder._get_spec :1399 + │ │ │ │ │ │ └─ 0.001 FileFinder.find_spec :1536 + │ │ │ │ │ │ └─ 0.001 _path_join :126 + │ │ │ │ │ │ └─ 0.001 :128 + │ │ │ │ │ └─ 0.001 pydantic/__init__.py:1 + │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ └─ 0.001 module_from_spec :564 + │ │ │ │ │ └─ 0.001 _init_module_attrs :492 + │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ └─ 0.001 loads + │ │ │ ├─ 0.018 _handle_fromlist :1053 + │ │ │ │ └─ 0.018 __getattr__ pydantic/__init__.py:402 + │ │ │ │ └─ 0.018 import_module importlib/__init__.py:108 + │ │ │ │ └─ 0.018 _gcd_import :1038 + │ │ │ │ └─ 0.018 _find_and_load :1022 + │ │ │ │ └─ 0.018 _find_and_load_unlocked :987 + │ │ │ │ └─ 0.018 _load_unlocked :664 + │ │ │ │ └─ 0.018 SourceFileLoader.exec_module :877 + │ │ │ │ └─ 0.018 _call_with_frames_removed :233 + │ │ │ │ └─ 0.018 pydantic/functional_validators.py:1 + │ │ │ │ ├─ 0.010 _find_and_load :1022 + │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.010 _load_unlocked :664 + │ │ │ │ │ └─ 0.010 SourceFileLoader.exec_module :877 + │ │ │ │ │ └─ 0.010 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.010 pydantic_core/__init__.py:1 + │ │ │ │ │ └─ 0.010 _find_and_load :1022 + │ │ │ │ │ └─ 0.010 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.010 _load_unlocked :664 + │ │ │ │ │ ├─ 0.008 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ └─ 0.008 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.008 pydantic_core/core_schema.py:1 + │ │ │ │ │ │ ├─ 0.007 _TypedDictMeta.__new__ typing_extensions.py:916 + │ │ │ │ │ │ │ ├─ 0.003 typing_extensions.py:954 + │ │ │ │ │ │ │ │ └─ 0.003 _type_check typing.py:146 + │ │ │ │ │ │ │ │ ├─ 0.002 _type_convert typing.py:137 + │ │ │ │ │ │ │ │ │ ├─ 0.001 ForwardRef.__init__ typing.py:664 + │ │ │ │ │ │ │ │ │ │ └─ 0.001 compile + │ │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py + │ │ │ │ │ │ │ │ └─ 0.001 [self] typing.py + │ │ │ │ │ │ │ ├─ 0.002 type.__new__ + │ │ │ │ │ │ │ ├─ 0.001 hasattr + │ │ │ │ │ │ │ └─ 0.001 _get_typeddict_qualifiers typing_extensions.py:894 + │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.__getitem__ typing.py:407 + │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ └─ 0.001 _LiteralSpecialForm.Literal typing.py:532 + │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__init__ typing.py:947 + │ │ │ │ │ │ └─ 0.001 _LiteralGenericAlias.__setattr__ typing.py:986 + │ │ │ │ │ │ └─ 0.001 _is_dunder typing.py:935 + │ │ │ │ │ │ └─ 0.001 str.endswith + │ │ │ │ │ └─ 0.002 module_from_spec :564 + │ │ │ │ │ └─ 0.002 ExtensionFileLoader.create_module :1174 + │ │ │ │ │ └─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.002 create_dynamic + │ │ │ │ ├─ 0.006 _handle_fromlist :1053 + │ │ │ │ │ └─ 0.006 _call_with_frames_removed :233 + │ │ │ │ │ └─ 0.006 _find_and_load :1022 + │ │ │ │ │ └─ 0.006 _find_and_load_unlocked :987 + │ │ │ │ │ └─ 0.006 _load_unlocked :664 + │ │ │ │ │ └─ 0.006 SourceFileLoader.exec_module :877 + │ │ │ │ │ ├─ 0.005 _call_with_frames_removed :233 + │ │ │ │ │ │ └─ 0.005 pydantic/_internal/_decorators.py:1 + │ │ │ │ │ │ ├─ 0.003 _find_and_load :1022 + │ │ │ │ │ │ │ └─ 0.003 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ └─ 0.003 _load_unlocked :664 + │ │ │ │ │ │ │ └─ 0.003 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ ├─ 0.002 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ ├─ 0.001 pydantic/_internal/_utils.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_import_utils.py:1 + │ │ │ │ │ │ │ │ │ └─ 0.001 inner typing.py:306 + │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.__getitem__ typing.py:1138 + │ │ │ │ │ │ │ │ │ └─ 0.001 _SpecialGenericAlias.copy_with typing.py:1147 + │ │ │ │ │ │ │ │ │ └─ 0.001 _GenericAlias.__init__ typing.py:1016 + │ │ │ │ │ │ │ │ │ └─ 0.001 _collect_type_vars typing_extensions.py:2989 + │ │ │ │ │ │ │ │ │ └─ 0.001 _has_generic_or_protocol_as_origin typing_extensions.py:2954 + │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_core_utils.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 _handle_fromlist :1053 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ │ │ │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ │ │ │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ │ │ │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ │ │ │ │ │ └─ 0.001 pydantic/_internal/_repr.py:1 + │ │ │ │ │ │ │ │ └─ 0.001 Representation pydantic/_internal/_repr.py:29 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ │ │ └─ 0.001 SourceFileLoader.path_stats :1089 + │ │ │ │ │ │ │ └─ 0.001 _path_stat :140 + │ │ │ │ │ │ │ └─ 0.001 stat + │ │ │ │ │ │ ├─ 0.001 FieldValidatorDecoratorInfo.wrap dataclasses.py:1174 + │ │ │ │ │ │ │ └─ 0.001 FieldValidatorDecoratorInfo._process_class dataclasses.py:881 + │ │ │ │ │ │ │ └─ 0.001 _cmp_fn dataclasses.py:623 + │ │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy.dataclass dataclasses.py:1156 + │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy.wrap dataclasses.py:1174 + │ │ │ │ │ │ └─ 0.001 PydanticDescriptorProxy._process_class dataclasses.py:881 + │ │ │ │ │ │ └─ 0.001 _init_fn dataclasses.py:527 + │ │ │ │ │ │ └─ 0.001 _create_fn dataclasses.py:412 + │ │ │ │ │ └─ 0.001 SourceFileLoader.get_code :950 + │ │ │ │ │ └─ 0.001 _compile_bytecode :670 + │ │ │ │ │ └─ 0.001 loads + │ │ │ │ └─ 0.002 AfterValidator.wrap dataclasses.py:1174 + │ │ │ │ └─ 0.002 AfterValidator._process_class dataclasses.py:881 + │ │ │ │ └─ 0.002 AfterValidator._frozen_get_del_attr dataclasses.py:598 + │ │ │ │ └─ 0.002 _create_fn dataclasses.py:412 + │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.001 FRBCFillLevelTargetProfileElement.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ └─ 0.001 FRBCFillLevelTargetProfileElement.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ └─ 0.001 GenerateSchema._config_wrapper pydantic/_internal/_generate_schema.py:352 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 S2MessageComponent[FRBCFillLevelTargetProfileElement].complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 ConfigWrapper.core_config pydantic/_internal/_config.py:157 + │ │ ├─ 0.004 s2python/frbc/frbc_actuator_description.py:1 + │ │ │ ├─ 0.003 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ ├─ 0.002 FRBCActuatorDescription.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ │ ├─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 + │ │ │ │ │ │ └─ 0.001 collect_definitions pydantic/_internal/_core_utils.py:114 + │ │ │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ │ │ └─ 0.001 _record_valid_refs pydantic/_internal/_core_utils.py:117 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ │ └─ 0.001 FRBCActuatorDescription.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ └─ 0.001 FRBCActuatorDescription.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ │ └─ 0.001 FRBCActuatorDescription.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ │ │ └─ 0.001 copy copy.py:66 + │ │ │ │ └─ 0.001 FieldInfo.__reduce_ex__ + │ │ │ └─ 0.001 _find_and_load :1022 + │ │ │ └─ 0.001 _find_and_load_unlocked :987 + │ │ │ └─ 0.001 _load_unlocked :664 + │ │ │ └─ 0.001 SourceFileLoader.exec_module :877 + │ │ │ └─ 0.001 _call_with_frames_removed :233 + │ │ │ └─ 0.001 s2python/common/support.py:1 + │ │ ├─ 0.003 s2python/frbc/frbc_usage_forecast_element.py:1 + │ │ │ ├─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.002 FRBCUsageForecastElement.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ ├─ 0.001 FRBCUsageForecastElement.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 + │ │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ │ └─ 0.001 inner pydantic/_internal/_discriminated_union.py:45 + │ │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 pydantic/main.py:785 + │ │ ├─ 0.002 s2python/frbc/frbc_fill_level_target_profile.py:1 + │ │ │ ├─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ │ └─ 0.001 _GeneratorContextManager.__exit__ contextlib.py:139 + │ │ │ │ └─ 0.001 generic_recursion_self_type pydantic/_internal/_generics.py:404 + │ │ │ │ └─ 0.001 ContextVar.reset + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 FRBCFillLevelTargetProfile.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 FRBCFillLevelTargetProfile.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ └─ 0.001 model_field pydantic_core/core_schema.py:2974 + │ │ ├─ 0.002 s2python/frbc/frbc_operation_mode.py:1 + │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.001 FRBCOperationMode.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ └─ 0.001 FRBCOperationMode.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ └─ 0.001 helper contextlib.py:279 + │ │ │ │ └─ 0.001 _GeneratorContextManager.__init__ contextlib.py:102 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 + │ │ ├─ 0.002 s2python/frbc/frbc_instruction.py:1 + │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.001 FRBCInstruction.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ └─ 0.001 ConfigWrapper.core_config pydantic/_internal/_config.py:157 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ ├─ 0.002 s2python/frbc/frbc_storage_status.py:1 + │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.001 FRBCStorageStatus.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ │ └─ 0.001 apply_discriminators pydantic/_internal/_discriminated_union.py:37 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 pydantic/main.py:785 + │ │ │ └─ 0.001 iter_contained_typevars pydantic/_internal/_generics.py:187 + │ │ │ └─ 0.001 iter_contained_typevars pydantic/_internal/_generics.py:187 + │ │ ├─ 0.002 s2python/frbc/frbc_actuator_status.py:1 + │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ ├─ 0.001 build pydantic/_internal/_decorators.py:426 + │ │ │ └─ 0.001 FRBCActuatorStatus.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 FRBCActuatorStatus.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ └─ 0.001 model_fields_schema pydantic_core/core_schema.py:3027 + │ │ │ └─ 0.001 _dict_not_none pydantic_core/core_schema.py:4108 + │ │ │ └─ 0.001 pydantic_core/core_schema.py:4109 + │ │ ├─ 0.002 s2python/frbc/frbc_operation_mode_element.py:1 + │ │ │ ├─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ │ └─ 0.001 FRBCOperationModeElement.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ │ └─ 0.001 FRBCOperationModeElement.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 new_handler pydantic/_internal/_generate_schema.py:2130 + │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:2127 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 build pydantic/_internal/_decorators.py:426 + │ │ ├─ 0.002 s2python/frbc/frbc_system_description.py:1 + │ │ │ └─ 0.002 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.002 FRBCSystemDescription.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ ├─ 0.001 FRBCSystemDescription.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ └─ 0.001 GenerateSchema.clean_schema pydantic/_internal/_generate_schema.py:544 + │ │ │ └─ 0.001 collect_invalid_schemas pydantic/_internal/_core_utils.py:147 + │ │ │ └─ 0.001 walk_core_schema pydantic/_internal/_core_utils.py:424 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_definitions_schema pydantic/_internal/_core_utils.py:218 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_function_after_schema pydantic/_internal/_core_utils.py:283 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_list_schema pydantic/_internal/_core_utils.py:246 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema.handle_model_fields_schema pydantic/_internal/_core_utils.py:346 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ │ └─ 0.001 _is_schema_valid pydantic/_internal/_core_utils.py:150 + │ │ │ └─ 0.001 _WalkCoreSchema._walk pydantic/_internal/_core_utils.py:194 + │ │ │ └─ 0.001 _WalkCoreSchema._handle_other_schemas pydantic/_internal/_core_utils.py:201 + │ │ │ └─ 0.001 _WalkCoreSchema.walk pydantic/_internal/_core_utils.py:191 + │ │ ├─ 0.001 s2python/frbc/frbc_timer_status.py:1 + │ │ │ └─ 0.001 S2MessageComponent.__class_getitem__ pydantic/main.py:749 + │ │ │ └─ 0.001 create_generic_submodel pydantic/_internal/_generics.py:115 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 S2MessageComponent[FRBCTimerStatus].complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 S2MessageComponent[FRBCTimerStatus].__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ ├─ 0.001 s2python/frbc/frbc_usage_forecast.py:1 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 FRBCUsageForecast.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 FRBCUsageForecast.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ └─ 0.001 GenerateSchema._get_prepare_pydantic_annotations_for_known_type pydantic/_internal/_generate_schema.py:1985 + │ │ │ └─ 0.001 _LiteralGenericAlias.__hash__ typing.py:1284 + │ │ ├─ 0.001 s2python/frbc/frbc_storage_description.py:1 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 FRBCStorageDescription.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ │ └─ 0.001 FRBCStorageDescription.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ ├─ 0.001 s2python/frbc/frbc_leakage_behaviour_element.py:1 + │ │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ │ └─ 0.001 FRBCLeakageBehaviourElement.complete_model_class pydantic/_internal/_model_construction.py:555 + │ │ │ └─ 0.001 FRBCLeakageBehaviourElement.__get_pydantic_core_schema__ pydantic/main.py:680 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 GenerateSchema.generate_schema pydantic/_internal/_generate_schema.py:575 + │ │ │ └─ 0.001 GenerateSchema._generate_schema_inner pydantic/_internal/_generate_schema.py:861 + │ │ │ └─ 0.001 GenerateSchema._model_schema pydantic/_internal/_generate_schema.py:622 + │ │ │ └─ 0.001 pydantic/_internal/_generate_schema.py:691 + │ │ │ └─ 0.001 GenerateSchema._generate_md_field_schema pydantic/_internal/_generate_schema.py:1064 + │ │ │ └─ 0.001 FieldInfo._common_field_schema pydantic/_internal/_generate_schema.py:1217 + │ │ │ └─ 0.001 GenerateSchema._apply_annotations pydantic/_internal/_generate_schema.py:2015 + │ │ │ └─ 0.001 CallbackGetCoreSchemaHandler.__call__ pydantic/_internal/_schema_generation_shared.py:83 + │ │ │ └─ 0.001 inner_handler pydantic/_internal/_generate_schema.py:2034 + │ │ │ └─ 0.001 _extract_get_pydantic_json_schema pydantic/_internal/_generate_schema.py:2380 + │ │ └─ 0.001 s2python/frbc/frbc_leakage_behaviour.py:1 + │ │ └─ 0.001 __new__ pydantic/_internal/_model_construction.py:81 + │ │ └─ 0.001 FRBCLeakageBehaviour.set_model_fields pydantic/_internal/_model_construction.py:522 + │ │ └─ 0.001 FRBCLeakageBehaviour.collect_model_fields pydantic/_internal/_fields.py:74 + │ │ └─ 0.001 get_model_type_hints pydantic/_internal/_typing_extra.py:472 + │ │ └─ 0.001 cached_property.__get__ functools.py:961 + │ │ └─ 0.001 NsResolver.types_namespace pydantic/_internal/_namespace_utils.py:236 + │ └─ 0.001 exec + └─ 0.001 _find_spec :921 + └─ 0.001 PathFinder.find_spec :1431 + └─ 0.001 PathFinder._get_spec :1399 + └─ 0.001 PathFinder._path_importer_cache :1356 + └─ 0.001 _path_hooks :1343 + └─ 0.001 zipimporter.__init__ :64 + +To view this report with different options, run: + pyinstrument --load-prev 2025-04-03T16-11-14 [options] + diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results b/flexmeasures_s2/profile_steering/tests/profiling_results new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results.html b/flexmeasures_s2/profile_steering/tests/profiling_results.html new file mode 100644 index 0000000..f6d4d63 --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/profiling_results.html @@ -0,0 +1,33 @@ + + + + + + +
+ + + + + + + + \ No newline at end of file diff --git a/flexmeasures_s2/profile_steering/tests/profiling_results.py b/flexmeasures_s2/profile_steering/tests/profiling_results.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/profile_steering/tests/test.txt b/flexmeasures_s2/profile_steering/tests/test.txt new file mode 100644 index 0000000..1dcf3d9 --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/test.txt @@ -0,0 +1,69387 @@ +Test the PlanningServiceImpl with an EV device. +Generating plan! +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery1: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery2: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11970000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11970000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11970000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11970000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11970000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 20520000, 20520000, 20520000, 20520000, 11970000, 10260000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 11970000, 10260000, 20520000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18810000, 10260000, 10260000, 10260000, 10260000, 20520000, 20520000, 20520000, 20520000, 11970000, 10260000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 11970000, 10260000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 11970000, 10260000, 20520000, 20520000, 20520000, 20520000, 20520000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery3: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17955000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 17955000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 17955000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 17955000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 17955000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 15390000, 30780000, 30780000, 30780000, 30780000, 17955000, 15390000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 17955000, 15390000, 30780000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28215000, 15390000, 15390000, 15390000, 15390000, 30780000, 30780000, 30780000, 30780000, 17955000, 15390000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 17955000, 15390000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 17955000, 15390000, 30780000, 30780000, 30780000, 30780000, 30780000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery4: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23940000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 23940000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 23940000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 23940000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 23940000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 20520000, 41040000, 41040000, 41040000, 41040000, 23940000, 20520000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 23940000, 20520000, 41040000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37620000, 20520000, 20520000, 20520000, 20520000, 41040000, 41040000, 41040000, 41040000, 23940000, 20520000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 23940000, 20520000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 23940000, 20520000, 41040000, 41040000, 41040000, 41040000, 41040000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery5: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29925000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 29925000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 29925000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 29925000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 29925000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 25650000, 51300000, 51300000, 51300000, 51300000, 29925000, 25650000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 29925000, 25650000, 51300000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47025000, 25650000, 25650000, 25650000, 25650000, 51300000, 51300000, 51300000, 51300000, 29925000, 25650000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 29925000, 25650000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 29925000, 25650000, 51300000, 51300000, 51300000, 51300000, 51300000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery6: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35910000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 35910000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 35910000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 35910000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 35910000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 30780000, 61560000, 61560000, 61560000, 61560000, 35910000, 30780000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 35910000, 30780000, 61560000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56430000, 30780000, 30780000, 30780000, 30780000, 61560000, 61560000, 61560000, 61560000, 35910000, 30780000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 35910000, 30780000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 61560000, 35910000, 30780000, 61560000, 61560000, 61560000, 61560000, 61560000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery7: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41895000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 41895000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 41895000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 41895000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 41895000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 35910000, 71820000, 71820000, 71820000, 71820000, 41895000, 35910000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 41895000, 35910000, 71820000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65835000, 35910000, 35910000, 35910000, 35910000, 71820000, 71820000, 71820000, 71820000, 41895000, 35910000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 41895000, 35910000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 71820000, 41895000, 35910000, 71820000, 71820000, 71820000, 71820000, 71820000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery8: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47880000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 47880000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 47880000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 47880000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 47880000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 41040000, 82080000, 82080000, 82080000, 82080000, 47880000, 41040000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 47880000, 41040000, 82080000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75240000, 41040000, 41040000, 41040000, 41040000, 82080000, 82080000, 82080000, 82080000, 47880000, 41040000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 47880000, 41040000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 82080000, 47880000, 41040000, 82080000, 82080000, 82080000, 82080000, 82080000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery9: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53865000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 53865000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 53865000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 53865000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 53865000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 46170000, 92340000, 92340000, 92340000, 92340000, 53865000, 46170000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 53865000, 46170000, 92340000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84645000, 46170000, 46170000, 46170000, 46170000, 92340000, 92340000, 92340000, 92340000, 53865000, 46170000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 53865000, 46170000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 92340000, 53865000, 46170000, 92340000, 92340000, 92340000, 92340000, 92340000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 5 final states +Generating next timestep states for timestep: 188 +there are 5 final states +Generating next timestep states for timestep: 189 +there are 5 final states +Generating next timestep states for timestep: 190 +there are 5 final states +Generating next timestep states for timestep: 191 +there are 5 final states +Generating next timestep states for timestep: 192 +there are 5 final states +Generating next timestep states for timestep: 193 +there are 5 final states +Generating next timestep states for timestep: 194 +there are 5 final states +Generating next timestep states for timestep: 195 +there are 5 final states +Generating next timestep states for timestep: 196 +there are 5 final states +Generating next timestep states for timestep: 197 +there are 5 final states +Generating next timestep states for timestep: 198 +there are 5 final states +Generating next timestep states for timestep: 199 +there are 5 final states +Generating next timestep states for timestep: 200 +there are 5 final states +Generating next timestep states for timestep: 201 +there are 5 final states +Generating next timestep states for timestep: 202 +there are 5 final states +Generating next timestep states for timestep: 203 +there are 5 final states +Generating next timestep states for timestep: 204 +there are 5 final states +Generating next timestep states for timestep: 205 +there are 5 final states +Generating next timestep states for timestep: 206 +there are 5 final states +Generating next timestep states for timestep: 207 +there are 5 final states +Generating next timestep states for timestep: 208 +there are 5 final states +Generating next timestep states for timestep: 209 +there are 5 final states +Generating next timestep states for timestep: 210 +there are 5 final states +Generating next timestep states for timestep: 211 +there are 5 final states +Generating next timestep states for timestep: 212 +there are 5 final states +Generating next timestep states for timestep: 213 +there are 5 final states +Generating next timestep states for timestep: 214 +there are 5 final states +Generating next timestep states for timestep: 215 +there are 5 final states +Generating next timestep states for timestep: 216 +there are 5 final states +Generating next timestep states for timestep: 217 +there are 5 final states +Generating next timestep states for timestep: 218 +there are 5 final states +Generating next timestep states for timestep: 219 +there are 5 final states +Generating next timestep states for timestep: 220 +there are 5 final states +Generating next timestep states for timestep: 221 +there are 5 final states +Generating next timestep states for timestep: 222 +there are 5 final states +Generating next timestep states for timestep: 223 +there are 5 final states +Generating next timestep states for timestep: 224 +there are 5 final states +Generating next timestep states for timestep: 225 +there are 5 final states +Generating next timestep states for timestep: 226 +there are 5 final states +Generating next timestep states for timestep: 227 +there are 5 final states +Generating next timestep states for timestep: 228 +there are 5 final states +Generating next timestep states for timestep: 229 +there are 5 final states +Generating next timestep states for timestep: 230 +there are 5 final states +Generating next timestep states for timestep: 231 +there are 5 final states +Generating next timestep states for timestep: 232 +there are 5 final states +Generating next timestep states for timestep: 233 +there are 5 final states +Generating next timestep states for timestep: 234 +there are 5 final states +Generating next timestep states for timestep: 235 +there are 5 final states +Generating next timestep states for timestep: 236 +there are 5 final states +Generating next timestep states for timestep: 237 +there are 5 final states +Generating next timestep states for timestep: 238 +there are 5 final states +Generating next timestep states for timestep: 239 +there are 5 final states +Generating next timestep states for timestep: 240 +there are 5 final states +Generating next timestep states for timestep: 241 +there are 5 final states +Generating next timestep states for timestep: 242 +there are 5 final states +Generating next timestep states for timestep: 243 +there are 5 final states +Generating next timestep states for timestep: 244 +there are 5 final states +Generating next timestep states for timestep: 245 +there are 5 final states +Generating next timestep states for timestep: 246 +there are 5 final states +Generating next timestep states for timestep: 247 +there are 5 final states +Generating next timestep states for timestep: 248 +there are 5 final states +Generating next timestep states for timestep: 249 +there are 5 final states +Generating next timestep states for timestep: 250 +there are 5 final states +Generating next timestep states for timestep: 251 +there are 5 final states +Generating next timestep states for timestep: 252 +there are 5 final states +Generating next timestep states for timestep: 253 +there are 5 final states +Generating next timestep states for timestep: 254 +there are 5 final states +Generating next timestep states for timestep: 255 +there are 5 final states +Generating next timestep states for timestep: 256 +there are 5 final states +Generating next timestep states for timestep: 257 +there are 5 final states +Generating next timestep states for timestep: 258 +there are 5 final states +Generating next timestep states for timestep: 259 +there are 5 final states +Generating next timestep states for timestep: 260 +there are 5 final states +Generating next timestep states for timestep: 261 +there are 5 final states +Generating next timestep states for timestep: 262 +there are 5 final states +Generating next timestep states for timestep: 263 +there are 5 final states +Generating next timestep states for timestep: 264 +there are 5 final states +Generating next timestep states for timestep: 265 +there are 5 final states +Generating next timestep states for timestep: 266 +there are 5 final states +Generating next timestep states for timestep: 267 +there are 5 final states +Generating next timestep states for timestep: 268 +there are 5 final states +Generating next timestep states for timestep: 269 +there are 5 final states +Generating next timestep states for timestep: 270 +there are 5 final states +Generating next timestep states for timestep: 271 +there are 5 final states +Generating next timestep states for timestep: 272 +there are 5 final states +Generating next timestep states for timestep: 273 +there are 5 final states +Generating next timestep states for timestep: 274 +there are 5 final states +Generating next timestep states for timestep: 275 +there are 5 final states +Generating next timestep states for timestep: 276 +there are 5 final states +Generating next timestep states for timestep: 277 +there are 5 final states +Generating next timestep states for timestep: 278 +there are 5 final states +Generating next timestep states for timestep: 279 +there are 5 final states +Generating next timestep states for timestep: 280 +there are 5 final states +Generating next timestep states for timestep: 281 +there are 5 final states +Generating next timestep states for timestep: 282 +there are 5 final states +Generating next timestep states for timestep: 283 +there are 5 final states +Generating next timestep states for timestep: 284 +there are 5 final states +Generating next timestep states for timestep: 285 +there are 5 final states +Generating next timestep states for timestep: 286 +there are 5 final states +Initial planning after adding device battery10: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59850000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 59850000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 59850000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 59850000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 59850000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 51300000, 102600000, 102600000, 102600000, 102600000, 59850000, 51300000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 59850000, 51300000, 102600000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94050000, 51300000, 51300000, 51300000, 51300000, 102600000, 102600000, 102600000, 102600000, 59850000, 51300000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 59850000, 51300000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 102600000, 59850000, 51300000, 102600000, 102600000, 102600000, 102600000, 102600000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Current planning is within the congestion target range. Returning it. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery10' with improvement of 5.287368307500032e+16. +Root controller: selected best controller 'battery10' with global energy impr 5.287368307500032e+16, congestion impr 0.0, iteration 1. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery9' with improvement of 4.405210942499994e+16. +Root controller: selected best controller 'battery9' with global energy impr 4.405210942499994e+16, congestion impr 0.0, iteration 2. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 15390000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 15390000, 10260000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery8' with improvement of 3.673598557500006e+16. +Root controller: selected best controller 'battery8' with global energy impr 3.673598557500006e+16, congestion impr 0.0, iteration 3. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 15390000, 15390000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 15390000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery7' with improvement of 2.9415809024999936e+16. +Root controller: selected best controller 'battery7' with global energy impr 2.9415809024999936e+16, congestion impr 0.0, iteration 4. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery6' with improvement of 2.344441207499981e+16. +Root controller: selected best controller 'battery6' with global energy impr 2.344441207499981e+16, congestion impr 0.0, iteration 5. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery5' with improvement of 1.9925078175000064e+16. +Root controller: selected best controller 'battery5' with global energy impr 1.9925078175000064e+16, congestion impr 0.0, iteration 6. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery4' with improvement of 1.6354931625000448e+16. +Root controller: selected best controller 'battery4' with global energy impr 1.6354931625000448e+16, congestion impr 0.0, iteration 7. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 0, 5130000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery3' with improvement of 1.2916190024999936e+16. +Root controller: selected best controller 'battery3' with global energy impr 1.2916190024999936e+16, congestion impr 0.0, iteration 8. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 0, 0, 0, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 0, 0, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 0, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery2' with improvement of 9499199624999936.0. +Root controller: selected best controller 'battery2' with global energy impr 9499199624999936.0, congestion impr 0.0, iteration 9. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 0, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 5130000, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery1' with improvement of 5950983824999936.0. +Root controller: selected best controller 'battery1' with global energy impr 5950983824999936.0, congestion impr 0.0, iteration 10. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery6 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 5130000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery7 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 10260000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 5130000, 10260000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 10260000, 5130000, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5130000, 5130000, 10260000, 10260000, 5130000, 11115000, 5130000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 10260000, 11115000, 0, 0, 0, 0, 0, 0, 0, 10260000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery8 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 10260000, 5130000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 5130000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 10260000, 5985000, 5130000, 10260000, 5130000, 10260000, 5130000, 5130000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 5985000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery9 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 10260000, 5130000, 0, 0, 0, 0, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 10260000, 11115000, 10260000, 10260000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 5985000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery10 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 10260000, 0, 0, 0, 0, 0, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 11115000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5130000, 11115000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 0, 0, 0, 0, 5130000, 11115000, 0, 0, 0, 0, 0, 0, 0, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 5130000, 0, 0, 0, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +CP '': Selected best controller 'battery10' with improvement of 176728499999744.0. +Root controller: selected best controller 'battery10' with global energy impr 176728499999744.0, congestion impr 0.0, iteration 11. +Improving-------------------------> +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery1 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery2 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery3 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9405000, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 0, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery4 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 +there are 100 final states +Generating next timestep states for timestep: 77 +there are 100 final states +Generating next timestep states for timestep: 78 +there are 100 final states +Generating next timestep states for timestep: 79 +there are 100 final states +Generating next timestep states for timestep: 80 +there are 100 final states +Generating next timestep states for timestep: 81 +there are 100 final states +Generating next timestep states for timestep: 82 +there are 100 final states +Generating next timestep states for timestep: 83 +there are 100 final states +Generating next timestep states for timestep: 84 +there are 100 final states +Generating next timestep states for timestep: 85 +there are 100 final states +Generating next timestep states for timestep: 86 +there are 100 final states +Generating next timestep states for timestep: 87 +there are 100 final states +Generating next timestep states for timestep: 88 +there are 100 final states +Generating next timestep states for timestep: 89 +there are 100 final states +Generating next timestep states for timestep: 90 +there are 100 final states +Generating next timestep states for timestep: 91 +there are 100 final states +Generating next timestep states for timestep: 92 +there are 100 final states +Generating next timestep states for timestep: 93 +there are 100 final states +Generating next timestep states for timestep: 94 +there are 100 final states +Generating next timestep states for timestep: 95 +there are 100 final states +Generating next timestep states for timestep: 96 +there are 100 final states +Generating next timestep states for timestep: 97 +there are 100 final states +Generating next timestep states for timestep: 98 +there are 1 final states +Generating next timestep states for timestep: 99 +there are 1 final states +Generating next timestep states for timestep: 100 +there are 1 final states +Generating next timestep states for timestep: 101 +there are 1 final states +Generating next timestep states for timestep: 102 +there are 1 final states +Generating next timestep states for timestep: 103 +there are 1 final states +Generating next timestep states for timestep: 104 +there are 1 final states +Generating next timestep states for timestep: 105 +there are 1 final states +Generating next timestep states for timestep: 106 +there are 1 final states +Generating next timestep states for timestep: 107 +there are 1 final states +Generating next timestep states for timestep: 108 +there are 1 final states +Generating next timestep states for timestep: 109 +there are 1 final states +Generating next timestep states for timestep: 110 +there are 1 final states +Generating next timestep states for timestep: 111 +there are 1 final states +Generating next timestep states for timestep: 112 +there are 1 final states +Generating next timestep states for timestep: 113 +there are 1 final states +Generating next timestep states for timestep: 114 +there are 1 final states +Generating next timestep states for timestep: 115 +there are 1 final states +Generating next timestep states for timestep: 116 +there are 1 final states +Generating next timestep states for timestep: 117 +there are 1 final states +Generating next timestep states for timestep: 118 +there are 1 final states +Generating next timestep states for timestep: 119 +there are 1 final states +Generating next timestep states for timestep: 120 +there are 1 final states +Generating next timestep states for timestep: 121 +there are 1 final states +Generating next timestep states for timestep: 122 +there are 1 final states +Generating next timestep states for timestep: 123 +there are 1 final states +Generating next timestep states for timestep: 124 +there are 1 final states +Generating next timestep states for timestep: 125 +there are 1 final states +Generating next timestep states for timestep: 126 +there are 1 final states +Generating next timestep states for timestep: 127 +there are 1 final states +Generating next timestep states for timestep: 128 +there are 1 final states +Generating next timestep states for timestep: 129 +there are 1 final states +Generating next timestep states for timestep: 130 +there are 1 final states +Generating next timestep states for timestep: 131 +there are 1 final states +Generating next timestep states for timestep: 132 +there are 1 final states +Generating next timestep states for timestep: 133 +there are 1 final states +Generating next timestep states for timestep: 134 +there are 1 final states +Generating next timestep states for timestep: 135 +there are 1 final states +Generating next timestep states for timestep: 136 +there are 1 final states +Generating next timestep states for timestep: 137 +there are 1 final states +Generating next timestep states for timestep: 138 +there are 1 final states +Generating next timestep states for timestep: 139 +there are 1 final states +Generating next timestep states for timestep: 140 +there are 1 final states +Generating next timestep states for timestep: 141 +there are 1 final states +Generating next timestep states for timestep: 142 +there are 1 final states +Generating next timestep states for timestep: 143 +there are 1 final states +Generating next timestep states for timestep: 144 +there are 1 final states +Generating next timestep states for timestep: 145 +there are 1 final states +Generating next timestep states for timestep: 146 +there are 1 final states +Generating next timestep states for timestep: 147 +there are 1 final states +Generating next timestep states for timestep: 148 +there are 1 final states +Generating next timestep states for timestep: 149 +there are 1 final states +Generating next timestep states for timestep: 150 +there are 1 final states +Generating next timestep states for timestep: 151 +there are 1 final states +Generating next timestep states for timestep: 152 +there are 1 final states +Generating next timestep states for timestep: 153 +there are 1 final states +Generating next timestep states for timestep: 154 +there are 4 final states +Generating next timestep states for timestep: 155 +there are 7 final states +Generating next timestep states for timestep: 156 +there are 10 final states +Generating next timestep states for timestep: 157 +there are 13 final states +Generating next timestep states for timestep: 158 +there are 16 final states +Generating next timestep states for timestep: 159 +there are 19 final states +Generating next timestep states for timestep: 160 +there are 22 final states +Generating next timestep states for timestep: 161 +there are 25 final states +Generating next timestep states for timestep: 162 +there are 28 final states +Generating next timestep states for timestep: 163 +there are 31 final states +Generating next timestep states for timestep: 164 +there are 34 final states +Generating next timestep states for timestep: 165 +there are 37 final states +Generating next timestep states for timestep: 166 +there are 40 final states +Generating next timestep states for timestep: 167 +there are 43 final states +Generating next timestep states for timestep: 168 +there are 46 final states +Generating next timestep states for timestep: 169 +there are 49 final states +Generating next timestep states for timestep: 170 +there are 52 final states +Generating next timestep states for timestep: 171 +there are 55 final states +Generating next timestep states for timestep: 172 +there are 58 final states +Generating next timestep states for timestep: 173 +there are 61 final states +Generating next timestep states for timestep: 174 +there are 63 final states +Generating next timestep states for timestep: 175 +there are 63 final states +Generating next timestep states for timestep: 176 +there are 63 final states +Generating next timestep states for timestep: 177 +there are 63 final states +Generating next timestep states for timestep: 178 +there are 63 final states +Generating next timestep states for timestep: 179 +there are 63 final states +Generating next timestep states for timestep: 180 +there are 63 final states +Generating next timestep states for timestep: 181 +there are 63 final states +Generating next timestep states for timestep: 182 +there are 63 final states +Generating next timestep states for timestep: 183 +there are 63 final states +Generating next timestep states for timestep: 184 +there are 63 final states +Generating next timestep states for timestep: 185 +there are 63 final states +Generating next timestep states for timestep: 186 +there are 63 final states +Generating next timestep states for timestep: 187 +there are 6 final states +Generating next timestep states for timestep: 188 +there are 6 final states +Generating next timestep states for timestep: 189 +there are 6 final states +Generating next timestep states for timestep: 190 +there are 6 final states +Generating next timestep states for timestep: 191 +there are 6 final states +Generating next timestep states for timestep: 192 +there are 6 final states +Generating next timestep states for timestep: 193 +there are 6 final states +Generating next timestep states for timestep: 194 +there are 6 final states +Generating next timestep states for timestep: 195 +there are 6 final states +Generating next timestep states for timestep: 196 +there are 6 final states +Generating next timestep states for timestep: 197 +there are 6 final states +Generating next timestep states for timestep: 198 +there are 6 final states +Generating next timestep states for timestep: 199 +there are 6 final states +Generating next timestep states for timestep: 200 +there are 6 final states +Generating next timestep states for timestep: 201 +there are 6 final states +Generating next timestep states for timestep: 202 +there are 6 final states +Generating next timestep states for timestep: 203 +there are 6 final states +Generating next timestep states for timestep: 204 +there are 6 final states +Generating next timestep states for timestep: 205 +there are 6 final states +Generating next timestep states for timestep: 206 +there are 6 final states +Generating next timestep states for timestep: 207 +there are 6 final states +Generating next timestep states for timestep: 208 +there are 6 final states +Generating next timestep states for timestep: 209 +there are 6 final states +Generating next timestep states for timestep: 210 +there are 6 final states +Generating next timestep states for timestep: 211 +there are 6 final states +Generating next timestep states for timestep: 212 +there are 6 final states +Generating next timestep states for timestep: 213 +there are 6 final states +Generating next timestep states for timestep: 214 +there are 6 final states +Generating next timestep states for timestep: 215 +there are 6 final states +Generating next timestep states for timestep: 216 +there are 6 final states +Generating next timestep states for timestep: 217 +there are 6 final states +Generating next timestep states for timestep: 218 +there are 6 final states +Generating next timestep states for timestep: 219 +there are 6 final states +Generating next timestep states for timestep: 220 +there are 6 final states +Generating next timestep states for timestep: 221 +there are 6 final states +Generating next timestep states for timestep: 222 +there are 6 final states +Generating next timestep states for timestep: 223 +there are 6 final states +Generating next timestep states for timestep: 224 +there are 6 final states +Generating next timestep states for timestep: 225 +there are 6 final states +Generating next timestep states for timestep: 226 +there are 6 final states +Generating next timestep states for timestep: 227 +there are 6 final states +Generating next timestep states for timestep: 228 +there are 6 final states +Generating next timestep states for timestep: 229 +there are 6 final states +Generating next timestep states for timestep: 230 +there are 6 final states +Generating next timestep states for timestep: 231 +there are 6 final states +Generating next timestep states for timestep: 232 +there are 6 final states +Generating next timestep states for timestep: 233 +there are 6 final states +Generating next timestep states for timestep: 234 +there are 6 final states +Generating next timestep states for timestep: 235 +there are 6 final states +Generating next timestep states for timestep: 236 +there are 6 final states +Generating next timestep states for timestep: 237 +there are 6 final states +Generating next timestep states for timestep: 238 +there are 6 final states +Generating next timestep states for timestep: 239 +there are 6 final states +Generating next timestep states for timestep: 240 +there are 6 final states +Generating next timestep states for timestep: 241 +there are 6 final states +Generating next timestep states for timestep: 242 +there are 6 final states +Generating next timestep states for timestep: 243 +there are 6 final states +Generating next timestep states for timestep: 244 +there are 6 final states +Generating next timestep states for timestep: 245 +there are 6 final states +Generating next timestep states for timestep: 246 +there are 6 final states +Generating next timestep states for timestep: 247 +there are 6 final states +Generating next timestep states for timestep: 248 +there are 6 final states +Generating next timestep states for timestep: 249 +there are 6 final states +Generating next timestep states for timestep: 250 +there are 6 final states +Generating next timestep states for timestep: 251 +there are 6 final states +Generating next timestep states for timestep: 252 +there are 6 final states +Generating next timestep states for timestep: 253 +there are 6 final states +Generating next timestep states for timestep: 254 +there are 6 final states +Generating next timestep states for timestep: 255 +there are 6 final states +Generating next timestep states for timestep: 256 +there are 6 final states +Generating next timestep states for timestep: 257 +there are 6 final states +Generating next timestep states for timestep: 258 +there are 6 final states +Generating next timestep states for timestep: 259 +there are 6 final states +Generating next timestep states for timestep: 260 +there are 6 final states +Generating next timestep states for timestep: 261 +there are 6 final states +Generating next timestep states for timestep: 262 +there are 6 final states +Generating next timestep states for timestep: 263 +there are 6 final states +Generating next timestep states for timestep: 264 +there are 6 final states +Generating next timestep states for timestep: 265 +there are 6 final states +Generating next timestep states for timestep: 266 +there are 6 final states +Generating next timestep states for timestep: 267 +there are 6 final states +Generating next timestep states for timestep: 268 +there are 6 final states +Generating next timestep states for timestep: 269 +there are 6 final states +Generating next timestep states for timestep: 270 +there are 6 final states +Generating next timestep states for timestep: 271 +there are 6 final states +Generating next timestep states for timestep: 272 +there are 6 final states +Generating next timestep states for timestep: 273 +there are 6 final states +Generating next timestep states for timestep: 274 +there are 6 final states +Generating next timestep states for timestep: 275 +there are 6 final states +Generating next timestep states for timestep: 276 +there are 6 final states +Generating next timestep states for timestep: 277 +there are 6 final states +Generating next timestep states for timestep: 278 +there are 6 final states +Generating next timestep states for timestep: 279 +there are 6 final states +Generating next timestep states for timestep: 280 +there are 6 final states +Generating next timestep states for timestep: 281 +there are 6 final states +Generating next timestep states for timestep: 282 +there are 6 final states +Generating next timestep states for timestep: 283 +there are 6 final states +Generating next timestep states for timestep: 284 +there are 6 final states +Generating next timestep states for timestep: 285 +there are 6 final states +Generating next timestep states for timestep: 286 +there are 6 final states +Plans old vs New +device: battery5 +old: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +new: JouleProfile(elements=[0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5985000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 5130000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 10260000, 5985000, 5130000, 10260000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4275000, 0, 0, 0, 0, 5130000, 5130000, 5130000, 5130000, 0, 0, 5130000, 5130000, 5130000, 0, 0, 0, 0, 0, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 17100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], profile_start=1970-01-01 00:00:00+00:00, timestep_duration=0:05:00) +Generating next timestep states for timestep: 12 +there are 4 final states +Generating next timestep states for timestep: 13 +there are 7 final states +Generating next timestep states for timestep: 14 +there are 10 final states +Generating next timestep states for timestep: 15 +there are 13 final states +Generating next timestep states for timestep: 16 +there are 16 final states +Generating next timestep states for timestep: 17 +there are 19 final states +Generating next timestep states for timestep: 18 +there are 22 final states +Generating next timestep states for timestep: 19 +there are 25 final states +Generating next timestep states for timestep: 20 +there are 28 final states +Generating next timestep states for timestep: 21 +there are 31 final states +Generating next timestep states for timestep: 22 +there are 34 final states +Generating next timestep states for timestep: 23 +there are 37 final states +Generating next timestep states for timestep: 24 +there are 40 final states +Generating next timestep states for timestep: 25 +there are 43 final states +Generating next timestep states for timestep: 26 +there are 46 final states +Generating next timestep states for timestep: 27 +there are 49 final states +Generating next timestep states for timestep: 28 +there are 52 final states +Generating next timestep states for timestep: 29 +there are 55 final states +Generating next timestep states for timestep: 30 +there are 58 final states +Generating next timestep states for timestep: 31 +there are 61 final states +Generating next timestep states for timestep: 32 +there are 64 final states +Generating next timestep states for timestep: 33 +there are 67 final states +Generating next timestep states for timestep: 34 +there are 70 final states +Generating next timestep states for timestep: 35 +there are 73 final states +Generating next timestep states for timestep: 36 +there are 76 final states +Generating next timestep states for timestep: 37 +there are 79 final states +Generating next timestep states for timestep: 38 +there are 82 final states +Generating next timestep states for timestep: 39 +there are 85 final states +Generating next timestep states for timestep: 40 +there are 88 final states +Generating next timestep states for timestep: 41 +there are 91 final states +Generating next timestep states for timestep: 42 +there are 94 final states +Generating next timestep states for timestep: 43 +there are 97 final states +Generating next timestep states for timestep: 44 +there are 100 final states +Generating next timestep states for timestep: 45 +there are 100 final states +Generating next timestep states for timestep: 46 +there are 100 final states +Generating next timestep states for timestep: 47 +there are 100 final states +Generating next timestep states for timestep: 48 +there are 100 final states +Generating next timestep states for timestep: 49 +there are 100 final states +Generating next timestep states for timestep: 50 +there are 100 final states +Generating next timestep states for timestep: 51 +there are 100 final states +Generating next timestep states for timestep: 52 +there are 100 final states +Generating next timestep states for timestep: 53 +there are 100 final states +Generating next timestep states for timestep: 54 +there are 100 final states +Generating next timestep states for timestep: 55 +there are 100 final states +Generating next timestep states for timestep: 56 +there are 100 final states +Generating next timestep states for timestep: 57 +there are 100 final states +Generating next timestep states for timestep: 58 +there are 100 final states +Generating next timestep states for timestep: 59 +there are 100 final states +Generating next timestep states for timestep: 60 +there are 100 final states +Generating next timestep states for timestep: 61 +there are 100 final states +Generating next timestep states for timestep: 62 +there are 100 final states +Generating next timestep states for timestep: 63 +there are 100 final states +Generating next timestep states for timestep: 64 +there are 100 final states +Generating next timestep states for timestep: 65 +there are 100 final states +Generating next timestep states for timestep: 66 +there are 100 final states +Generating next timestep states for timestep: 67 +there are 100 final states +Generating next timestep states for timestep: 68 +there are 100 final states +Generating next timestep states for timestep: 69 +there are 100 final states +Generating next timestep states for timestep: 70 +there are 100 final states +Generating next timestep states for timestep: 71 +there are 100 final states +Generating next timestep states for timestep: 72 +there are 100 final states +Generating next timestep states for timestep: 73 +there are 100 final states +Generating next timestep states for timestep: 74 +there are 100 final states +Generating next timestep states for timestep: 75 +there are 100 final states +Generating next timestep states for timestep: 76 + \ No newline at end of file diff --git a/flexmeasures_s2/profile_steering/tests/test_frbc_device.py b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py new file mode 100644 index 0000000..ce76837 --- /dev/null +++ b/flexmeasures_s2/profile_steering/tests/test_frbc_device.py @@ -0,0 +1,722 @@ +from flexmeasures_s2.profile_steering.common.target_profile import TargetProfile +from datetime import datetime, timedelta, timezone +import uuid +import logging +import time +from s2python.frbc.frbc_actuator_description import FRBCActuatorDescription +from s2python.frbc.frbc_fill_level_target_profile_element import ( + FRBCFillLevelTargetProfileElement, +) +from s2python.frbc.frbc_leakage_behaviour_element import FRBCLeakageBehaviourElement +from s2python.frbc.frbc_operation_mode import FRBCOperationMode +from s2python.frbc.frbc_usage_forecast_element import FRBCUsageForecastElement +from flexmeasures_s2.profile_steering.device_planner.frbc.s2_frbc_device_state import ( + S2FrbcDeviceState, +) +from flexmeasures_s2.profile_steering.common.profile_metadata import ProfileMetadata +from s2python.frbc import FRBCSystemDescription +from s2python.frbc import FRBCUsageForecast +from s2python.frbc import FRBCFillLevelTargetProfile +from s2python.frbc import FRBCLeakageBehaviour +from s2python.frbc import FRBCOperationModeElement +from s2python.frbc import FRBCActuatorStatus, FRBCStorageStatus, FRBCStorageDescription +from s2python.common import PowerRange, Duration +from s2python.common import NumberRange +from s2python.common import CommodityQuantity +from s2python.common import Transition +from s2python.common import Timer +from s2python.common import PowerValue +from s2python.common import Commodity + +from flexmeasures_s2.profile_steering.planning_service_impl import ( + PlanningServiceImpl, + PlanningServiceConfig, + ClusterState, + ClusterTarget, +) +import matplotlib.dates as mdates +import matplotlib.pyplot as plt + +# Global variables to store IDs for debugging +# make a list of tuples with the ids and the names +ids = [] + + +D = 10 # number of devices +B = 20 # number of buckets +S = 10 # number of stratification layers +T = 160 # number of time steps (5 minutes * 160 = 800 minutes = 13.33 hours) +TIMESTEP_DURATION = 300 # duration of a time step in seconds (5 minutes) + + +# D = 10 # number of devices +# B = 100 # number of buckets +# S = 20 # number of stratification layers +# T = 288 # number of time steps (5 minutes * 288 = 1440 minutes = 24 hours) +# TIMESTEP_DURATION = 300 # duration of a time step in seconds (5 minutes) +""" +# Ideas for speeding up + +- Parallelize device planning +- Precompute UUIDs +""" + + +def create_ev_device_state( + device_id: str, + omloop_starts_at: datetime, + cet: timezone, + charge_power_soc_percentage_per_second_night: float, + charging_power_kw_night: float, + charge_power_soc_percentage_per_second_day: float, + charging_power_kw_day: float, + soc_percentage_before_charging1: float, + final_fill_level_target1: float, + recharge_duration1: timedelta, + start_of_recharge1: datetime, + drive_duration1: timedelta, + start_of_drive1: datetime, + drive_consume_soc_per_second1: float, + soc_percentage_before_driving1: float, + soc_percentage_before_charging2: float, + final_fill_level_target2: float, + recharge_duration2: timedelta, + start_of_recharge2: datetime, +) -> S2FrbcDeviceState: + # Create system description + ( + recharge_system_description1, + charge_actuator_status1, + storage_status1, + ) = create_recharge_system_description( + start_of_recharge=start_of_recharge1, + charge_power_soc_percentage_per_second=charge_power_soc_percentage_per_second_night, + charging_power_kw=charging_power_kw_night, + soc_percentage_before_charging=soc_percentage_before_charging1, + ) + + # Create leakage behaviour + recharge_leakage1 = create_recharge_leakage_behaviour(start_of_recharge1) + + # Create usage forecast + recharge_usage_forecast1 = create_recharge_usage_forecast( + start_of_recharge1, recharge_duration1 + ) + + # Create fill level target profile + recharge_fill_level_target1 = create_recharge_fill_level_target_profile( + start_of_recharge1, + recharge_duration1, + final_fill_level_target1, + soc_percentage_before_charging1, + ) + + ( + drive_system_description1, + off_actuator_status1, + storage_status1, + ) = create_driving_system_description( + start_of_drive1, soc_percentage_before_driving1 + ) + drive_usage_forecast1 = create_driving_usage_forecast( + start_of_drive1, drive_duration1, drive_consume_soc_per_second1 + ) + + ( + recharge_system_description2, + charge_actuator_status2, + storage_status2, + ) = create_recharge_system_description( + start_of_recharge2, + charge_power_soc_percentage_per_second_day, + charging_power_kw_day, + soc_percentage_before_charging2, + ) + recharge_leakage2 = create_recharge_leakage_behaviour(start_of_recharge2) + recharge_usage_forecast2 = create_recharge_usage_forecast( + start_of_recharge2, recharge_duration2 + ) + recharge_fill_level_target2 = create_recharge_fill_level_target_profile( + start_of_recharge2, + recharge_duration2, + final_fill_level_target2, + soc_percentage_before_charging2, + ) + + # Create done state + done_start = start_of_recharge2 + recharge_duration2 + done_duration = timedelta(hours=4, minutes=10) # 4 hours & 10 minutes + done_leakage = create_recharge_leakage_behaviour(done_start) + ( + done_system_description, + done_actuator_status, + done_storage_status, + ) = create_driving_system_description(done_start, final_fill_level_target2) + done_usage_forecast = create_recharge_usage_forecast(done_start, done_duration) + + device_state = S2FrbcDeviceState( + device_id=device_id, + device_name=device_id, + connection_id=device_id + "_cid1", + priority_class=1, + timestamp=omloop_starts_at, + energy_in_current_timestep=PowerValue( + value=0, commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1 + ), + is_online=True, + power_forecast=None, + system_descriptions=[ + recharge_system_description1, + drive_system_description1, + recharge_system_description2, + done_system_description, + ], + leakage_behaviours=[recharge_leakage1, recharge_leakage2, done_leakage], + usage_forecasts=[ + recharge_usage_forecast1, + drive_usage_forecast1, + recharge_usage_forecast2, + done_usage_forecast, + ], + fill_level_target_profiles=[ + recharge_fill_level_target1, + recharge_fill_level_target2, + ], + computational_parameters=S2FrbcDeviceState.ComputationalParameters(B, S), + actuator_statuses=[ + off_actuator_status1, + charge_actuator_status1, + charge_actuator_status2, + done_actuator_status, + ], + storage_status=[storage_status1, storage_status2, done_storage_status], + ) + return device_state + + +@staticmethod +def create_recharge_system_description( + start_of_recharge, + charge_power_soc_percentage_per_second, + charging_power_kw, + soc_percentage_before_charging, +) -> FRBCSystemDescription: + global charge_actuator_id, id_on_operation_mode, id_off_operation_mode, id_on_to_off_timer, id_off_to_on_timer + # Create and return a mock system description for recharging + on_operation_element = FRBCOperationModeElement( + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + fill_rate=NumberRange( + start_of_range=0, + end_of_range=charge_power_soc_percentage_per_second, + ), + power_ranges=[ + PowerRange( + start_of_range=charging_power_kw * 0, + end_of_range=charging_power_kw * 1000, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, + ) + ], + ) + id_on_operation_mode = str(uuid.uuid4()) + logging.debug(f"id_on_operation_mode: {id_on_operation_mode}") + ids.append((id_on_operation_mode, "charge_on_operation_mode")) + on_operation_mode = FRBCOperationMode( + id=id_on_operation_mode, + diagnostic_label="charge.on", + elements=[on_operation_element], + abnormal_condition_only=False, + ) + off_operation_element = FRBCOperationModeElement( + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + fill_rate=NumberRange(start_of_range=0, end_of_range=0), + power_ranges=[ + PowerRange( + start_of_range=0, + end_of_range=0, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, + ) + ], + ) + id_off_operation_mode = str(uuid.uuid4()) + logging.debug(f"id_off_operation_mode: {id_off_operation_mode}") + ids.append((id_off_operation_mode, "charge_off_operation_mode")) + off_operation_mode = FRBCOperationMode( + id=id_off_operation_mode, + diagnostic_label="charge.off", + elements=[off_operation_element], + abnormal_condition_only=False, + ) + + id_on_to_off_timer = str(uuid.uuid4()) + logging.debug(f"id_on_to_off_timer: {id_on_to_off_timer}") + ids.append((id_on_to_off_timer, "charge_on_to_off_timer")) + on_to_off_timer = Timer( + id=id_on_to_off_timer, + diagnostic_label="charge_on.to.off.timer", + duration=Duration(30), + ) + id_off_to_on_timer = str(uuid.uuid4()) + logging.debug(f"id_off_to_on_timer: {id_off_to_on_timer}") + ids.append((id_off_to_on_timer, "charge_off_to_on_timer")) + off_to_on_timer = Timer( + id=id_off_to_on_timer, + diagnostic_label="charge_off.to.on.timer", + duration=Duration(30), + ) + transition_id_from_on_to_off = str(uuid.uuid4()) + logging.debug(f"transition_id_from_on_to_off: {transition_id_from_on_to_off}") + ids.append( + (transition_id_from_on_to_off, "transition_from_charge_on_to_charge_off") + ) + transition_from_on_to_off = Transition( + id=transition_id_from_on_to_off, + **{"from": id_on_operation_mode}, + to=id_off_operation_mode, + start_timers=[id_off_to_on_timer], + blocking_timers=[id_on_to_off_timer], + transition_duration=None, + abnormal_condition_only=False, + ) + transition_id_from_off_to_on = str(uuid.uuid4()) + logging.debug(f"transition_id_from_off_to_on: {transition_id_from_off_to_on}") + ids.append( + (transition_id_from_off_to_on, "transition_from_charge_off_to_charge_on") + ) + transition_from_off_to_on = Transition( + id=transition_id_from_off_to_on, + **{"from": id_off_operation_mode}, + to=id_on_operation_mode, + start_timers=[id_on_to_off_timer], + blocking_timers=[id_off_to_on_timer], + transition_duration=None, + abnormal_condition_only=False, + ) + charge_actuator_id = str(uuid.uuid4()) + logging.debug(f"charge_actuator_id: {charge_actuator_id}") + ids.append((charge_actuator_id, "charge_actuator")) + charge_actuator_status = FRBCActuatorStatus( + message_id=charge_actuator_id, + actuator_id=charge_actuator_id, + active_operation_mode_id=id_on_operation_mode, + operation_mode_factor=0, + ) + + charge_actuator_description = FRBCActuatorDescription( + id=charge_actuator_id, + diagnostic_label="charge.actuator", + operation_modes=[on_operation_mode, off_operation_mode], + transitions=[transition_from_on_to_off, transition_from_off_to_on], + timers=[on_to_off_timer, off_to_on_timer], + supported_commodities=[Commodity.ELECTRICITY], + ) + storage_status_id = str(uuid.uuid4()) + logging.debug(f"storage_status_id: {storage_status_id}") + ids.append((storage_status_id, "storage_status")) + storage_status = FRBCStorageStatus( + message_id=storage_status_id, present_fill_level=soc_percentage_before_charging + ) + + frbc_storage_description = FRBCStorageDescription( + diagnostic_label="battery", + fill_level_label="SoC %", + provides_leakage_behaviour=False, + provides_fill_level_target_profile=True, + provides_usage_forecast=False, + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + ) + + frbc_system_description = FRBCSystemDescription( + message_id=str(uuid.uuid4()), + valid_from=start_of_recharge, + actuators=[charge_actuator_description], + storage=frbc_storage_description, + ) + + return frbc_system_description, charge_actuator_status, storage_status + + +@staticmethod +def create_recharge_leakage_behaviour(start_of_recharge): + leakage_id = str(uuid.uuid4()) + logging.debug(f"leakage_id: {leakage_id}") + ids.append((leakage_id, "leakage")) + return FRBCLeakageBehaviour( + message_id=leakage_id, + valid_from=start_of_recharge, + elements=[ + FRBCLeakageBehaviourElement( + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + leakage_rate=0, + ) + ], + ) + + +@staticmethod +def create_recharge_usage_forecast(start_of_recharge, recharge_duration): + no_usage = FRBCUsageForecastElement( + duration=int(recharge_duration.total_seconds()), usage_rate_expected=0 + ) + usage_id = str(uuid.uuid4()) + logging.debug(f"usage_id: {usage_id}") + ids.append((usage_id, "usage")) + return FRBCUsageForecast( + message_id=usage_id, start_time=start_of_recharge, elements=[no_usage] + ) + + +@staticmethod +def create_recharge_fill_level_target_profile( + start_of_recharge, + recharge_duration, + final_fill_level_target, + soc_percentage_before_charging, +): + during_charge = FRBCFillLevelTargetProfileElement( + duration=max(recharge_duration.total_seconds() - 10, 0), + fill_level_range=NumberRange( + start_of_range=soc_percentage_before_charging, end_of_range=100 + ), + ) + end_of_charge = FRBCFillLevelTargetProfileElement( + duration=min(recharge_duration.total_seconds(), 10), + fill_level_range=NumberRange( + start_of_range=final_fill_level_target, end_of_range=100 + ), + ) + fill_level_id = str(uuid.uuid4()) + logging.debug(f"fill_level_id: {fill_level_id}") + ids.append((fill_level_id, "fill_level")) + return FRBCFillLevelTargetProfile( + message_id=fill_level_id, + start_time=start_of_recharge, + elements=[during_charge, end_of_charge], + ) + + +@staticmethod +def create_driving_system_description(start_of_drive, soc_percentage_before_driving): + global off_actuator_id, id_off_operation_mode + off_operation_element = FRBCOperationModeElement( + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + fill_rate=NumberRange(start_of_range=0, end_of_range=0), + power_ranges=[ + PowerRange( + start_of_range=0, + end_of_range=0, + commodity_quantity=CommodityQuantity.ELECTRIC_POWER_L1, + ) + ], + ) + id_off_operation_mode = str(uuid.uuid4()) + logging.debug(f"operation_mode_driving: {id_off_operation_mode}") + ids.append((id_off_operation_mode, "operation_mode_driving")) + off_operation_mode = FRBCOperationMode( + id=id_off_operation_mode, + diagnostic_label="off", + elements=[off_operation_element], + abnormal_condition_only=False, + ) + off_actuator_id = str(uuid.uuid4()) + logging.debug(f"actuator_driving: {off_actuator_id}") + ids.append((off_actuator_id, "actuator_driving")) + off_actuator_status = FRBCActuatorStatus( + message_id=str(uuid.uuid4()), + actuator_id=off_actuator_id, + active_operation_mode_id=id_off_operation_mode, + operation_mode_factor=0, + ) + off_actuator = FRBCActuatorDescription( + id=off_actuator_id, + diagnostic_label="off", + operation_modes=[off_operation_mode], + transitions=[], + timers=[], + supported_commodities=[Commodity.ELECTRICITY], + ) + storage_status = FRBCStorageStatus( + message_id=str(uuid.uuid4()), present_fill_level=soc_percentage_before_driving + ) + storage_description = FRBCStorageDescription( + diagnostic_label="battery", + fill_level_label="SoC %", + provides_leakage_behaviour=False, + provides_fill_level_target_profile=True, + provides_usage_forecast=False, + fill_level_range=NumberRange(start_of_range=0, end_of_range=100), + ) + return ( + FRBCSystemDescription( + message_id=str(uuid.uuid4()), + valid_from=start_of_drive, + actuators=[off_actuator], + storage=storage_description, + ), + off_actuator_status, + storage_status, + ) + + +@staticmethod +def create_driving_usage_forecast( + start_of_driving, next_drive_duration, soc_usage_per_second +): + no_usage = FRBCUsageForecastElement( + duration=int(next_drive_duration.total_seconds()), + usage_rate_expected=(-1 * soc_usage_per_second), + ) + return FRBCUsageForecast( + message_id=str(uuid.uuid4()), start_time=start_of_driving, elements=[no_usage] + ) + + +def plot_planning_results( + timestep_duration, + nr_of_timesteps, + predicted_energy_elements, + target_energy_elements, +): + """ + Plots the energy, fill level, actuator usage, and operation mode ID lists using matplotlib. + + :param timestep_duration: Duration of each timestep. + :param nr_of_timesteps: Number of timesteps. + :param predicted_energy_elements: List of predicted energy values. + :param target_energy_elements: List of target energy values. + """ + # Create a figure with a single subplot + fig, ax = plt.subplots(1, 1, figsize=(12, 8)) + + # Generate timestep_start_times + timestep_start_times = [ + datetime(1970, 1, 1, tzinfo=timezone.utc) + + timedelta(seconds=i * timestep_duration.total_seconds()) + for i in range(nr_of_timesteps) + ] + + # Plot both lines on the same subplot + ax.plot( + timestep_start_times, + predicted_energy_elements, + label="Predicted Energy", + color="green", + ) + ax.plot( + timestep_start_times, + target_energy_elements, + label="Target Energy", + color="red", + linestyle="dotted", + linewidth=2, + ) + + # Set labels and grid + ax.set_ylabel("Energy (Joules)") + ax.set_title("Predicted vs Target Energy") + ax.legend(loc="best") + ax.grid(True) + + # Format the x-axis to show time and set ticks every 30 minutes + ax.xaxis.set_major_locator(mdates.MinuteLocator(interval=30)) + ax.xaxis.set_major_formatter(mdates.DateFormatter("%H:%M:%S")) + fig.autofmt_xdate() + + # Adjust layout + plt.tight_layout() + plt.savefig(f"my plot - D = {D} - B = {B} - S = {S} - T = {T}") + + +def create_device_state( + device_id: str, omloop_starts_at: datetime, cet: timezone +) -> S2FrbcDeviceState: + # Device charging parameters + charge_power_soc_percentage_per_second_night = 0.01099537114 + charging_power_kw_night = 57 + charge_power_soc_percentage_per_second_day = 0.01099537114 + charging_power_kw_day = 57 + + # First recharge period + start_of_recharge1 = omloop_starts_at.astimezone(cet) + recharge_duration1 = timedelta(hours=7, minutes=15) + soc_percentage_before_charging1 = 0 + final_fill_level_target1 = 100 + + # Driving period + start_of_drive1 = start_of_recharge1 + recharge_duration1 + drive_duration1 = timedelta(hours=4, minutes=35) + drive_consume_soc_per_second1 = 0.00375927565821256038647342995169 + soc_percentage_before_driving1 = 100 + + # Second recharge period + start_of_recharge2 = start_of_drive1 + drive_duration1 + recharge_duration2 = timedelta(hours=7) + soc_percentage_before_charging2 = 37.0 + final_fill_level_target2 = 94.4825134 + + # Create the device state + device_state = create_ev_device_state( + device_id, + omloop_starts_at, + cet, + charge_power_soc_percentage_per_second_night, + charging_power_kw_night, + charge_power_soc_percentage_per_second_day, + charging_power_kw_day, + soc_percentage_before_charging1, + final_fill_level_target1, + recharge_duration1, + start_of_recharge1, + drive_duration1, + start_of_drive1, + drive_consume_soc_per_second1, + soc_percentage_before_driving1, + soc_percentage_before_charging2, + final_fill_level_target2, + recharge_duration2, + start_of_recharge2, + ) + return device_state + + +def get_target_profile_elements(number_of_elements: int): + """Create target profile elements with the same pattern as the Java code.""" + target_elements = [] + # First 38 elements of 0 + target_elements.extend([0] * 38) + # Next 62 elements of 8400000 + target_elements.extend([8400000] * 62) + # Next 55 elements of 0 + target_elements.extend([0] * 45) + # Next 18 elements of 8400000 + target_elements.extend([8400000] * 28) + # Last 115 elements of 176000000 + target_elements.extend([176000000] * 115) + return target_elements[:number_of_elements] + + +def test_planning_service_impl_with_ev_device(): + """Test the PlanningServiceImpl with an EV device.""" + print("Test the PlanningServiceImpl with an EV device.") + # Create 10 device states + numberOfDevices = D + + # Create profile metadata and target profile + target_metadata = ProfileMetadata( + profile_start=datetime(1970, 1, 1, tzinfo=timezone.utc), + timestep_duration=timedelta(seconds=TIMESTEP_DURATION), + nr_of_timesteps=T, + ) + plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) + target_profile_elements = get_target_profile_elements(T) + + device_states = [ + create_device_state( + f"battery{i+1}", datetime.fromtimestamp(3600), timezone(timedelta(hours=1)) + ) + for i in range(numberOfDevices) + ] + + # Create Dictionary of device states + device_states_dict = { + device_state.device_id: device_state for device_state in device_states + } + + # Create congestion points mapping + congestion_points_by_connection_id = { + device_id: "" for device_id in device_states_dict.keys() + } + + # Create a target profile + global_target_profile = TargetProfile( + profile_start=target_metadata.get_profile_start(), + timestep_duration=target_metadata.get_timestep_duration(), + elements=target_profile_elements, + ) + # Create a cluster state using the list of device states + cluster_state = ClusterState( + datetime.now(), device_states_dict, congestion_points_by_connection_id + ) + + # Create an empty map for congestion point targets + congestion_point_targets = {} + + # Create a cluster target + cluster_target = ClusterTarget( + datetime.now(), + None, + None, + global_target_profile=global_target_profile, + congestion_point_targets=congestion_point_targets, + ) + + config = PlanningServiceConfig( + energy_improvement_criterion=10.0, + cost_improvement_criterion=1.0, + congestion_retry_iterations=10, + multithreaded=False, + ) + print("Generating plan!") + + # Create planning service implementation + service = PlanningServiceImpl(config) + + # Create cluster target + + cluster_target = ClusterTarget( + datetime.now(), + None, + None, + global_target_profile=global_target_profile, + congestion_point_targets=congestion_point_targets, + ) + # Set due by date for planning + plan_due_by_date = target_metadata.get_profile_start() + timedelta(seconds=10) + # Act - Generate a plan + start_time = time.time() + cluster_plan = service.plan( + state=cluster_state, + target=cluster_target, + planning_window=TIMESTEP_DURATION * T, # Full planning window in seconds + reason="Testing EV planning", + plan_due_by_date=plan_due_by_date, + optimize_for_target=True, + max_priority_class=1, + ) + end_time = time.time() + execution_time = end_time - start_time + + # Log information + print(f"Plan generated in {execution_time:.2f} seconds") + + # Assert + assert cluster_plan is not None + print("Got cluster plan") + if cluster_plan is None: + print("Cluster plan is None") + return + # Get the plan for our device + device_plans = cluster_plan.get_plan_data().get_device_plans() + energy_profile = cluster_plan.get_joule_profile() + + plot_planning_results( + timestep_duration=timedelta(seconds=TIMESTEP_DURATION), + nr_of_timesteps=T, + predicted_energy_elements=energy_profile.get_elements(), + target_energy_elements=target_profile_elements, + ) + + # Get only the non-None plans + device_plans = [plan for plan in device_plans if plan is not None] + + # Assert that we got a plan for our device + assert len(device_plans) > 0 + print("Got device plan") + # Print and verify the energy profile + + # Basic assertion - the energy profile should have the expected number of elements + assert len(energy_profile.elements) == target_metadata.get_nr_of_timesteps() + + +# Main function +if __name__ == "__main__": + test_planning_service_impl_with_ev_device() diff --git a/flexmeasures_s2/pytest.ini b/flexmeasures_s2/pytest.ini new file mode 100644 index 0000000..c0511c0 --- /dev/null +++ b/flexmeasures_s2/pytest.ini @@ -0,0 +1,2 @@ +[pytest] +log_cli = true diff --git a/flexmeasures_s2/scheduler/s2_frbc_device_state.py b/flexmeasures_s2/scheduler/s2_frbc_device_state.py new file mode 100644 index 0000000..4553f0a --- /dev/null +++ b/flexmeasures_s2/scheduler/s2_frbc_device_state.py @@ -0,0 +1,10 @@ +from s2python.frbc import ( + FRBCSystemDescription, +) + +from typing import List +from pydantic import BaseModel + + +class S2FrbcDeviceState(BaseModel): + system_descriptions: List[FRBCSystemDescription] diff --git a/flexmeasures_s2/scheduler/schedulers.py b/flexmeasures_s2/scheduler/schedulers.py index 7ab3080..7a683e6 100644 --- a/flexmeasures_s2/scheduler/schedulers.py +++ b/flexmeasures_s2/scheduler/schedulers.py @@ -1,6 +1,8 @@ import pandas as pd from flexmeasures import Scheduler +from flexmeasures_s2.scheduler.schemas import S2FlexModelSchema, TNOFlexContextSchema + class S2Scheduler(Scheduler): @@ -12,6 +14,7 @@ def compute(self, *args, **kwargs): Just a dummy scheduler that always plans to consume at maximum capacity. (Schedulers return positive values for consumption, and negative values for production) """ + raise NotImplementedError("todo: implement scheduling logic") return pd.Series( self.sensor.get_attribute("capacity_in_mw"), index=pd.date_range( @@ -21,4 +24,16 @@ def compute(self, *args, **kwargs): def deserialize_config(self): """Do not care about any flex config sent in.""" + # Find flex-model in asset attributes + self.flex_model = self.asset.attributes.get("flex-model", {}) + + self.deserialize_flex_config() self.config_deserialized = True + + def deserialize_flex_config(self): + """Deserialize flex-model and flex-context""" + # Deserialize flex-model + self.flex_model = S2FlexModelSchema().load(self.flex_model) + + # Deserialize self.flex_context + self.flex_context = TNOFlexContextSchema().load(self.flex_context) diff --git a/flexmeasures_s2/scheduler/schemas.py b/flexmeasures_s2/scheduler/schemas.py index 9e42dfa..03f98f2 100644 --- a/flexmeasures_s2/scheduler/schemas.py +++ b/flexmeasures_s2/scheduler/schemas.py @@ -1,5 +1,16 @@ -from marshmallow import Schema +from flexmeasures.data.schemas import AwareDateTimeField, DurationField +from marshmallow import Schema, fields -class S2FlexModelSchema(Schema): - ... + +class S2FlexModelSchema(Schema): ... + + +class TNOTargetProfile(Schema): + start = AwareDateTimeField() + duration = DurationField() + values = fields.List(fields.Float) + + +class TNOFlexContextSchema(Schema): + target_profile = fields.Nested(TNOTargetProfile()) diff --git a/flexmeasures_s2/scheduler/test_frbc_device.json b/flexmeasures_s2/scheduler/test_frbc_device.json new file mode 100644 index 0000000..ef38b22 --- /dev/null +++ b/flexmeasures_s2/scheduler/test_frbc_device.json @@ -0,0 +1,123 @@ +{ + "system_descriptions": [ + { + "message_type": "FRBC.SystemDescription", + "message_id": "f6769b77-3d85-4d61-8a28-3bd70fc5cef4", + "valid_from": "2025-01-21 17:52:08.121054+00:00", + "actuators": [ + { + "id": "1ebd596b-3031-403f-95a1-9520550b161b", + "diagnostic_label": "charge", + "supported_commodities": [ + "Commodity.ELECTRICITY" + ], + "operation_modes": [ + { + "id": "charge.on", + "diagnostic_label": "charge.on", + "elements": [ + { + "fill_level_range": { + "start_of_range": 0.0, + "end_of_range": 100.0 + }, + "fill_rate": { + "start_of_range": 0.0054012349, + "end_of_range": 0.0054012349 + }, + "power_ranges": [ + { + "start_of_range": 28000.0, + "end_of_range": 28000.0, + "commodity_quantity": "CommodityQuantity.ELECTRIC_POWER_L1" + } + ], + "running_costs": null + } + ], + "abnormal_condition_only": false + }, + { + "id": "charge.off", + "diagnostic_label": "charge.off", + "elements": [ + { + "fill_level_range": { + "start_of_range": 0.0, + "end_of_range": 100.0 + }, + "fill_rate": { + "start_of_range": 0.0, + "end_of_range": 0.0 + }, + "power_ranges": [ + { + "start_of_range": 0.0, + "end_of_range": 0.0, + "commodity_quantity": "CommodityQuantity.ELECTRIC_POWER_L1" + } + ], + "running_costs": null + } + ], + "abnormal_condition_only": false + } + ], + "transitions": [ + { + "id": "off.to.on", + "from_": "charge.off", + "to": "charge.on", + "start_timers": [ + "on.to.off.timer" + ], + "blocking_timers": [ + "off.to.on.timer" + ], + "transition_costs": null, + "transition_duration": null, + "abnormal_condition_only": false + }, + { + "id": "on.to.off", + "from_": "charge.on", + "to": "charge.off", + "start_timers": [ + "off.to.on.timer" + ], + "blocking_timers": [ + "on.to.off.timer" + ], + "transition_costs": null, + "transition_duration": null, + "abnormal_condition_only": false + } + ], + "timers": [ + { + "id": "on.to.off.timer", + "diagnostic_label": "on.to.off.timer", + "duration": 30 + }, + { + "id": "off.to.on.timer", + "diagnostic_label": "off.to.on.timer", + "duration": 30 + } + ] + } + ], + "storage": { + "diagnostic_label": "battery", + "fill_level_label": "SoC %", + "provides_leakage_behaviour": false, + "provides_fill_level_target_profile": true, + "provides_usage_forecast": false, + "fill_level_range": { + "start_of_range": 0.0, + "end_of_range": 100.0 + } + } + } + ] +} \ No newline at end of file diff --git a/flexmeasures_s2/scheduler/tests/__init__.py b/flexmeasures_s2/scheduler/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flexmeasures_s2/scheduler/tests/joule_profile.py b/flexmeasures_s2/scheduler/tests/joule_profile.py new file mode 100644 index 0000000..2080332 --- /dev/null +++ b/flexmeasures_s2/scheduler/tests/joule_profile.py @@ -0,0 +1,297 @@ +from typing import List + + +JouleProfileTarget: List = [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 8400000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 17100000, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, +] + + +def get_JouleProfileTarget() -> List: + return JouleProfileTarget diff --git a/flexmeasures_s2/scheduler/tests/test.java b/flexmeasures_s2/scheduler/tests/test.java new file mode 100644 index 0000000..8529e05 --- /dev/null +++ b/flexmeasures_s2/scheduler/tests/test.java @@ -0,0 +1,287 @@ +S2FrbcDeviceState(systemDescriptions=[class FRBCSystemDescription { + validFrom: 1970-01-01T02:00+01:00 + actuators: [class FRBCActuatorDescription { + id: 74d81672-4698-4d92-bc26-12d15369a428 + diagnosticLabel: charge + supportedCommodities: [ELECTRICITY] + status: class FRBCActuatorStatus { + activeOperationModeId: charge.on + operationModeFactor: 0 + previousOperationModeId: null + transitionTimestamp: null + } + operationModes: [class FRBCOperationMode { + id: charge.on + diagnosticLabel: charge.on + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0.0054012349 + endOfRange: 0.0054012349 + } + powerRanges: [class CommonPowerRange { + startOfRange: 28000.0 + endOfRange: 28000.0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }, class FRBCOperationMode { + id: charge.off + diagnosticLabel: charge.off + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0 + endOfRange: 0 + } + powerRanges: [class CommonPowerRange { + startOfRange: 0 + endOfRange: 0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }] + transitions: [class CommonTransition { + id: off.to.on + from: charge.off + to: charge.on + startTimers: [on.to.off.timer] + blockingTimers: [off.to.on.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }, class CommonTransition { + id: on.to.off + from: charge.on + to: charge.off + startTimers: [off.to.on.timer] + blockingTimers: [on.to.off.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }] + timers: [class CommonTimer { + id: on.to.off.timer + diagnosticLabel: on.to.off.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }, class CommonTimer { + id: off.to.on.timer + diagnosticLabel: off.to.on.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }] + }] + storage: class FRBCStorageDescription { + diagnosticLabel: battery + fillLevelLabel: SoC % + providesLeakageBehaviour: false + providesFillLevelTargetProfile: true + providesUsageForecast: false + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + status: class FRBCStorageStatus { + presentFillLevel: 0.0 + } + leakageBehaviour: null + } +}, class FRBCSystemDescription { + validFrom: 1970-01-01T09:13+01:00 + actuators: [class FRBCActuatorDescription { + id: e0ddc962-e865-4d85-bff5-17a2c14bcec6 + diagnosticLabel: off + supportedCommodities: [ELECTRICITY] + status: class FRBCActuatorStatus { + activeOperationModeId: off + operationModeFactor: 0 + previousOperationModeId: null + transitionTimestamp: null + } + operationModes: [class FRBCOperationMode { + id: off + diagnosticLabel: off + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0 + endOfRange: 0 + } + powerRanges: [class CommonPowerRange { + startOfRange: 0 + endOfRange: 0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }] + transitions: [] + timers: [] + }] + storage: class FRBCStorageDescription { + diagnosticLabel: battery + fillLevelLabel: SoC % + providesLeakageBehaviour: false + providesFillLevelTargetProfile: false + providesUsageForecast: true + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + status: class FRBCStorageStatus { + presentFillLevel: 100.0 + } + leakageBehaviour: null + } +}, class FRBCSystemDescription { + validFrom: 1970-01-01T13:49+01:00 + actuators: [class FRBCActuatorDescription { + id: 751551e9-acd0-4ec8-9da8-377f9faa5e36 + diagnosticLabel: charge + supportedCommodities: [ELECTRICITY] + status: class FRBCActuatorStatus { + activeOperationModeId: charge.on + operationModeFactor: 0 + previousOperationModeId: null + transitionTimestamp: null + } + operationModes: [class FRBCOperationMode { + id: charge.on + diagnosticLabel: charge.on + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0.01099537114 + endOfRange: 0.01099537114 + } + powerRanges: [class CommonPowerRange { + startOfRange: 57000.0 + endOfRange: 57000.0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }, class FRBCOperationMode { + id: charge.off + diagnosticLabel: charge.off + elements: [class FRBCOperationModeElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + fillRate: class CommonNumberRange { + startOfRange: 0 + endOfRange: 0 + } + powerRanges: [class CommonPowerRange { + startOfRange: 0 + endOfRange: 0 + commodityQuantity: ELECTRIC.POWER.L1 + }] + runningCosts: null + }] + abnormalConditionOnly: false + }] + transitions: [class CommonTransition { + id: off.to.on + from: charge.off + to: charge.on + startTimers: [on.to.off.timer] + blockingTimers: [off.to.on.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }, class CommonTransition { + id: on.to.off + from: charge.on + to: charge.off + startTimers: [off.to.on.timer] + blockingTimers: [on.to.off.timer] + transitionCosts: null + transitionDuration: null + abnormalConditionOnly: false + }] + timers: [class CommonTimer { + id: on.to.off.timer + diagnosticLabel: on.to.off.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }, class CommonTimer { + id: off.to.on.timer + diagnosticLabel: off.to.on.timer + duration: 30 + finishedAt: -999999999-01-01T00:00+18:00 + }] + }] + storage: class FRBCStorageDescription { + diagnosticLabel: battery + fillLevelLabel: SoC % + providesLeakageBehaviour: false + providesFillLevelTargetProfile: true + providesUsageForecast: false + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + status: class FRBCStorageStatus { + presentFillLevel: 37.7463951 + } + leakageBehaviour: null + } +}], leakageBehaviours=[class FRBCLeakageBehaviour { + validFrom: 1970-01-01T02:00+01:00 + elements: [class FRBCLeakageBehaviourElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + leakageRate: 0 + }] +}, class FRBCLeakageBehaviour { + validFrom: 1970-01-01T13:49+01:00 + elements: [class FRBCLeakageBehaviourElement { + fillLevelRange: class CommonNumberRange { + startOfRange: 0 + endOfRange: 100 + } + leakageRate: 0 + }] +}], usageForecasts=[class FRBCUsageForecast { + startTime: 1970-01-01T02:00+01:00 + elements: [class FRBCUsageForecastElement { + duration: 25980 + usageRateUpperLimit: 0 + usageRateUpper95PPR: 0 + usageRateUpper68PPR: 0 + usageRateExpected: 0 + usageRateLower68PPR: 0 + usageRateLower95PPR: 0 + usageRateLowerLimit: 0 + }] +}, class FRBCUsageForecast { + startTime: 1970-01-01T09:13+01:00 + elements: [class FRBCUsageForecastElement { + duration: 16560 + usageRateUpperLimit: null + usageRateUpper95PPR: null + usageRateUpper68PPR: null + usageRateExpected: -0.00... \ No newline at end of file diff --git a/flexmeasures_s2/scheduler/tests/test_frbc.py b/flexmeasures_s2/scheduler/tests/test_frbc.py new file mode 100644 index 0000000..84757e3 --- /dev/null +++ b/flexmeasures_s2/scheduler/tests/test_frbc.py @@ -0,0 +1,19 @@ +import pandas as pd + +from flexmeasures_s2.scheduler.schedulers import S2Scheduler +from flexmeasures_s2.scheduler.tests.joule_profile import get_JouleProfileTarget + + +def test_s2_frbc_scheduler(setup_frbc_asset): + scheduler = S2Scheduler( + setup_frbc_asset, + start=pd.Timestamp("2025-01-20T13:00+01"), + end=pd.Timestamp("2025-01-20T19:00+01"), + resolution=pd.Timedelta("PT1H"), + flex_model={}, # S2Scheduler fetches this from asset attributes + flex_context={ + "target-profile": get_JouleProfileTarget(), # todo: port target profile from Java test + }, + ) + results = scheduler.compute() + assert results == "todo: check for expected results" diff --git a/flexmeasures_s2/scheduler/tests/test_schemas.py b/flexmeasures_s2/scheduler/tests/test_schemas.py new file mode 100644 index 0000000..0f61a4d --- /dev/null +++ b/flexmeasures_s2/scheduler/tests/test_schemas.py @@ -0,0 +1,20 @@ +import pytest + +from flexmeasures_s2.scheduler.schemas import TNOTargetProfile + + +@pytest.mark.parametrize( + "target_profile", + [ + # todo: port test cases from Java test + {}, + { + "start": "2025-01-20T13:00+01", + "duration": "PT3H", + "values": [0, 1, 2], + }, + ], +) +def test_tno_profile_schema(target_profile: dict): + """Check whether the profile schema""" + TNOTargetProfile().load(target_profile) diff --git a/requirements/testi.txt b/requirements/testi.txt new file mode 100644 index 0000000..c481ebb --- /dev/null +++ b/requirements/testi.txt @@ -0,0 +1,25 @@ +test_frbc_device.py::test_connexxion_ev_bus_baseline_byd_225 +-------------------------------- live log call --------------------------------- +DEBUG root:test_frbc_device.py:189 id_on_operation_mode: 8c46733e-0c68-4175-85db-4e28ef11ecf9 +DEBUG root:test_frbc_device.py:209 id_off_operation_mode: bbc4e2c2-599b-411b-b987-858d148846a4 +DEBUG root:test_frbc_device.py:219 id_on_to_off_timer: bcafc296-929e-4973-b447-bc18f7d3ceb3 +DEBUG root:test_frbc_device.py:227 id_off_to_on_timer: 412f76c3-6bb1-4654-b9c2-d31e50492987 +DEBUG root:test_frbc_device.py:235 transition_id_from_on_to_off: 5b286161-3f7f-43f6-b019-b3c808c2d376 +DEBUG root:test_frbc_device.py:247 transition_id_from_off_to_on: 24e5c3d3-4d7f-4c7e-a598-7c096f27083b +DEBUG root:test_frbc_device.py:259 charge_actuator_id: 91b16e98-47b1-463a-b679-f5baf6ee8cb7 +DEBUG root:test_frbc_device.py:277 storage_status_id: 41f861c7-f9b7-46bb-94c0-1e131170bcbd +DEBUG root:test_frbc_device.py:305 leakage_id: 14dac666-eb11-4acb-a5ec-400a051cd1b4 +DEBUG root:test_frbc_device.py:324 usage_id: 351fb97b-67e7-4901-9fcd-485cef127b0c +DEBUG root:test_frbc_device.py:351 fill_level_id: 632d6d5f-efb9-48dd-b22e-f08db900d956 +DEBUG root:test_frbc_device.py:375 id_off_operation_mode_driving: b99c327d-8866-46be-9514-32851ccb50ef +DEBUG root:test_frbc_device.py:384 off_actuator_id_driving: 8e1dc01b-4b8b-426b-a98a-d9f0cabe3503 +DEBUG root:test_frbc_device.py:189 id_on_operation_mode: 74e2d319-6fe4-4a0f-add4-e2709f2e21e0 +DEBUG root:test_frbc_device.py:209 id_off_operation_mode: 4a7f2a5a-d519-4803-8719-7f3d22ade46c +DEBUG root:test_frbc_device.py:219 id_on_to_off_timer: 5c33e567-213a-4b2f-8575-808ea27b79f7 +DEBUG root:test_frbc_device.py:227 id_off_to_on_timer: 83962f5e-5e0f-4173-88de-2ec1e0eabcd0 +DEBUG root:test_frbc_device.py:235 transition_id_from_on_to_off: a65929ed-f7cd-4e7b-860d-9bfd68be9d6b +DEBUG root:test_frbc_device.py:247 transition_id_from_off_to_on: 5c3e73cc-1b8e-4c6c-87d6-1ba076daeacb +DEBUG root:test_frbc_device.py:259 charge_actuator_id: 3e728f7a-82c7-4a44-a1ea-7f8a220b8ed7 +DEBUG root:test_frbc_device.py:277 storage_status_id: 38abda5b-6774-439d-a319-2a50671595bb +DEBUG root:test_frbc_device.py:305 leakage_id: 2ba72dcf-546d-45a2-9c87-1492437dd2c9 +DEBUG root:test_frbc_device.py:324 usage_id: d3132d10-e226-4763-adae-bd9492f8251d \ No newline at end of file