From 1573a2e5e474b92e268fcf771a567574c5ee414d Mon Sep 17 00:00:00 2001
From: mayel First,
AbsintheClient.Helpers
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/AbsintheClient.html b/AbsintheClient.html
index 61719b7c898..d3b841716a4 100644
--- a/AbsintheClient.html
+++ b/AbsintheClient.html
@@ -5,10 +5,10 @@
-
+
-
AbsintheClient behaviour
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
@@ -140,29 +140,29 @@
Example
use AbsintheClient
, passing your schema
and
-notifying Absinthe to operate in internal
mode:defmodule MyAppWeb.UserController do
+notifying Absinthe to operate in
internal
mode:
defmodule MyAppWeb.UserController do
use MyAppWeb, :controller
- use AbsintheClient, schema: MyAppWeb.Schema, action: [mode: :internal]
+ use AbsintheClient, schema: MyAppWeb.Schema, action: [mode: :internal]
# ... actions
-end
For each action you want Absinthe to process, provide a GraphQL document using +end
For each action you want Absinthe to process, provide a GraphQL document using
the @graphql
module attribute (before the action):
@graphql """
query ($filter: UserFilter) {
users(filter: $filter, limit: 10)
}
"""
-def index(conn_or_socket, %{data: data}) do
+def index(conn_or_socket, %{data: data}) do
render conn_or_socket, "index.html", data
-end
The params for the action will be intercepted by the +end
The params for the action will be intercepted by the
AbsintheClient.Action
plug, and used as variables for
the GraphQL document you've specified.
For instance, given a definition for a :user_filter
input object
-type like this:
input_object :user_filter do
+type like this:input_object :user_filter do
field :name_matches, :string
field :age_above, :integer
field :age_below, :integer
-end
And a query that looks like this (assuming you have the normal
-Plug.Parsers
configuration for param parsing):
?filter[name_matches]=joe&filter[age_above]=42
Then Absinthe will receive variable definitions of:
%{"filter" => %{"name_matches" => "joe", "age_above" => 42}}
(For how the string "42"
was converted into 42
, see cast_param/3
).
The params on the conn_or_socket
will then be replaced by the result of the
+
end
And a query that looks like this (assuming you have the normal
+Plug.Parsers
configuration for param parsing):
?filter[name_matches]=joe&filter[age_above]=42
Then Absinthe will receive variable definitions of:
%{"filter" => %{"name_matches" => "joe", "age_above" => 42}}
(For how the string "42"
was converted into 42
, see cast_param/3
).
The params on the conn_or_socket
will then be replaced by the result of the
execution by Absinthe. The action function can then match against
that result to respond correctly to the user:
It's up to you to handle the three possible results:
:data
but no :errors
, everything went perfectly.:errors
but no :data
, a validation error occurred and the document could not be
executed.:data
and :errors
, partial data is available but some fields reported errors
@@ -195,9 +195,9 @@ The template can then use users
as needed:
<ul>
- <%= for user <- @users do %>
- <li><%= link user.full_name, to: user_path(@conn_or_socket, :show, user) %></li>
- <% end %>
+ <%= for user <- @users do %>
+ <li><%= link user.full_name, to: user_path(@conn_or_socket, :show, user) %></li>
+ <% end %>
</ul>
This is useful for Phoenix.HTML
helper functions that expect
structs with specific fields (especially form_for
).
One way to think of this change is that, for objects, no selection set is equivalent to a "splat" operator (except, of course, even diff --git a/ActivityPub.Actor.html b/ActivityPub.Actor.html index 7c4a0341501..3e1edff2f21 100644 --- a/ActivityPub.Actor.html +++ b/ActivityPub.Actor.html @@ -5,10 +5,10 @@ - + -
Perform a DELETE request.
See request/1
or request/2
for options definition.
delete("/users")
-delete("/users", query: [scope: "admin"])
-delete(client, "/users")
-delete(client, "/users", query: [scope: "admin"])
-delete(client, "/users", body: %{name: "Jon"})
+Perform a DELETE request.
See request/1
or request/2
for options definition.
delete("/users")
+delete("/users", query: [scope: "admin"])
+delete(client, "/users")
+delete(client, "/users", query: [scope: "admin"])
+delete(client, "/users", body: %{name: "Jon"})
Perform a DELETE request.
See request!/1
or request!/2
for options definition.
delete!("/users")
-delete!("/users", query: [scope: "admin"])
-delete!(client, "/users")
-delete!(client, "/users", query: [scope: "admin"])
-delete!(client, "/users", body: %{name: "Jon"})
+Perform a DELETE request.
See request!/1
or request!/2
for options definition.
delete!("/users")
+delete!("/users", query: [scope: "admin"])
+delete!(client, "/users")
+delete!(client, "/users", query: [scope: "admin"])
+delete!(client, "/users", body: %{name: "Jon"})
Perform a GET request.
See request/1
or request/2
for options definition.
get("/users")
-get("/users", query: [scope: "admin"])
-get(client, "/users")
-get(client, "/users", query: [scope: "admin"])
-get(client, "/users", body: %{name: "Jon"})
+Perform a GET request.
See request/1
or request/2
for options definition.
get("/users")
+get("/users", query: [scope: "admin"])
+get(client, "/users")
+get(client, "/users", query: [scope: "admin"])
+get(client, "/users", body: %{name: "Jon"})
Perform a GET request.
See request!/1
or request!/2
for options definition.
get!("/users")
-get!("/users", query: [scope: "admin"])
-get!(client, "/users")
-get!(client, "/users", query: [scope: "admin"])
-get!(client, "/users", body: %{name: "Jon"})
+Perform a GET request.
See request!/1
or request!/2
for options definition.
get!("/users")
+get!("/users", query: [scope: "admin"])
+get!(client, "/users")
+get!(client, "/users", query: [scope: "admin"])
+get!(client, "/users", body: %{name: "Jon"})
Perform a HEAD request.
See request/1
or request/2
for options definition.
head("/users")
-head("/users", query: [scope: "admin"])
-head(client, "/users")
-head(client, "/users", query: [scope: "admin"])
-head(client, "/users", body: %{name: "Jon"})
+Perform a HEAD request.
See request/1
or request/2
for options definition.
head("/users")
+head("/users", query: [scope: "admin"])
+head(client, "/users")
+head(client, "/users", query: [scope: "admin"])
+head(client, "/users", body: %{name: "Jon"})
Perform a HEAD request.
See request!/1
or request!/2
for options definition.
head!("/users")
-head!("/users", query: [scope: "admin"])
-head!(client, "/users")
-head!(client, "/users", query: [scope: "admin"])
-head!(client, "/users", body: %{name: "Jon"})
+Perform a HEAD request.
See request!/1
or request!/2
for options definition.
head!("/users")
+head!("/users", query: [scope: "admin"])
+head!(client, "/users")
+head!(client, "/users", query: [scope: "admin"])
+head!(client, "/users", body: %{name: "Jon"})
Perform a OPTIONS request.
See request/1
or request/2
for options definition.
options("/users")
-options("/users", query: [scope: "admin"])
-options(client, "/users")
-options(client, "/users", query: [scope: "admin"])
-options(client, "/users", body: %{name: "Jon"})
+Perform a OPTIONS request.
See request/1
or request/2
for options definition.
options("/users")
+options("/users", query: [scope: "admin"])
+options(client, "/users")
+options(client, "/users", query: [scope: "admin"])
+options(client, "/users", body: %{name: "Jon"})
Perform a OPTIONS request.
See request!/1
or request!/2
for options definition.
options!("/users")
-options!("/users", query: [scope: "admin"])
-options!(client, "/users")
-options!(client, "/users", query: [scope: "admin"])
-options!(client, "/users", body: %{name: "Jon"})
+Perform a OPTIONS request.
See request!/1
or request!/2
for options definition.
options!("/users")
+options!("/users", query: [scope: "admin"])
+options!(client, "/users")
+options!(client, "/users", query: [scope: "admin"])
+options!(client, "/users", body: %{name: "Jon"})
Perform a PATCH request.
See request/1
or request/2
for options definition.
patch("/users", %{name: "Jon"})
-patch("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch(client, "/users", %{name: "Jon"})
-patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PATCH request.
See request/1
or request/2
for options definition.
patch("/users", %{name: "Jon"})
+patch("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch(client, "/users", %{name: "Jon"})
+patch(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a PATCH request.
See request!/1
or request!/2
for options definition.
patch!("/users", %{name: "Jon"})
-patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
-patch!(client, "/users", %{name: "Jon"})
-patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PATCH request.
See request!/1
or request!/2
for options definition.
patch!("/users", %{name: "Jon"})
+patch!("/users", %{name: "Jon"}, query: [scope: "admin"])
+patch!(client, "/users", %{name: "Jon"})
+patch!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a POST request.
See request/1
or request/2
for options definition.
post("/users", %{name: "Jon"})
-post("/users", %{name: "Jon"}, query: [scope: "admin"])
-post(client, "/users", %{name: "Jon"})
-post(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a POST request.
See request/1
or request/2
for options definition.
post("/users", %{name: "Jon"})
+post("/users", %{name: "Jon"}, query: [scope: "admin"])
+post(client, "/users", %{name: "Jon"})
+post(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a POST request.
See request!/1
or request!/2
for options definition.
post!("/users", %{name: "Jon"})
-post!("/users", %{name: "Jon"}, query: [scope: "admin"])
-post!(client, "/users", %{name: "Jon"})
-post!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a POST request.
See request!/1
or request!/2
for options definition.
post!("/users", %{name: "Jon"})
+post!("/users", %{name: "Jon"}, query: [scope: "admin"])
+post!(client, "/users", %{name: "Jon"})
+post!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a PUT request.
See request/1
or request/2
for options definition.
put("/users", %{name: "Jon"})
-put("/users", %{name: "Jon"}, query: [scope: "admin"])
-put(client, "/users", %{name: "Jon"})
-put(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PUT request.
See request/1
or request/2
for options definition.
put("/users", %{name: "Jon"})
+put("/users", %{name: "Jon"}, query: [scope: "admin"])
+put(client, "/users", %{name: "Jon"})
+put(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
Perform a PUT request.
See request!/1
or request!/2
for options definition.
put!("/users", %{name: "Jon"})
-put!("/users", %{name: "Jon"}, query: [scope: "admin"])
-put!(client, "/users", %{name: "Jon"})
-put!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
+Perform a PUT request.
See request!/1
or request!/2
for options definition.
put!("/users", %{name: "Jon"})
+put!("/users", %{name: "Jon"}, query: [scope: "admin"])
+put!(client, "/users", %{name: "Jon"})
+put!(client, "/users", %{name: "Jon"}, query: [scope: "admin"])
ExampleApi.request(method: :get, url: "/users/path")
+ExampleApi.request(method: :get, url: "/users/path")
# use shortcut methods
-ExampleApi.get("/users/1")
-ExampleApi.post(client, "/users", %{name: "Jon"})
+ExampleApi.get("/users/1")
+ExampleApi.post(client, "/users", %{name: "Jon"})
Perform a TRACE request.
See request/1
or request/2
for options definition.
trace("/users")
-trace("/users", query: [scope: "admin"])
-trace(client, "/users")
-trace(client, "/users", query: [scope: "admin"])
-trace(client, "/users", body: %{name: "Jon"})
+Perform a TRACE request.
See request/1
or request/2
for options definition.
trace("/users")
+trace("/users", query: [scope: "admin"])
+trace(client, "/users")
+trace(client, "/users", query: [scope: "admin"])
+trace(client, "/users", body: %{name: "Jon"})
Perform a TRACE request.
See request!/1
or request!/2
for options definition.
trace!("/users")
-trace!("/users", query: [scope: "admin"])
-trace!(client, "/users")
-trace!(client, "/users", query: [scope: "admin"])
-trace!(client, "/users", body: %{name: "Jon"})
+Perform a TRACE request.
See request!/1
or request!/2
for options definition.
trace!("/users")
+trace!("/users", query: [scope: "admin"])
+trace!(client, "/users")
+trace!(client, "/users", query: [scope: "admin"])
+trace!(client, "/users", body: %{name: "Jon"})
iex> document_for(:user, 2)
+iex> document_for(:user, 2)
```
name
age
-posts {
+posts {
title
subtitle
-}
-comments {
+}
+comments {
body
-}
+}
```
diff --git a/Bonfire.API.GraphQL.ResolveField.html b/Bonfire.API.GraphQL.ResolveField.html
index 60a91740777..b94a36e1738 100644
--- a/Bonfire.API.GraphQL.ResolveField.html
+++ b/Bonfire.API.GraphQL.ResolveField.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.ResolveField — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.ResolveField — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.ResolveField
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.ResolveFields.html b/Bonfire.API.GraphQL.ResolveFields.html
index ff07362fff2..6179be1f7cd 100644
--- a/Bonfire.API.GraphQL.ResolveFields.html
+++ b/Bonfire.API.GraphQL.ResolveFields.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.ResolveFields — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.ResolveFields — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.ResolveFields
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.ResolvePage.html b/Bonfire.API.GraphQL.ResolvePage.html
index 584f18327fc..7c5f5ed5512 100644
--- a/Bonfire.API.GraphQL.ResolvePage.html
+++ b/Bonfire.API.GraphQL.ResolvePage.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.ResolvePage — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.ResolvePage — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.ResolvePage
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.ResolvePages.html b/Bonfire.API.GraphQL.ResolvePages.html
index 68fa6f780ce..0222d85f8a6 100644
--- a/Bonfire.API.GraphQL.ResolvePages.html
+++ b/Bonfire.API.GraphQL.ResolvePages.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.ResolvePages — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.ResolvePages — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.ResolvePages
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.ResolveRootPage.html b/Bonfire.API.GraphQL.ResolveRootPage.html
index 7a4b7e96f0b..d49dad1cbd8 100644
--- a/Bonfire.API.GraphQL.ResolveRootPage.html
+++ b/Bonfire.API.GraphQL.ResolveRootPage.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.ResolveRootPage — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.ResolveRootPage — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.ResolveRootPage
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.RestAdapter.EndpointConfig.html b/Bonfire.API.GraphQL.RestAdapter.EndpointConfig.html
index 9dfb68efe5c..a10c4ea73a6 100644
--- a/Bonfire.API.GraphQL.RestAdapter.EndpointConfig.html
+++ b/Bonfire.API.GraphQL.RestAdapter.EndpointConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.RestAdapter.EndpointConfig — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.RestAdapter.EndpointConfig — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.RestAdapter.EndpointConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.RestAdapter.html b/Bonfire.API.GraphQL.RestAdapter.html
index 50ef22c4c6a..b5648e8882f 100644
--- a/Bonfire.API.GraphQL.RestAdapter.html
+++ b/Bonfire.API.GraphQL.RestAdapter.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.RestAdapter — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.RestAdapter — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.RestAdapter
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.Router.html b/Bonfire.API.GraphQL.Router.html
index 95d09eb47db..de72399a676 100644
--- a/Bonfire.API.GraphQL.Router.html
+++ b/Bonfire.API.GraphQL.Router.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.Router — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.Router — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.Router
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.SchemaPipelines.html b/Bonfire.API.GraphQL.SchemaPipelines.html
index 467cf5acc1c..0b47d8030d9 100644
--- a/Bonfire.API.GraphQL.SchemaPipelines.html
+++ b/Bonfire.API.GraphQL.SchemaPipelines.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.SchemaPipelines — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.SchemaPipelines — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.SchemaPipelines
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.SchemaUtils.html b/Bonfire.API.GraphQL.SchemaUtils.html
index fe0aecccee7..c0581c8caf1 100644
--- a/Bonfire.API.GraphQL.SchemaUtils.html
+++ b/Bonfire.API.GraphQL.SchemaUtils.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.SchemaUtils — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.SchemaUtils — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.SchemaUtils
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.Test.GraphQLAssertions.html b/Bonfire.API.GraphQL.Test.GraphQLAssertions.html
index 7184936d8bc..981c71d1f82 100644
--- a/Bonfire.API.GraphQL.Test.GraphQLAssertions.html
+++ b/Bonfire.API.GraphQL.Test.GraphQLAssertions.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.Test.GraphQLAssertions — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.Test.GraphQLAssertions — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.Test.GraphQLAssertions
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.UserSocket.html b/Bonfire.API.GraphQL.UserSocket.html
index a7104c0beff..54f5670b746 100644
--- a/Bonfire.API.GraphQL.UserSocket.html
+++ b/Bonfire.API.GraphQL.UserSocket.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL.UserSocket — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL.UserSocket — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL.UserSocket
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.API.GraphQL.html b/Bonfire.API.GraphQL.html
index c14c49d8f38..36b2e06cd17 100644
--- a/Bonfire.API.GraphQL.html
+++ b/Bonfire.API.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.API.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.API.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.API.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Classify.Categories.html b/Bonfire.Classify.Categories.html
index f987e3ad7ea..95de4a3cda9 100644
--- a/Bonfire.Classify.Categories.html
+++ b/Bonfire.Classify.Categories.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.Categories — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Classify.Categories — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.Categories
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Classify.Category.Queries.html b/Bonfire.Classify.Category.Queries.html
index 183cb164d41..c75c3077a03 100644
--- a/Bonfire.Classify.Category.Queries.html
+++ b/Bonfire.Classify.Category.Queries.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.Category.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Classify.Category.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.Category.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Classify.Category.html b/Bonfire.Classify.Category.html
index 41bb5737d83..f50ef933eec 100644
--- a/Bonfire.Classify.Category.html
+++ b/Bonfire.Classify.Category.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.Category — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Classify.Category — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.Category
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Classify.LiveHandler.html b/Bonfire.Classify.LiveHandler.html
index 2b52784b49b..51d5df7d0f1 100644
--- a/Bonfire.Classify.LiveHandler.html
+++ b/Bonfire.Classify.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Classify.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Classify.RuntimeConfig.html b/Bonfire.Classify.RuntimeConfig.html
index fc561534ef6..c1580767d6a 100644
--- a/Bonfire.Classify.RuntimeConfig.html
+++ b/Bonfire.Classify.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Classify.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Classify.Simulate.html b/Bonfire.Classify.Simulate.html
index 83b52195396..928f869bc9a 100644
--- a/Bonfire.Classify.Simulate.html
+++ b/Bonfire.Classify.Simulate.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Classify.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.Simulate
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Classify.Tree.html b/Bonfire.Classify.Tree.html
index 38982571c07..851f18dab6c 100644
--- a/Bonfire.Classify.Tree.html
+++ b/Bonfire.Classify.Tree.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify.Tree — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Classify.Tree — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify.Tree
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Classify.html b/Bonfire.Classify.html
index 9f77c846687..c49c958b509 100644
--- a/Bonfire.Classify.html
+++ b/Bonfire.Classify.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Classify — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Classify — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Classify
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.Acts.AttachMedia.html b/Bonfire.Files.Acts.AttachMedia.html
index 28d1cc0ea74..bd6d3e2c41c 100644
--- a/Bonfire.Files.Acts.AttachMedia.html
+++ b/Bonfire.Files.Acts.AttachMedia.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Acts.AttachMedia — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.Acts.AttachMedia — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Acts.AttachMedia
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.Acts.URLPreviews.html b/Bonfire.Files.Acts.URLPreviews.html
index 065f2e73528..be7a2bbe8d7 100644
--- a/Bonfire.Files.Acts.URLPreviews.html
+++ b/Bonfire.Files.Acts.URLPreviews.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Acts.URLPreviews — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.Acts.URLPreviews — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Acts.URLPreviews
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.BannerUploader.html b/Bonfire.Files.BannerUploader.html
index 7c407693e38..79b561aa24f 100644
--- a/Bonfire.Files.BannerUploader.html
+++ b/Bonfire.Files.BannerUploader.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.BannerUploader — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.BannerUploader — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.BannerUploader
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.Blurred.html b/Bonfire.Files.Blurred.html
index 0f40635672f..c0b7bead64c 100644
--- a/Bonfire.Files.Blurred.html
+++ b/Bonfire.Files.Blurred.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Blurred — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.Blurred — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Blurred
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.CapsuleIntegration.Attacher.html b/Bonfire.Files.CapsuleIntegration.Attacher.html
index 7a9e66165e8..669367644f8 100644
--- a/Bonfire.Files.CapsuleIntegration.Attacher.html
+++ b/Bonfire.Files.CapsuleIntegration.Attacher.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.CapsuleIntegration.Attacher — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.CapsuleIntegration.Attacher — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.CapsuleIntegration.Attacher
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.DOI.html b/Bonfire.Files.DOI.html
index 977c57e0bd1..da460b92cbc 100644
--- a/Bonfire.Files.DOI.html
+++ b/Bonfire.Files.DOI.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.DOI — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.DOI — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.DOI
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.Definition.html b/Bonfire.Files.Definition.html
index 1fd5befb15b..14a138237f6 100644
--- a/Bonfire.Files.Definition.html
+++ b/Bonfire.Files.Definition.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Definition — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.Definition — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Definition behaviour
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.DocumentUploader.html b/Bonfire.Files.DocumentUploader.html
index 3abbdcf4515..eaa75956dbf 100644
--- a/Bonfire.Files.DocumentUploader.html
+++ b/Bonfire.Files.DocumentUploader.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.DocumentUploader — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.DocumentUploader — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.DocumentUploader
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.EmojiUploader.html b/Bonfire.Files.EmojiUploader.html
index 1e4d57eea79..24caf230d43 100644
--- a/Bonfire.Files.EmojiUploader.html
+++ b/Bonfire.Files.EmojiUploader.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.EmojiUploader — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.EmojiUploader — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.EmojiUploader
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.FaviconStore.html b/Bonfire.Files.FaviconStore.html
index 28072617b08..65e21263b25 100644
--- a/Bonfire.Files.FaviconStore.html
+++ b/Bonfire.Files.FaviconStore.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.FaviconStore — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.FaviconStore — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.FaviconStore
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.FileDenied.html b/Bonfire.Files.FileDenied.html
index cf4cf5b037a..3ec82dad4ac 100644
--- a/Bonfire.Files.FileDenied.html
+++ b/Bonfire.Files.FileDenied.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.FileDenied — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.FileDenied — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.FileDenied
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.IconUploader.html b/Bonfire.Files.IconUploader.html
index be9ae7608aa..7ed74321376 100644
--- a/Bonfire.Files.IconUploader.html
+++ b/Bonfire.Files.IconUploader.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.IconUploader — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.IconUploader — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.IconUploader
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.Image.Edit.html b/Bonfire.Files.Image.Edit.html
index fe746207f47..85017ec12f9 100644
--- a/Bonfire.Files.Image.Edit.html
+++ b/Bonfire.Files.Image.Edit.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Image.Edit — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.Image.Edit — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Image.Edit
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.ImageUploader.html b/Bonfire.Files.ImageUploader.html
index b0c9a43a0a2..eb65f7b170c 100644
--- a/Bonfire.Files.ImageUploader.html
+++ b/Bonfire.Files.ImageUploader.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.ImageUploader — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.ImageUploader — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.ImageUploader
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.LiveHandler.html b/Bonfire.Files.LiveHandler.html
index 6ef5fcc1440..514819458f7 100644
--- a/Bonfire.Files.LiveHandler.html
+++ b/Bonfire.Files.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.Media.Queries.html b/Bonfire.Files.Media.Queries.html
index 12ff35262a9..f4d77941048 100644
--- a/Bonfire.Files.Media.Queries.html
+++ b/Bonfire.Files.Media.Queries.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Media.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.Media.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Media.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.Media.html b/Bonfire.Files.Media.html
index a27f8c9dd7c..fb01dda076f 100644
--- a/Bonfire.Files.Media.html
+++ b/Bonfire.Files.Media.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Media — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.Media — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Media
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.Prepare.html b/Bonfire.Files.Prepare.html
index 359de534cb1..b3037caee99 100644
--- a/Bonfire.Files.Prepare.html
+++ b/Bonfire.Files.Prepare.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Prepare — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.Prepare — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.Prepare
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Files.ResponsiveImage.html b/Bonfire.Files.ResponsiveImage.html
index 9b27f2b0d5f..a73b1d9a673 100644
--- a/Bonfire.Files.ResponsiveImage.html
+++ b/Bonfire.Files.ResponsiveImage.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.ResponsiveImage — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Files.ResponsiveImage — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Files.ResponsiveImage
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
@@ -137,12 +137,12 @@
~H(<img src={compile_src("input.jpg", 300)} />)
or
-~H(<img srcset={compile_srcset("input.jpg", [300, 600, 900])} src={...} sizes="50vw" />)
+~H(<img srcset={compile_srcset("input.jpg", [300, 600, 900])} src={...} sizes="50vw" />)
or for paths only known at runtime:
~H(<img src={src(my_image, 300)} />)
or
-~H(<img srcset={srcset(my_image, [300, 600, 900])} src={...} sizes="50vw" />)
+~H(<img srcset={srcset(my_image, [300, 600, 900])} src={...} sizes="50vw" />)
diff --git a/Bonfire.Files.Routes.html b/Bonfire.Files.Routes.html
index dc4a086ed00..fef1d83f964 100644
--- a/Bonfire.Files.Routes.html
+++ b/Bonfire.Files.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Files.Definition
is an extension of Waffle.Definition
,
however the allowed_media_types/0
and max_file_size/0
callback are added,
with which you need to define what media types are accepted for these types of uploads.
-(You can also return :all
to accept all media types).To use the uploader:
iex> {:ok, media} = Bonfire.Files.upload(MyUploader, creator_or_context, %{path: "./150.png"})
+(You can also return :all
to accept all media types).To use the uploader:
iex> {:ok, media} = Bonfire.Files.upload(MyUploader, creator_or_context, %{path: "./150.png"})
iex> media.media_type
"image/png"
-iex> Bonfire.Files.remote_url(MyUploader, media)
+iex> Bonfire.Files.remote_url(MyUploader, media)
"/uploads/my/01F3AY6JV30G06BY4DR9BTW5EH"
diff --git a/Bonfire.Geolocate.Geocode.html b/Bonfire.Geolocate.Geocode.html
index c30f242fda8..2bcae2c20df 100644
--- a/Bonfire.Geolocate.Geocode.html
+++ b/Bonfire.Geolocate.Geocode.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Geocode — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Geolocate.Geocode — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Geocode
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Geolocate.Geolocation.html b/Bonfire.Geolocate.Geolocation.html
index 9a0f0cf6599..f26b9cb00f5 100644
--- a/Bonfire.Geolocate.Geolocation.html
+++ b/Bonfire.Geolocate.Geolocation.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Geolocation — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Geolocate.Geolocation — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Geolocation
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Geolocate.Geolocations.html b/Bonfire.Geolocate.Geolocations.html
index 70ae4a35957..0d7664f8dd2 100644
--- a/Bonfire.Geolocate.Geolocations.html
+++ b/Bonfire.Geolocate.Geolocations.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Geolocations — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Geolocate.Geolocations — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Geolocations
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Geolocate.GraphQL.Hydration.html b/Bonfire.Geolocate.GraphQL.Hydration.html
index 315d5190808..ae3375dda3a 100644
--- a/Bonfire.Geolocate.GraphQL.Hydration.html
+++ b/Bonfire.Geolocate.GraphQL.Hydration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.GraphQL.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Geolocate.GraphQL.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.GraphQL.Hydration
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Geolocate.LiveHandler.html b/Bonfire.Geolocate.LiveHandler.html
index 0157edde492..a8aeec4d612 100644
--- a/Bonfire.Geolocate.LiveHandler.html
+++ b/Bonfire.Geolocate.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Geolocate.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Geolocate.Places.html b/Bonfire.Geolocate.Places.html
index 4ea77d8d003..f3dd82f018c 100644
--- a/Bonfire.Geolocate.Places.html
+++ b/Bonfire.Geolocate.Places.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Places — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Geolocate.Places — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Places
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Geolocate.Queries.html b/Bonfire.Geolocate.Queries.html
index ca8b6f99508..e0fa0bc339c 100644
--- a/Bonfire.Geolocate.Queries.html
+++ b/Bonfire.Geolocate.Queries.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Geolocate.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Geolocate.RuntimeConfig.html b/Bonfire.Geolocate.RuntimeConfig.html
index 2a41fbec1b3..ebbe500a4b3 100644
--- a/Bonfire.Geolocate.RuntimeConfig.html
+++ b/Bonfire.Geolocate.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Geolocate.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Geolocate.Simulate.html b/Bonfire.Geolocate.Simulate.html
index 9001cf9da84..5e383a68ae6 100644
--- a/Bonfire.Geolocate.Simulate.html
+++ b/Bonfire.Geolocate.Simulate.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Geolocate.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Simulate
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Geolocate.Web.Routes.html b/Bonfire.Geolocate.Web.Routes.html
index 66f55d75dae..ad62d9e1dec 100644
--- a/Bonfire.Geolocate.Web.Routes.html
+++ b/Bonfire.Geolocate.Web.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Geolocate.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate.Web.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Geolocate.html b/Bonfire.Geolocate.html
index 17fa33dc0a6..3b865e73ccb 100644
--- a/Bonfire.Geolocate.html
+++ b/Bonfire.Geolocate.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Geolocate — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Geolocate — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Geolocate
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Localise.html b/Bonfire.Localise.html
index 0a203f0dcab..e3fb189507b 100644
--- a/Bonfire.Localise.html
+++ b/Bonfire.Localise.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Localise — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Localise — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Localise
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.OpenScience.APIs.html b/Bonfire.OpenScience.APIs.html
index 94e15a3dfbf..84276fbe7f0 100644
--- a/Bonfire.OpenScience.APIs.html
+++ b/Bonfire.OpenScience.APIs.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.OpenScience.APIs — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.OpenScience.APIs — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.OpenScience.APIs
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.OpenScience.Fake.html b/Bonfire.OpenScience.Fake.html
index 33a7d27a764..d08f3e8047c 100644
--- a/Bonfire.OpenScience.Fake.html
+++ b/Bonfire.OpenScience.Fake.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.OpenScience.Fake — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.OpenScience.Fake — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.OpenScience.Fake
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.OpenScience.Integration.html b/Bonfire.OpenScience.Integration.html
index 1ac1e569a54..d6e3e3ccceb 100644
--- a/Bonfire.OpenScience.Integration.html
+++ b/Bonfire.OpenScience.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.OpenScience.Integration — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.OpenScience.Integration — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.OpenScience.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.OpenScience.RuntimeConfig.html b/Bonfire.OpenScience.RuntimeConfig.html
index 1993b42d73d..6852a9c336b 100644
--- a/Bonfire.OpenScience.RuntimeConfig.html
+++ b/Bonfire.OpenScience.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.OpenScience.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.OpenScience.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.OpenScience.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.OpenScience.Web.Routes.html b/Bonfire.OpenScience.Web.Routes.html
index c9f5b06be3b..0b7ee86d72f 100644
--- a/Bonfire.OpenScience.Web.Routes.html
+++ b/Bonfire.OpenScience.Web.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.OpenScience.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.OpenScience.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.OpenScience.Web.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Quantify.Hydration.html b/Bonfire.Quantify.Hydration.html
index c5409052820..14895366f16 100644
--- a/Bonfire.Quantify.Hydration.html
+++ b/Bonfire.Quantify.Hydration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Quantify.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Hydration
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Quantify.Measure.html b/Bonfire.Quantify.Measure.html
index 9ffdd6f7da9..0155042cf8a 100644
--- a/Bonfire.Quantify.Measure.html
+++ b/Bonfire.Quantify.Measure.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Measure — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Quantify.Measure — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Measure
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Quantify.Measures.Queries.html b/Bonfire.Quantify.Measures.Queries.html
index cfee575ca52..b801aa65e1a 100644
--- a/Bonfire.Quantify.Measures.Queries.html
+++ b/Bonfire.Quantify.Measures.Queries.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Measures.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Quantify.Measures.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Measures.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Quantify.Measures.html b/Bonfire.Quantify.Measures.html
index 2667afd876d..2745199e16c 100644
--- a/Bonfire.Quantify.Measures.html
+++ b/Bonfire.Quantify.Measures.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Measures — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Quantify.Measures — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Measures
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Quantify.Simulate.html b/Bonfire.Quantify.Simulate.html
index df3f379073a..4f54b5f3b37 100644
--- a/Bonfire.Quantify.Simulate.html
+++ b/Bonfire.Quantify.Simulate.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Quantify.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Simulate
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Quantify.Unit.html b/Bonfire.Quantify.Unit.html
index 5c3deb78087..779125de0d3 100644
--- a/Bonfire.Quantify.Unit.html
+++ b/Bonfire.Quantify.Unit.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Unit — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Quantify.Unit — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Unit
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Quantify.Units.Queries.html b/Bonfire.Quantify.Units.Queries.html
index a934ba48eb5..c0371d4890f 100644
--- a/Bonfire.Quantify.Units.Queries.html
+++ b/Bonfire.Quantify.Units.Queries.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Units.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Quantify.Units.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Units.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Quantify.Units.html b/Bonfire.Quantify.Units.html
index ce14635ae87..5c84ff00e61 100644
--- a/Bonfire.Quantify.Units.html
+++ b/Bonfire.Quantify.Units.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify.Units — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Quantify.Units — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify.Units
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Quantify.html b/Bonfire.Quantify.html
index b5abfae371c..38903656bcb 100644
--- a/Bonfire.Quantify.html
+++ b/Bonfire.Quantify.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Quantify — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Quantify — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Quantify
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.RuntimeConfig.html b/Bonfire.RuntimeConfig.html
index 8d237f33faf..f9261513b0c 100644
--- a/Bonfire.RuntimeConfig.html
+++ b/Bonfire.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Seeder.html b/Bonfire.Seeder.html
index 3054e46f691..3596a264731 100644
--- a/Bonfire.Seeder.html
+++ b/Bonfire.Seeder.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Seeder — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Seeder — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Seeder
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Telemetry.Metrics.html b/Bonfire.Telemetry.Metrics.html
index 7185542ef3e..2c5babaf6ef 100644
--- a/Bonfire.Telemetry.Metrics.html
+++ b/Bonfire.Telemetry.Metrics.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Telemetry.Metrics — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Telemetry.Metrics — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Telemetry.Metrics
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Telemetry.Storage.html b/Bonfire.Telemetry.Storage.html
index 14d4147bae3..bb9e0d35cde 100644
--- a/Bonfire.Telemetry.Storage.html
+++ b/Bonfire.Telemetry.Storage.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Telemetry.Storage — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Telemetry.Storage — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Telemetry.Storage
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Telemetry.SystemMonitor.html b/Bonfire.Telemetry.SystemMonitor.html
index 2a1b641bb46..521b0def33b 100644
--- a/Bonfire.Telemetry.SystemMonitor.html
+++ b/Bonfire.Telemetry.SystemMonitor.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Telemetry.SystemMonitor — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Telemetry.SystemMonitor — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Telemetry.SystemMonitor
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Telemetry.html b/Bonfire.Telemetry.html
index 68080d85b8a..c4b650544e8 100644
--- a/Bonfire.Telemetry.html
+++ b/Bonfire.Telemetry.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Telemetry — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Telemetry — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Telemetry
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Testing.InsecurePW.html b/Bonfire.Testing.InsecurePW.html
index 1d87f9717f9..94423d02d66 100644
--- a/Bonfire.Testing.InsecurePW.html
+++ b/Bonfire.Testing.InsecurePW.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Testing.InsecurePW — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Testing.InsecurePW — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Testing.InsecurePW
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Testing.html b/Bonfire.Testing.html
index 9daaf7fe587..3348d6de5e7 100644
--- a/Bonfire.Testing.html
+++ b/Bonfire.Testing.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Testing — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Testing — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Testing
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Coordination.FeedLive.GraphQL.html b/Bonfire.UI.Coordination.FeedLive.GraphQL.html
index 14fd30ae03e..5e28e330440 100644
--- a/Bonfire.UI.Coordination.FeedLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.FeedLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.FeedLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Coordination.FeedLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.FeedLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Coordination.Integration.html b/Bonfire.UI.Coordination.Integration.html
index e2be5806196..61c7e19e422 100644
--- a/Bonfire.UI.Coordination.Integration.html
+++ b/Bonfire.UI.Coordination.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.Integration — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Coordination.Integration — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Coordination.ProcessLive.GraphQL.html b/Bonfire.UI.Coordination.ProcessLive.GraphQL.html
index e3cf605a347..b6d805e4eff 100644
--- a/Bonfire.UI.Coordination.ProcessLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.ProcessLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.ProcessLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Coordination.ProcessLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.ProcessLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Coordination.ProcessesLive.GraphQL.html b/Bonfire.UI.Coordination.ProcessesLive.GraphQL.html
index a94d8a7b4db..4731c4487a1 100644
--- a/Bonfire.UI.Coordination.ProcessesLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.ProcessesLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.ProcessesLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Coordination.ProcessesLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.ProcessesLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Coordination.Routes.html b/Bonfire.UI.Coordination.Routes.html
index 294785e1e10..e2d274dfc2d 100644
--- a/Bonfire.UI.Coordination.Routes.html
+++ b/Bonfire.UI.Coordination.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.Routes — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Coordination.Routes — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Coordination.TaskLive.GraphQL.html b/Bonfire.UI.Coordination.TaskLive.GraphQL.html
index f929847168e..4eadef91704 100644
--- a/Bonfire.UI.Coordination.TaskLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.TaskLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.TaskLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Coordination.TaskLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.TaskLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Coordination.TasksLive.GraphQL.html b/Bonfire.UI.Coordination.TasksLive.GraphQL.html
index 9bfd674b900..b232c2013df 100644
--- a/Bonfire.UI.Coordination.TasksLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.TasksLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.TasksLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Coordination.TasksLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.TasksLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Coordination.TodoLive.GraphQL.html b/Bonfire.UI.Coordination.TodoLive.GraphQL.html
index 019924a362f..ec7da990ca5 100644
--- a/Bonfire.UI.Coordination.TodoLive.GraphQL.html
+++ b/Bonfire.UI.Coordination.TodoLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Coordination.TodoLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Coordination.TodoLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Coordination.TodoLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Groups.LiveHandler.html b/Bonfire.UI.Groups.LiveHandler.html
index 5ae648ccd29..575fd563538 100644
--- a/Bonfire.UI.Groups.LiveHandler.html
+++ b/Bonfire.UI.Groups.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Groups.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Groups.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Groups.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Groups.Routes.html b/Bonfire.UI.Groups.Routes.html
index 40b9d530d48..32466705613 100644
--- a/Bonfire.UI.Groups.Routes.html
+++ b/Bonfire.UI.Groups.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Groups.Routes — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Groups.Routes — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Groups.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Groups.RuntimeConfig.html b/Bonfire.UI.Groups.RuntimeConfig.html
index 4a89db28815..be48449399b 100644
--- a/Bonfire.UI.Groups.RuntimeConfig.html
+++ b/Bonfire.UI.Groups.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Groups.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Groups.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Groups.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Kanban.BoardLive.GraphQL.html b/Bonfire.UI.Kanban.BoardLive.GraphQL.html
index 36f3b129132..e518993dbac 100644
--- a/Bonfire.UI.Kanban.BoardLive.GraphQL.html
+++ b/Bonfire.UI.Kanban.BoardLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Kanban.BoardLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Kanban.BoardLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Kanban.BoardLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Kanban.HomeLive.GraphQL.html b/Bonfire.UI.Kanban.HomeLive.GraphQL.html
index 1eb51606646..9c145fa5605 100644
--- a/Bonfire.UI.Kanban.HomeLive.GraphQL.html
+++ b/Bonfire.UI.Kanban.HomeLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Kanban.HomeLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Kanban.HomeLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Kanban.HomeLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Kanban.Integration.html b/Bonfire.UI.Kanban.Integration.html
index 7bd55188996..0bfff37f79d 100644
--- a/Bonfire.UI.Kanban.Integration.html
+++ b/Bonfire.UI.Kanban.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Kanban.Integration — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Kanban.Integration — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Kanban.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Kanban.Routes.html b/Bonfire.UI.Kanban.Routes.html
index 0c891edf50d..ab4be74d2c0 100644
--- a/Bonfire.UI.Kanban.Routes.html
+++ b/Bonfire.UI.Kanban.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Kanban.Routes — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Kanban.Routes — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Kanban.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Reflow.Integration.html b/Bonfire.UI.Reflow.Integration.html
index 45cf8ac237d..4914400bdaa 100644
--- a/Bonfire.UI.Reflow.Integration.html
+++ b/Bonfire.UI.Reflow.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.Integration — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Reflow.Integration — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Reflow.InventoryLive.GraphQL.html b/Bonfire.UI.Reflow.InventoryLive.GraphQL.html
index 7d31385a9c6..3c99aaf419a 100644
--- a/Bonfire.UI.Reflow.InventoryLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.InventoryLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.InventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Reflow.InventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.InventoryLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Reflow.MaterialsLive.GraphQL.html b/Bonfire.UI.Reflow.MaterialsLive.GraphQL.html
index 8275d757c57..72e5b6ee855 100644
--- a/Bonfire.UI.Reflow.MaterialsLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.MaterialsLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.MaterialsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Reflow.MaterialsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.MaterialsLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Reflow.ProcessLive.GraphQL.html b/Bonfire.UI.Reflow.ProcessLive.GraphQL.html
index dfad0c59d1b..363df47991c 100644
--- a/Bonfire.UI.Reflow.ProcessLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.ProcessLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.ProcessLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Reflow.ProcessLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.ProcessLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Reflow.ProcessesLive.GraphQL.html b/Bonfire.UI.Reflow.ProcessesLive.GraphQL.html
index 2f455affbab..6757ea4e5d0 100644
--- a/Bonfire.UI.Reflow.ProcessesLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.ProcessesLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.ProcessesLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Reflow.ProcessesLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.ProcessesLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL.html b/Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL.html
index 185eb059053..21a36d4fd87 100644
--- a/Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.ProfileInventoryLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Reflow.ResourceLive.GraphQL.html b/Bonfire.UI.Reflow.ResourceLive.GraphQL.html
index 0d944ac4232..068df2304b5 100644
--- a/Bonfire.UI.Reflow.ResourceLive.GraphQL.html
+++ b/Bonfire.UI.Reflow.ResourceLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.ResourceLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Reflow.ResourceLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.ResourceLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Reflow.Routes.html b/Bonfire.UI.Reflow.Routes.html
index e62cb422218..620fe6ed457 100644
--- a/Bonfire.UI.Reflow.Routes.html
+++ b/Bonfire.UI.Reflow.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Reflow.Routes — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Reflow.Routes — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Reflow.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Topics.LiveHandler.html b/Bonfire.UI.Topics.LiveHandler.html
index bcb57daa79a..725aa8958ca 100644
--- a/Bonfire.UI.Topics.LiveHandler.html
+++ b/Bonfire.UI.Topics.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Topics.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Topics.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Topics.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Topics.Routes.html b/Bonfire.UI.Topics.Routes.html
index 0ed32c50b4e..2ee075be9a2 100644
--- a/Bonfire.UI.Topics.Routes.html
+++ b/Bonfire.UI.Topics.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Topics.Routes — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Topics.Routes — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Topics.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Topics.RuntimeConfig.html b/Bonfire.UI.Topics.RuntimeConfig.html
index f39db0ea433..d53968b9b4d 100644
--- a/Bonfire.UI.Topics.RuntimeConfig.html
+++ b/Bonfire.UI.Topics.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Topics.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Topics.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Topics.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.Topics.html b/Bonfire.UI.Topics.html
index d78ff7777fc..71916dd6f21 100644
--- a/Bonfire.UI.Topics.html
+++ b/Bonfire.UI.Topics.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.Topics — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.Topics — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.Topics
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL.html b/Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL.html
index 0d45c5018c3..cac6155102c 100644
--- a/Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL.html
+++ b/Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.AddMilestoneLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler.html b/Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler.html
index 0597a417714..6f864194f0a 100644
--- a/Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler.html
+++ b/Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.CreateEconomicEventLive.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.ValueFlows.CreateResourceSpecForm.html b/Bonfire.UI.ValueFlows.CreateResourceSpecForm.html
index 989aeac7ae2..41f71024a42 100644
--- a/Bonfire.UI.ValueFlows.CreateResourceSpecForm.html
+++ b/Bonfire.UI.ValueFlows.CreateResourceSpecForm.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.CreateResourceSpecForm — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.ValueFlows.CreateResourceSpecForm — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.CreateResourceSpecForm
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.ValueFlows.CreateUnitForm.html b/Bonfire.UI.ValueFlows.CreateUnitForm.html
index 6fa03909045..4b697a325e0 100644
--- a/Bonfire.UI.ValueFlows.CreateUnitForm.html
+++ b/Bonfire.UI.ValueFlows.CreateUnitForm.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.CreateUnitForm — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.ValueFlows.CreateUnitForm — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.CreateUnitForm
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.ValueFlows.CreateValueCalculationForm.html b/Bonfire.UI.ValueFlows.CreateValueCalculationForm.html
index 6d86724ed78..14a6cf135a6 100644
--- a/Bonfire.UI.ValueFlows.CreateValueCalculationForm.html
+++ b/Bonfire.UI.ValueFlows.CreateValueCalculationForm.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.CreateValueCalculationForm — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.ValueFlows.CreateValueCalculationForm — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.CreateValueCalculationForm
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.ValueFlows.Integration.html b/Bonfire.UI.ValueFlows.Integration.html
index 68c02c2ed7e..9441e4d81ea 100644
--- a/Bonfire.UI.ValueFlows.Integration.html
+++ b/Bonfire.UI.ValueFlows.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.Integration — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.ValueFlows.Integration — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL.html b/Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL.html
index 3c68e354a9f..0353e75c8da 100644
--- a/Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL.html
+++ b/Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.IntentCreateActivityFieldsLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.ValueFlows.RuntimeConfig.html b/Bonfire.UI.ValueFlows.RuntimeConfig.html
index dd5ca88e39d..de0430c6082 100644
--- a/Bonfire.UI.ValueFlows.RuntimeConfig.html
+++ b/Bonfire.UI.ValueFlows.RuntimeConfig.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.ValueFlows.RuntimeConfig — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.RuntimeConfig
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.UI.ValueFlows.SettingsLive.GraphQL.html b/Bonfire.UI.ValueFlows.SettingsLive.GraphQL.html
index e7d97d80215..97d2e5431c2 100644
--- a/Bonfire.UI.ValueFlows.SettingsLive.GraphQL.html
+++ b/Bonfire.UI.ValueFlows.SettingsLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.UI.ValueFlows.SettingsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.UI.ValueFlows.SettingsLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.UI.ValueFlows.SettingsLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Upcycle.Integration.html b/Bonfire.Upcycle.Integration.html
index d447c759671..a1ee25499c7 100644
--- a/Bonfire.Upcycle.Integration.html
+++ b/Bonfire.Upcycle.Integration.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.Integration — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Upcycle.Integration — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Upcycle.IntentLive.GraphQL.html b/Bonfire.Upcycle.IntentLive.GraphQL.html
index b0254df7622..d8568d3c7a0 100644
--- a/Bonfire.Upcycle.IntentLive.GraphQL.html
+++ b/Bonfire.Upcycle.IntentLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.IntentLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Upcycle.IntentLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.IntentLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Upcycle.MapLive.GraphQL.html b/Bonfire.Upcycle.MapLive.GraphQL.html
index d2433eab014..e29c0a9c280 100644
--- a/Bonfire.Upcycle.MapLive.GraphQL.html
+++ b/Bonfire.Upcycle.MapLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.MapLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Upcycle.MapLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.MapLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Upcycle.ResourceLive.GraphQL.html b/Bonfire.Upcycle.ResourceLive.GraphQL.html
index e5d44d5367b..6a6914a7af1 100644
--- a/Bonfire.Upcycle.ResourceLive.GraphQL.html
+++ b/Bonfire.Upcycle.ResourceLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.ResourceLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Upcycle.ResourceLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.ResourceLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Upcycle.Web.HomeLive.GraphQL.html b/Bonfire.Upcycle.Web.HomeLive.GraphQL.html
index 403e8825ffc..6a60f61b5f0 100644
--- a/Bonfire.Upcycle.Web.HomeLive.GraphQL.html
+++ b/Bonfire.Upcycle.Web.HomeLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.Web.HomeLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Upcycle.Web.HomeLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.Web.HomeLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Upcycle.Web.InventoryLive.GraphQL.html b/Bonfire.Upcycle.Web.InventoryLive.GraphQL.html
index 67fa872b468..d44e39778bb 100644
--- a/Bonfire.Upcycle.Web.InventoryLive.GraphQL.html
+++ b/Bonfire.Upcycle.Web.InventoryLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.Web.InventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Upcycle.Web.InventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.Web.InventoryLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Upcycle.Web.Routes.html b/Bonfire.Upcycle.Web.Routes.html
index afbe11761ba..4c05ee63ab7 100644
--- a/Bonfire.Upcycle.Web.Routes.html
+++ b/Bonfire.Upcycle.Web.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Upcycle.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.Web.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Upcycle.Web.TransfersLive.GraphQL.html b/Bonfire.Upcycle.Web.TransfersLive.GraphQL.html
index fd6af504c92..e3511d320f9 100644
--- a/Bonfire.Upcycle.Web.TransfersLive.GraphQL.html
+++ b/Bonfire.Upcycle.Web.TransfersLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Upcycle.Web.TransfersLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Upcycle.Web.TransfersLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Upcycle.Web.TransfersLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Web.Endpoint.html b/Bonfire.Web.Endpoint.html
index adc5f2725ae..61a565e62ba 100644
--- a/Bonfire.Web.Endpoint.html
+++ b/Bonfire.Web.Endpoint.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.Endpoint — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Web.Endpoint — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.Endpoint
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Web.FakeRemoteEndpoint.html b/Bonfire.Web.FakeRemoteEndpoint.html
index aee9be71cff..712d7f7b967 100644
--- a/Bonfire.Web.FakeRemoteEndpoint.html
+++ b/Bonfire.Web.FakeRemoteEndpoint.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.FakeRemoteEndpoint — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Web.FakeRemoteEndpoint — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.FakeRemoteEndpoint
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Web.Router.Reverse.html b/Bonfire.Web.Router.Reverse.html
index 497a9f6f5b4..8d37fde9c84 100644
--- a/Bonfire.Web.Router.Reverse.html
+++ b/Bonfire.Web.Router.Reverse.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.Router.Reverse — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Web.Router.Reverse — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.Router.Reverse
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Web.Router.html b/Bonfire.Web.Router.html
index 52904588603..d5d60fbf104 100644
--- a/Bonfire.Web.Router.html
+++ b/Bonfire.Web.Router.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.Router — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Web.Router — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.Router
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Web.Routes.html b/Bonfire.Web.Routes.html
index eebb8f9fea9..684068cdfd2 100644
--- a/Bonfire.Web.Routes.html
+++ b/Bonfire.Web.Routes.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Web.Routes — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.Routes
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Bonfire.Web.ViewInventoryLive.GraphQL.html b/Bonfire.Web.ViewInventoryLive.GraphQL.html
index 2a8158e0794..cb6cbe1aa39 100644
--- a/Bonfire.Web.ViewInventoryLive.GraphQL.html
+++ b/Bonfire.Web.ViewInventoryLive.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- Bonfire.Web.ViewInventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire.Web.ViewInventoryLive.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Bonfire.Web.ViewInventoryLive.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/Iconify.MaterialSymbols.CalendarMonth.html b/Iconify.MaterialSymbols.CalendarMonth.html
index bf3bb9640a2..41a88c071be 100644
--- a/Iconify.MaterialSymbols.CalendarMonth.html
+++ b/Iconify.MaterialSymbols.CalendarMonth.html
@@ -5,10 +5,10 @@
-
+
- Iconify.MaterialSymbols.CalendarMonth — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Iconify.MaterialSymbols.CalendarMonth — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
Iconify.MaterialSymbols.CalendarMonth
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Agent.Agents.html b/ValueFlows.Agent.Agents.html
index 9b67eb343bd..528b6425854 100644
--- a/ValueFlows.Agent.Agents.html
+++ b/ValueFlows.Agent.Agents.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Agent.Agents — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Agent.Agents — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Agent.Agents
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Agent.Organizations.html b/ValueFlows.Agent.Organizations.html
index 3cade36fb7f..56a00c7f9ac 100644
--- a/ValueFlows.Agent.Organizations.html
+++ b/ValueFlows.Agent.Organizations.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Agent.Organizations — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Agent.Organizations — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Agent.Organizations
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Agent.People.html b/ValueFlows.Agent.People.html
index be2c26edd8f..cda963f6293 100644
--- a/ValueFlows.Agent.People.html
+++ b/ValueFlows.Agent.People.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Agent.People — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Agent.People — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Agent.People
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Agreement.html b/ValueFlows.Agreement.html
index 20bcd8c0767..758eaf2e0ac 100644
--- a/ValueFlows.Agreement.html
+++ b/ValueFlows.Agreement.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Agreement — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Agreement — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Agreement
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.AllMigrations.html b/ValueFlows.AllMigrations.html
index e37b47e0a50..09789ce8414 100644
--- a/ValueFlows.AllMigrations.html
+++ b/ValueFlows.AllMigrations.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.AllMigrations — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.AllMigrations — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.AllMigrations
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Claim.Claims.html b/ValueFlows.Claim.Claims.html
index f34029896e7..e13f2305cbf 100644
--- a/ValueFlows.Claim.Claims.html
+++ b/ValueFlows.Claim.Claims.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Claim.Claims — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Claim.Claims — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Claim.Claims
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Claim.GraphQL.html b/ValueFlows.Claim.GraphQL.html
index ec29c711caf..f1de5a9ed64 100644
--- a/ValueFlows.Claim.GraphQL.html
+++ b/ValueFlows.Claim.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Claim.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Claim.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Claim.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Claim.Queries.html b/ValueFlows.Claim.Queries.html
index 0359edc7425..3d4b1e536a1 100644
--- a/ValueFlows.Claim.Queries.html
+++ b/ValueFlows.Claim.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Claim.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Claim.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Claim.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Claim.html b/ValueFlows.Claim.html
index 69de19566ff..4c70cb41e46 100644
--- a/ValueFlows.Claim.html
+++ b/ValueFlows.Claim.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Claim — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Claim — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Claim
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicEvent.EconomicEvents.html b/ValueFlows.EconomicEvent.EconomicEvents.html
index 42cfc9df988..bde126bf9ba 100644
--- a/ValueFlows.EconomicEvent.EconomicEvents.html
+++ b/ValueFlows.EconomicEvent.EconomicEvents.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.EconomicEvents — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicEvent.EconomicEvents — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.EconomicEvents
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicEvent.EventSideEffects.html b/ValueFlows.EconomicEvent.EventSideEffects.html
index 5c080a0d75d..592a31e8743 100644
--- a/ValueFlows.EconomicEvent.EventSideEffects.html
+++ b/ValueFlows.EconomicEvent.EventSideEffects.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.EventSideEffects — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicEvent.EventSideEffects — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.EventSideEffects
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicEvent.GraphQL.html b/ValueFlows.EconomicEvent.GraphQL.html
index 8d3590ff76f..c289c90de20 100644
--- a/ValueFlows.EconomicEvent.GraphQL.html
+++ b/ValueFlows.EconomicEvent.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicEvent.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicEvent.LiveHandler.html b/ValueFlows.EconomicEvent.LiveHandler.html
index e79a9d1b18e..c5bdbc1d6d6 100644
--- a/ValueFlows.EconomicEvent.LiveHandler.html
+++ b/ValueFlows.EconomicEvent.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicEvent.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicEvent.Queries.html b/ValueFlows.EconomicEvent.Queries.html
index c70ec62d692..7a5814702b0 100644
--- a/ValueFlows.EconomicEvent.Queries.html
+++ b/ValueFlows.EconomicEvent.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicEvent.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicEvent.Trace.html b/ValueFlows.EconomicEvent.Trace.html
index f2b8ad54487..11a363addd5 100644
--- a/ValueFlows.EconomicEvent.Trace.html
+++ b/ValueFlows.EconomicEvent.Trace.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.Trace — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicEvent.Trace — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.Trace
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicEvent.Track.html b/ValueFlows.EconomicEvent.Track.html
index a48ab5b0c50..8971ca5d05b 100644
--- a/ValueFlows.EconomicEvent.Track.html
+++ b/ValueFlows.EconomicEvent.Track.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent.Track — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicEvent.Track — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent.Track
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicEvent.html b/ValueFlows.EconomicEvent.html
index 1128763b361..93c2e524ee3 100644
--- a/ValueFlows.EconomicEvent.html
+++ b/ValueFlows.EconomicEvent.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicEvent — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicEvent — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicEvent
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicResource.EconomicResources.html b/ValueFlows.EconomicResource.EconomicResources.html
index 34c5a894079..bfb6eb125ea 100644
--- a/ValueFlows.EconomicResource.EconomicResources.html
+++ b/ValueFlows.EconomicResource.EconomicResources.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicResource.EconomicResources — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicResource.EconomicResources — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicResource.EconomicResources
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicResource.LiveHandler.html b/ValueFlows.EconomicResource.LiveHandler.html
index 7d61f2f8104..56ac5aeb0ce 100644
--- a/ValueFlows.EconomicResource.LiveHandler.html
+++ b/ValueFlows.EconomicResource.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicResource.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicResource.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicResource.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicResource.Queries.html b/ValueFlows.EconomicResource.Queries.html
index 81eef805406..4b1601024bd 100644
--- a/ValueFlows.EconomicResource.Queries.html
+++ b/ValueFlows.EconomicResource.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicResource.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicResource.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicResource.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.EconomicResource.html b/ValueFlows.EconomicResource.html
index 0d4093b8dcd..d5a71f01512 100644
--- a/ValueFlows.EconomicResource.html
+++ b/ValueFlows.EconomicResource.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.EconomicResource — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.EconomicResource — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.EconomicResource
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Knowledge.Action.Actions.html b/ValueFlows.Knowledge.Action.Actions.html
index de067c51169..3a1685fc25c 100644
--- a/ValueFlows.Knowledge.Action.Actions.html
+++ b/ValueFlows.Knowledge.Action.Actions.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.Action.Actions — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Knowledge.Action.Actions — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.Action.Actions
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Knowledge.Action.html b/ValueFlows.Knowledge.Action.html
index 6d6f7662456..c6c15d44d29 100644
--- a/ValueFlows.Knowledge.Action.html
+++ b/ValueFlows.Knowledge.Action.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.Action — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Knowledge.Action — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.Action
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Knowledge.ProcessSpecification.GraphQL.html b/ValueFlows.Knowledge.ProcessSpecification.GraphQL.html
index 21c8f0f7c9a..970b32f3b97 100644
--- a/ValueFlows.Knowledge.ProcessSpecification.GraphQL.html
+++ b/ValueFlows.Knowledge.ProcessSpecification.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ProcessSpecification.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Knowledge.ProcessSpecification.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ProcessSpecification.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications.html b/ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications.html
index 7483a73e9f6..48efe074302 100644
--- a/ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications.html
+++ b/ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ProcessSpecification.ProcessSpecifications
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Knowledge.ProcessSpecification.Queries.html b/ValueFlows.Knowledge.ProcessSpecification.Queries.html
index 53c5e1e8fa7..38fc75d1d77 100644
--- a/ValueFlows.Knowledge.ProcessSpecification.Queries.html
+++ b/ValueFlows.Knowledge.ProcessSpecification.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ProcessSpecification.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Knowledge.ProcessSpecification.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ProcessSpecification.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Knowledge.ProcessSpecification.html b/ValueFlows.Knowledge.ProcessSpecification.html
index c58eb6ce3e6..399bbdef48f 100644
--- a/ValueFlows.Knowledge.ProcessSpecification.html
+++ b/ValueFlows.Knowledge.ProcessSpecification.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ProcessSpecification — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Knowledge.ProcessSpecification — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ProcessSpecification
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Knowledge.ResourceSpecification.GraphQL.html b/ValueFlows.Knowledge.ResourceSpecification.GraphQL.html
index c7b8e3cb6c8..ad164fd76f5 100644
--- a/ValueFlows.Knowledge.ResourceSpecification.GraphQL.html
+++ b/ValueFlows.Knowledge.ResourceSpecification.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ResourceSpecification.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Knowledge.ResourceSpecification.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ResourceSpecification.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Knowledge.ResourceSpecification.LiveHandler.html b/ValueFlows.Knowledge.ResourceSpecification.LiveHandler.html
index 5e1c65f519d..cc2d5b72cb0 100644
--- a/ValueFlows.Knowledge.ResourceSpecification.LiveHandler.html
+++ b/ValueFlows.Knowledge.ResourceSpecification.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ResourceSpecification.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Knowledge.ResourceSpecification.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ResourceSpecification.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Knowledge.ResourceSpecification.Queries.html b/ValueFlows.Knowledge.ResourceSpecification.Queries.html
index e0cde9419b4..728948f803c 100644
--- a/ValueFlows.Knowledge.ResourceSpecification.Queries.html
+++ b/ValueFlows.Knowledge.ResourceSpecification.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ResourceSpecification.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Knowledge.ResourceSpecification.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ResourceSpecification.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications.html b/ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications.html
index cd9378df266..e27a50a4901 100644
--- a/ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications.html
+++ b/ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ResourceSpecification.ResourceSpecifications
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Knowledge.ResourceSpecification.html b/ValueFlows.Knowledge.ResourceSpecification.html
index 8d89fbc4bae..8a87547763f 100644
--- a/ValueFlows.Knowledge.ResourceSpecification.html
+++ b/ValueFlows.Knowledge.ResourceSpecification.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Knowledge.ResourceSpecification — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Knowledge.ResourceSpecification — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Knowledge.ResourceSpecification
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.Classifications.html b/ValueFlows.Observe.Classifications.html
index 9a4522821db..7c9a28030df 100644
--- a/ValueFlows.Observe.Classifications.html
+++ b/ValueFlows.Observe.Classifications.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Classifications — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.Classifications — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Classifications
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.Hydration.html b/ValueFlows.Observe.Hydration.html
index d94d5b77302..c6083f85d98 100644
--- a/ValueFlows.Observe.Hydration.html
+++ b/ValueFlows.Observe.Hydration.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.Hydration — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Hydration
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.Integration.html b/ValueFlows.Observe.Integration.html
index 4c541814893..07b1e2013da 100644
--- a/ValueFlows.Observe.Integration.html
+++ b/ValueFlows.Observe.Integration.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Integration — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.Integration — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Integration
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.ObservablePhenomenons.html b/ValueFlows.Observe.ObservablePhenomenons.html
index 3fe2dcd9c6c..4e333fc3694 100644
--- a/ValueFlows.Observe.ObservablePhenomenons.html
+++ b/ValueFlows.Observe.ObservablePhenomenons.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.ObservablePhenomenons — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.ObservablePhenomenons — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.ObservablePhenomenons
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.ObservablePhenomenonsGraphQL.html b/ValueFlows.Observe.ObservablePhenomenonsGraphQL.html
index 37a62f5a585..27481af4dcd 100644
--- a/ValueFlows.Observe.ObservablePhenomenonsGraphQL.html
+++ b/ValueFlows.Observe.ObservablePhenomenonsGraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.ObservablePhenomenonsGraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.ObservablePhenomenonsGraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.ObservablePhenomenonsGraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.ObservableProperties.html b/ValueFlows.Observe.ObservableProperties.html
index a31b6d80af6..f439e89a672 100644
--- a/ValueFlows.Observe.ObservableProperties.html
+++ b/ValueFlows.Observe.ObservableProperties.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.ObservableProperties — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.ObservableProperties — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.ObservableProperties
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.ObservablePropertiesGraphQL.html b/ValueFlows.Observe.ObservablePropertiesGraphQL.html
index 553b1ab4482..3129b028d49 100644
--- a/ValueFlows.Observe.ObservablePropertiesGraphQL.html
+++ b/ValueFlows.Observe.ObservablePropertiesGraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.ObservablePropertiesGraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.ObservablePropertiesGraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.ObservablePropertiesGraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.Observation.Queries.html b/ValueFlows.Observe.Observation.Queries.html
index d0fac661a9d..c03dee22615 100644
--- a/ValueFlows.Observe.Observation.Queries.html
+++ b/ValueFlows.Observe.Observation.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Observation.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.Observation.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Observation.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.Observation.html b/ValueFlows.Observe.Observation.html
index 355a89e351e..bbe2ea1cd52 100644
--- a/ValueFlows.Observe.Observation.html
+++ b/ValueFlows.Observe.Observation.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Observation — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.Observation — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Observation
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.Observations.ObservationsResolvers.html b/ValueFlows.Observe.Observations.ObservationsResolvers.html
index dd396f407a5..34abfd2ddd5 100644
--- a/ValueFlows.Observe.Observations.ObservationsResolvers.html
+++ b/ValueFlows.Observe.Observations.ObservationsResolvers.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Observations.ObservationsResolvers — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.Observations.ObservationsResolvers — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Observations.ObservationsResolvers
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.Observations.html b/ValueFlows.Observe.Observations.html
index 67b9ae48e58..607163c5b47 100644
--- a/ValueFlows.Observe.Observations.html
+++ b/ValueFlows.Observe.Observations.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Observations — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.Observations — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Observations
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.Seeds.html b/ValueFlows.Observe.Seeds.html
index 27d7d457af4..3a4165131b8 100644
--- a/ValueFlows.Observe.Seeds.html
+++ b/ValueFlows.Observe.Seeds.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Seeds — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.Seeds — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Seeds
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Observe.Simulate.html b/ValueFlows.Observe.Simulate.html
index 15d5a413ab7..f8a98920991 100644
--- a/ValueFlows.Observe.Simulate.html
+++ b/ValueFlows.Observe.Simulate.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Observe.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Observe.Simulate — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Observe.Simulate
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Commitment.Commitments.html b/ValueFlows.Planning.Commitment.Commitments.html
index 4528a923309..8335ed39d73 100644
--- a/ValueFlows.Planning.Commitment.Commitments.html
+++ b/ValueFlows.Planning.Commitment.Commitments.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Commitment.Commitments — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Commitment.Commitments — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Commitment.Commitments
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Commitment.GraphQL.html b/ValueFlows.Planning.Commitment.GraphQL.html
index f2813fb9b3d..a8793e681bc 100644
--- a/ValueFlows.Planning.Commitment.GraphQL.html
+++ b/ValueFlows.Planning.Commitment.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Commitment.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Commitment.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Commitment.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Commitment.Queries.html b/ValueFlows.Planning.Commitment.Queries.html
index 61c73114b7d..e1a092d34cf 100644
--- a/ValueFlows.Planning.Commitment.Queries.html
+++ b/ValueFlows.Planning.Commitment.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Commitment.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Commitment.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Commitment.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Commitment.html b/ValueFlows.Planning.Commitment.html
index 53766de37cb..e4be9e63f3e 100644
--- a/ValueFlows.Planning.Commitment.html
+++ b/ValueFlows.Planning.Commitment.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Commitment — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Commitment — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Commitment
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Intent.GraphQL.html b/ValueFlows.Planning.Intent.GraphQL.html
index 711c98198d2..ba2a0490dc3 100644
--- a/ValueFlows.Planning.Intent.GraphQL.html
+++ b/ValueFlows.Planning.Intent.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Intent.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Intent.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Intent.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Intent.Intents.html b/ValueFlows.Planning.Intent.Intents.html
index 9d08be35732..68bba9e59e4 100644
--- a/ValueFlows.Planning.Intent.Intents.html
+++ b/ValueFlows.Planning.Intent.Intents.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Intent.Intents — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Intent.Intents — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Intent.Intents
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Intent.LiveHandler.html b/ValueFlows.Planning.Intent.LiveHandler.html
index 9c1470b2f12..d89c104acfb 100644
--- a/ValueFlows.Planning.Intent.LiveHandler.html
+++ b/ValueFlows.Planning.Intent.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Intent.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Intent.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Intent.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Intent.Queries.html b/ValueFlows.Planning.Intent.Queries.html
index b691d0cd4a1..9ab0f22e3ad 100644
--- a/ValueFlows.Planning.Intent.Queries.html
+++ b/ValueFlows.Planning.Intent.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Intent.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Intent.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Intent.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Intent.html b/ValueFlows.Planning.Intent.html
index 68e37c52239..d741d826e2c 100644
--- a/ValueFlows.Planning.Intent.html
+++ b/ValueFlows.Planning.Intent.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Intent — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Intent — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Intent
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Satisfaction.GraphQL.html b/ValueFlows.Planning.Satisfaction.GraphQL.html
index 47bb36c88c1..4224946fddc 100644
--- a/ValueFlows.Planning.Satisfaction.GraphQL.html
+++ b/ValueFlows.Planning.Satisfaction.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Satisfaction.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Satisfaction.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Satisfaction.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Satisfaction.Queries.html b/ValueFlows.Planning.Satisfaction.Queries.html
index 5ec5e9fd964..075748c3a0f 100644
--- a/ValueFlows.Planning.Satisfaction.Queries.html
+++ b/ValueFlows.Planning.Satisfaction.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Satisfaction.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Satisfaction.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Satisfaction.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Satisfaction.Satisfactions.html b/ValueFlows.Planning.Satisfaction.Satisfactions.html
index 5e66ebab161..fd5c7ddc8c3 100644
--- a/ValueFlows.Planning.Satisfaction.Satisfactions.html
+++ b/ValueFlows.Planning.Satisfaction.Satisfactions.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Satisfaction.Satisfactions — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Satisfaction.Satisfactions — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Satisfaction.Satisfactions
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Planning.Satisfaction.html b/ValueFlows.Planning.Satisfaction.html
index a751c6ad5a9..10b2f206447 100644
--- a/ValueFlows.Planning.Satisfaction.html
+++ b/ValueFlows.Planning.Satisfaction.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Planning.Satisfaction — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Planning.Satisfaction — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Planning.Satisfaction
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Process.LiveHandler.html b/ValueFlows.Process.LiveHandler.html
index 94e8d725511..200e2f94e14 100644
--- a/ValueFlows.Process.LiveHandler.html
+++ b/ValueFlows.Process.LiveHandler.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Process.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Process.LiveHandler — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Process.LiveHandler
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Process.Processes.html b/ValueFlows.Process.Processes.html
index 82b54cbff30..7fb56de8f97 100644
--- a/ValueFlows.Process.Processes.html
+++ b/ValueFlows.Process.Processes.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Process.Processes — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Process.Processes — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Process.Processes
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Process.Queries.html b/ValueFlows.Process.Queries.html
index 6718dbf4822..5ad041530f9 100644
--- a/ValueFlows.Process.Queries.html
+++ b/ValueFlows.Process.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Process.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Process.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Process.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Process.html b/ValueFlows.Process.html
index 087a73da40d..7444cc31061 100644
--- a/ValueFlows.Process.html
+++ b/ValueFlows.Process.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Process — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Process — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Process
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Proposal.GraphQL.html b/ValueFlows.Proposal.GraphQL.html
index 5461babdebb..497893446c8 100644
--- a/ValueFlows.Proposal.GraphQL.html
+++ b/ValueFlows.Proposal.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Proposal.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Proposal.Proposals.html b/ValueFlows.Proposal.Proposals.html
index e84c5daa3c9..e07510c5a41 100644
--- a/ValueFlows.Proposal.Proposals.html
+++ b/ValueFlows.Proposal.Proposals.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.Proposals — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Proposal.Proposals — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.Proposals
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Proposal.ProposedIntent.html b/ValueFlows.Proposal.ProposedIntent.html
index 1d023633358..4f616078504 100644
--- a/ValueFlows.Proposal.ProposedIntent.html
+++ b/ValueFlows.Proposal.ProposedIntent.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedIntent — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Proposal.ProposedIntent — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedIntent
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Proposal.ProposedIntentQueries.html b/ValueFlows.Proposal.ProposedIntentQueries.html
index 0ef3d936ba8..56aa019c0c5 100644
--- a/ValueFlows.Proposal.ProposedIntentQueries.html
+++ b/ValueFlows.Proposal.ProposedIntentQueries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedIntentQueries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Proposal.ProposedIntentQueries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedIntentQueries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Proposal.ProposedIntents.html b/ValueFlows.Proposal.ProposedIntents.html
index 14ae68a819a..2bd261a193a 100644
--- a/ValueFlows.Proposal.ProposedIntents.html
+++ b/ValueFlows.Proposal.ProposedIntents.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedIntents — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Proposal.ProposedIntents — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedIntents
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Proposal.ProposedTo.html b/ValueFlows.Proposal.ProposedTo.html
index 4a1c3aadda4..70fd82543ba 100644
--- a/ValueFlows.Proposal.ProposedTo.html
+++ b/ValueFlows.Proposal.ProposedTo.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedTo — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Proposal.ProposedTo — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedTo
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Proposal.ProposedToQueries.html b/ValueFlows.Proposal.ProposedToQueries.html
index 76b2f10cfa7..455e93c09e1 100644
--- a/ValueFlows.Proposal.ProposedToQueries.html
+++ b/ValueFlows.Proposal.ProposedToQueries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedToQueries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Proposal.ProposedToQueries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedToQueries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Proposal.ProposedTos.html b/ValueFlows.Proposal.ProposedTos.html
index 8cf0c490543..63200e12ab7 100644
--- a/ValueFlows.Proposal.ProposedTos.html
+++ b/ValueFlows.Proposal.ProposedTos.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.ProposedTos — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Proposal.ProposedTos — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.ProposedTos
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Proposal.Queries.html b/ValueFlows.Proposal.Queries.html
index 3d23b8142fa..6c5619ef083 100644
--- a/ValueFlows.Proposal.Queries.html
+++ b/ValueFlows.Proposal.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Proposal.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Proposal.html b/ValueFlows.Proposal.html
index c774ef6adfb..2103b6ffad0 100644
--- a/ValueFlows.Proposal.html
+++ b/ValueFlows.Proposal.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Proposal — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Proposal — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Proposal
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Util.Federation.html b/ValueFlows.Util.Federation.html
index 0dce833871a..f0a72d27f90 100644
--- a/ValueFlows.Util.Federation.html
+++ b/ValueFlows.Util.Federation.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Util.Federation — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Util.Federation — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Util.Federation
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.Util.html b/ValueFlows.Util.html
index d6795433e1e..38989b793ae 100644
--- a/ValueFlows.Util.html
+++ b/ValueFlows.Util.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.Util — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.Util — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.Util
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.ValueCalculation.GraphQL.html b/ValueFlows.ValueCalculation.GraphQL.html
index 1a6d505afbd..98cec54caa9 100644
--- a/ValueFlows.ValueCalculation.GraphQL.html
+++ b/ValueFlows.ValueCalculation.GraphQL.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.ValueCalculation.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.ValueCalculation.GraphQL — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.ValueCalculation.GraphQL
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.ValueCalculation.Queries.html b/ValueFlows.ValueCalculation.Queries.html
index 1c8cbfbaffe..34ddd0110c1 100644
--- a/ValueFlows.ValueCalculation.Queries.html
+++ b/ValueFlows.ValueCalculation.Queries.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.ValueCalculation.Queries — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.ValueCalculation.Queries — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.ValueCalculation.Queries
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.ValueCalculation.ValueCalculations.html b/ValueFlows.ValueCalculation.ValueCalculations.html
index b219b5a9ee2..a9e63609941 100644
--- a/ValueFlows.ValueCalculation.ValueCalculations.html
+++ b/ValueFlows.ValueCalculation.ValueCalculations.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.ValueCalculation.ValueCalculations — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.ValueCalculation.ValueCalculations — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.ValueCalculation.ValueCalculations
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.ValueCalculation.html b/ValueFlows.ValueCalculation.html
index aa46686df5e..445df1b4802 100644
--- a/ValueFlows.ValueCalculation.html
+++ b/ValueFlows.ValueCalculation.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows.ValueCalculation — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows.ValueCalculation — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows.ValueCalculation
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/ValueFlows.html b/ValueFlows.html
index a0a12e1f7d4..6c2c1e6f039 100644
--- a/ValueFlows.html
+++ b/ValueFlows.html
@@ -5,10 +5,10 @@
-
+
- ValueFlows — bonfire_umbrella v0.9.10-cooperation-beta.42
+ ValueFlows — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
ValueFlows
- (bonfire_umbrella v0.9.10-cooperation-beta.42)
+ (bonfire_umbrella v0.9.10-cooperation-beta.44)
diff --git a/api-reference.html b/api-reference.html
index 1d31eca57be..c1376d4c269 100644
--- a/api-reference.html
+++ b/api-reference.html
@@ -5,10 +5,10 @@
-
+
- API Reference — bonfire_umbrella v0.9.10-cooperation-beta.42
+ API Reference — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -127,7 +127,7 @@
- API Reference bonfire_umbrella v0.9.10-cooperation-beta.42
+ API Reference bonfire_umbrella v0.9.10-cooperation-beta.44
diff --git a/architecture.html b/architecture.html
index 0a79ac06757..8abfa73c0d3 100644
--- a/architecture.html
+++ b/architecture.html
@@ -5,10 +5,10 @@
-
+
- Bonfire Architecture — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire Architecture — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -160,9 +160,9 @@
Code Structure
-The code is broadly composed namespaces such as these, many of which are packaged as "extensions" which live in separate git repositories, which are included in the app by way of mix dependencies:
Bonfire.*
- Core application logic (very little code).Bonfire.*.*
- Bonfire extensions (eg Bonfire.Posts
) containing mostly context modules, APIs, and routesBonfire.Data.*
- Extensions containing database schemas and migrations Bonfire.UI.*
- UI component extensionsBonfire.*.*.LiveHandler
- Backend logic to handle events in the frontendBonfire.Editor.*
(pluggable text editors, eg. CKEditor for WYSIWYG markdown input)Bonfire.GraphQL.*
- Optional GraphQL APIBonfire.Federate.*
- Optional Federation hooksActivityPub
- ActivityPub S2S models, logic and various helper modules ActivityPub.Web
- ActivityPub S2S REST endpoints, activity ingestion and push federation facilities ValueFlows.*
- economic extensions implementing the ValueFlows vocabulary
Contexts are were we put any core logic. A context often is circumscribed to providing logic for a particular object type (e. g. Bonfire.Posts
implements Bonfire.Data.Social.Post
).
All Bonfire objects use an ULID as their primary key. We use the Needle
library (with extra logic in Bonfire.Common.Needles
) to reference any object by its primary key without knowing what type it is beforehand. This is very useful as it allows for example following or liking many different types of objects (as opposed to say only a user or a post) and this approach allows us to store the context of the like/follow by only storing its primary key (see Bonfire.Data.Social.Follow
) for an example.
Context modules usually have one/2
, many/2
, and many_paginated/1
functions for fetching objects, which in turn call a query/2
function. These take a keyword list as filters (and an optional opts
argument) allowing objects to be fetched by arbitrary criteria.
Examples:
Users.one(username: "bob") # Fetching by username
-Posts.many_paginated(by: "01E9TQP93S8XFSV2ZATX1FQ528") # List a page of posts by its author
-EconomicResources.many(deleted: true) # List any deleted resources
Context modules also have functions for creating, updating and deleting objects, as well as hooks for federating or indexing in the search engine.
Here is an incomplete sample of some of current extensions and modules:
Bonfire.Me.Accounts
(for managing and querying local user accounts)Bonfire.Me.Users
(for managing and querying both local and remote user identities and profiles)Bonfire.Boundaries
(for managing and querying circles, ACLs, permissions...)Bonfire.Social.FeedActivities
, Bonfire.Social.Feeds
and Bonfire.Social.Activities
(for managing and querying activities and feeds)Bonfire.Posts
and Bonfire.Social.PostContents
(for managing and querying posts)Bonfire.Social.Threads
(for managing and querying threads and comments)Bonfire.Social.Flags
(for managing and querying flags)Bonfire.Social.Graph.Follows
(for managing and querying follows)Bonfire.Classify
(for managing and querying categories, topics, and the like)Bonfire.Tag
(for managing and querying tags and mentions)Bonfire.Geolocate
(for managing and querying locations and geographical coordinates)Bonfire.Quantify
(for managing and querying units and measures)
Additional extensions, libraries, and modules
Bonfire.Common
and Bonfire.Common.Utils
(stuff that gets used everywhere)Bonfire.Application
(OTP application)Bonfire.Me.Characters
(a shared abstraction over users, organisations, categories, and other objects that need to have feeds and behave as an actor in ActivityPub land)Bonfire.Federate.ActivityPub
and ActivityPub
(ActivityPub integration)Bonfire.Search
(local search indexing and search API, powered by Meili)Bonfire.Mailer
, Bonfire.Me.Mails
, and Bamboo
(for rendering and sending emails)Bonfire.Files
, Waffle
, TreeMagic
and TwinkleStar
(for managing uploaded content)Bonfire.GraphQL
(GraphQL API abstractions)Queery
and Bonfire.Repo.Query
(Helpers for making queries on the database)Bonfire.Repo
(Ecto repository)Exto
(to extend DB schemas in config, especially useful for adding associations)AbsintheClient
(for querying the API from within the server)
+
The code is broadly composed namespaces such as these, many of which are packaged as "extensions" which live in separate git repositories, which are included in the app by way of mix dependencies:
Bonfire.*
- Core application logic (very little code).Bonfire.*.*
- Bonfire extensions (eg Bonfire.Posts
) containing mostly context modules, APIs, and routesBonfire.Data.*
- Extensions containing database schemas and migrations Bonfire.UI.*
- UI component extensionsBonfire.*.*.LiveHandler
- Backend logic to handle events in the frontendBonfire.Editor.*
(pluggable text editors, eg. CKEditor for WYSIWYG markdown input)Bonfire.GraphQL.*
- Optional GraphQL APIBonfire.Federate.*
- Optional Federation hooksActivityPub
- ActivityPub S2S models, logic and various helper modules ActivityPub.Web
- ActivityPub S2S REST endpoints, activity ingestion and push federation facilities ValueFlows.*
- economic extensions implementing the ValueFlows vocabulary
Contexts are were we put any core logic. A context often is circumscribed to providing logic for a particular object type (e. g. Bonfire.Posts
implements Bonfire.Data.Social.Post
).
All Bonfire objects use an ULID as their primary key. We use the Needle
library (with extra logic in Bonfire.Common.Needles
) to reference any object by its primary key without knowing what type it is beforehand. This is very useful as it allows for example following or liking many different types of objects (as opposed to say only a user or a post) and this approach allows us to store the context of the like/follow by only storing its primary key (see Bonfire.Data.Social.Follow
) for an example.
Context modules usually have one/2
, many/2
, and many_paginated/1
functions for fetching objects, which in turn call a query/2
function. These take a keyword list as filters (and an optional opts
argument) allowing objects to be fetched by arbitrary criteria.
Examples:
Users.one(username: "bob") # Fetching by username
+Posts.many_paginated(by: "01E9TQP93S8XFSV2ZATX1FQ528") # List a page of posts by its author
+EconomicResources.many(deleted: true) # List any deleted resources
Context modules also have functions for creating, updating and deleting objects, as well as hooks for federating or indexing in the search engine.
Here is an incomplete sample of some of current extensions and modules:
Bonfire.Me.Accounts
(for managing and querying local user accounts)Bonfire.Me.Users
(for managing and querying both local and remote user identities and profiles)Bonfire.Boundaries
(for managing and querying circles, ACLs, permissions...)Bonfire.Social.FeedActivities
, Bonfire.Social.Feeds
and Bonfire.Social.Activities
(for managing and querying activities and feeds)Bonfire.Posts
and Bonfire.Social.PostContents
(for managing and querying posts)Bonfire.Social.Threads
(for managing and querying threads and comments)Bonfire.Social.Flags
(for managing and querying flags)Bonfire.Social.Graph.Follows
(for managing and querying follows)Bonfire.Classify
(for managing and querying categories, topics, and the like)Bonfire.Tag
(for managing and querying tags and mentions)Bonfire.Geolocate
(for managing and querying locations and geographical coordinates)Bonfire.Quantify
(for managing and querying units and measures)
Additional extensions, libraries, and modules
Bonfire.Common
and Bonfire.Common.Utils
(stuff that gets used everywhere)Bonfire.Application
(OTP application)Bonfire.Me.Characters
(a shared abstraction over users, organisations, categories, and other objects that need to have feeds and behave as an actor in ActivityPub land)Bonfire.Federate.ActivityPub
and ActivityPub
(ActivityPub integration)Bonfire.Search
(local search indexing and search API, powered by Meili)Bonfire.Mailer
, Bonfire.Me.Mails
, and Bamboo
(for rendering and sending emails)Bonfire.Files
, Waffle
, TreeMagic
and TwinkleStar
(for managing uploaded content)Bonfire.GraphQL
(GraphQL API abstractions)Queery
and Bonfire.Repo.Query
(Helpers for making queries on the database)Bonfire.Repo
(Ecto repository)Exto
(to extend DB schemas in config, especially useful for adding associations)AbsintheClient
(for querying the API from within the server)
diff --git a/bonfire-flavoured-elixir.html b/bonfire-flavoured-elixir.html
index afe191aad3c..7ab7be913af 100644
--- a/bonfire-flavoured-elixir.html
+++ b/bonfire-flavoured-elixir.html
@@ -5,10 +5,10 @@
-
+
- Bonfire-flavoured Elixir — bonfire_umbrella v0.9.10-cooperation-beta.42
+ Bonfire-flavoured Elixir — bonfire_umbrella v0.9.10-cooperation-beta.44
@@ -59,7 +59,7 @@
bonfire_umbrella
@@ -137,33 +137,33 @@
Arrows
The Elixir |> ("pipe") operator is one of the things that seems to get people excited about elixir. Probably in part because you then don't have to keep coming up with function names. Unfortunately it's kind of limiting.
-The moment you need to pipe a parameter into a position that isn't the first one, it breaks down and you have to drop out of the pipeline format or write a secondary function to handle it.
Not any more! By simply inserting ...
where you would like the value to be inserted, Arrows
will override where it is placed. This allows you to keep on piping while accommodating that function with the annoying argument order. Arrows
was inspired by an existing library. Here is part of the test suite in lieu of examples:
defmodule ArrowsTest do
+The moment you need to pipe a parameter into a position that isn't the first one, it breaks down and you have to drop out of the pipeline format or write a secondary function to handle it.Not any more! By simply inserting ...
where you would like the value to be inserted, Arrows
will override where it is placed. This allows you to keep on piping while accommodating that function with the annoying argument order. Arrows
was inspired by an existing library. Here is part of the test suite in lieu of examples:
defmodule ArrowsTest do
use ExUnit.Case
use Arrows
- def double(x), do: x * 2
- def double_fst(x, _), do: x * 2
- def double_snd(_, x), do: x * 2
- def add_snd_thd(_, x, y), do: x + y
-
- test "|>" do
- assert 4 == (2 |> double)
- assert 4 == (2 |> double())
- assert 4 == (2 |> double(...))
- assert 8 == (2 |> double(double(...)))
- assert 4 == (2 |> double_fst(1))
- assert 4 == (2 |> double_fst(..., 1))
- assert 8 == (2 |> double_fst(double(...), 1))
- assert 4 == (2 |> double_snd(1, ...))
- assert 8 == (2 |> double_snd(1, double(...)))
- assert 3 == (2 |> add_snd_thd(1, ..., 1))
- assert 4 == (2 |> add_snd_thd(1, ..., ...))
- assert 6 == (2 |> add_snd_thd(1, ..., double(...)))
- for x <- [:yes, 2, nil, false] do
- assert {:ok, x} == (x |> {:ok, ...})
- end
- end
-end
A few little extra features you might notice here:
- You can move the parameter into a subexpression, as in
2 |> double_fst(double(...), 1)
where double will be called before the parameter is passed to double_fst
. - You can use
...
multiple times, substituting it in multiple places. - The right hand side need not even be a function call, you can use any expression with
...
.
+
def double(x), do: x * 2
+ def double_fst(x, _), do: x * 2
+ def double_snd(_, x), do: x * 2
+ def add_snd_thd(_, x, y), do: x + y
+
+ test "|>" do
+ assert 4 == (2 |> double)
+ assert 4 == (2 |> double())
+ assert 4 == (2 |> double(...))
+ assert 8 == (2 |> double(double(...)))
+ assert 4 == (2 |> double_fst(1))
+ assert 4 == (2 |> double_fst(..., 1))
+ assert 8 == (2 |> double_fst(double(...), 1))
+ assert 4 == (2 |> double_snd(1, ...))
+ assert 8 == (2 |> double_snd(1, double(...)))
+ assert 3 == (2 |> add_snd_thd(1, ..., 1))
+ assert 4 == (2 |> add_snd_thd(1, ..., ...))
+ assert 6 == (2 |> add_snd_thd(1, ..., double(...)))
+ for x <- [:yes, 2, nil, false] do
+ assert {:ok, x} == (x |> {:ok, ...})
+ end
+ end
+end
A few little extra features you might notice here:
- You can move the parameter into a subexpression, as in
2 |> double_fst(double(...), 1)
where double will be called before the parameter is passed to double_fst
. - You can use
...
multiple times, substituting it in multiple places. - The right hand side need not even be a function call, you can use any expression with
...
.
@@ -177,14 +177,14 @@
Untangle
provides replacements for the macros in Elixir's Logger
module and the IO.inspect
function to output code location information. The first argument will be inspect
ed and the second (where provided) will be used as a label:
iex(1)> import Untangle
Untangle
-iex(2)> debug(:no, "the answer is") # log at debug
-11:19:09.915 [debug] [iex:2] the answer is: :no
+iex(2)> debug(:no, "the answer is") # log at debug
+11:19:09.915 [debug] [iex:2] the answer is: :no
:no
-iex(3)> dump(%{a: :map}, "it") # inspect something on stdout
-[iex:3] it: %{a: :map}
-%{a: :map}
When used in a code file, the location information becomes slightly more useful, e.g.:
[lib/test_untangle.ex:15@Test.Untangle.example/2] Here's an empty list: []
You may also notice from the iex output that it returns its first argument. This makes it ideal for
-inserting into a pipeline for debugging purposes:
do_something()
-|> debug("output of do_something/0")
When you are done debugging something, the location of the debug statement is already in the output so you know where to remove it or comment it out! Bliss!
You will find the codebase uses this a lot, though the debugs are frequently commented out. Just uncomment the ones that would help you with a particular debugging task and you're off.
+
iex(3)> dump(%{a: :map}, "it") # inspect something on stdout
+[iex:3] it: %{a: :map}
+%{a: :map}
When used in a code file, the location information becomes slightly more useful, e.g.:
[lib/test_untangle.ex:15@Test.Untangle.example/2] Here's an empty list: []
You may also notice from the iex output that it returns its first argument. This makes it ideal for +inserting into a pipeline for debugging purposes:
do_something()
+|> debug("output of do_something/0")
When you are done debugging something, the location of the debug statement is already in the output so you know where to remove it or comment it out! Bliss!
You will find the codebase uses this a lot, though the debugs are frequently commented out. Just uncomment the ones that would help you with a particular debugging task and you're off.
FupFQR#96&8aUXcpm z8Q-eser3!g`d4K3(0}_w(QgN!ra6Qp#E@y`qpL{WwA+5DVycoJhRRF*(j@?-JlUxq zHk4dG$YQhUA>LOse=WiOEiQVOPvp?n0Bq6J -3y}ol0J(|sJ2N^1+HjBna=X0mPp;Q#D-AZ~iRI6T-PgG$h^U)gwpDVO z( s+A@i$#VGBbjF8iR4iyL@Yx3;Z6V0`} q_9witg3OhAvMo+pKAm!Ep@|Ci9 z_j0>4F;;jpSn-XP>-&dIa~iy>iBr43+nhRNW1lK&6%X3r!g^CDc~pyDOTa*nb?wUrAKc>T=38qyYW&|V8(VO zQwjR{d;fdB@}SPx<;QCYP0TR`tYBp6%>V?x&clff{d2m-N2t8CIsEPdlG5VWv!+~m z>k9U j={Wb#hS&U1SAxv$_FK!HP7*+PV?Q2fFH=ob5+YdNT= z#7S7KQ-os!33gl;Z&mbTzcN45y6!{SoL35Mkk?f@h*!JIi_Kpr*HyEkJwLZ#YzzMo z@L|s+zW9x{(Pf;c6y#;Qr;suam|ZcvPFzF!?84)-fdtotMXx;9nI}L)kkMOk-l+p| z32K_ec_FxWzEuTm@Tv#_XLjoYd5{Qgb}=y?+bkB3`2cO<`{jnX&K>W^5>BItrV9 Ul<*b z2;3<7VTh03`pz0Klh3;SUvL|%dPeT28LTJ;{N#FZ-dY98(j@g|6l)zOd58o3lR+@27SyFqGEB6O5oxUK2dM$=J>TCb z55EO2;mj^dcb*inuxXVl!%g#3D=?$J-)lP zFAA=VpKHjBne?jIyDn>E={*_0+t#UK)yEJQ_5c%PVlmf{rlwA{-HrR}pagr;z`U1nC@3@w;< t%O#PVhy*`pCGQy{5ky2h rPH@JZD#Lpy-Czf#V&c>#&$nNC zuOEaSOZ;~zA|+xlKce|gK3t;|2lvRU?#DBLiOFko-dNTCK5^!+{7zUf>m+obBuZM3 zby(99M|{a0S|kl_jp~_~k0y+x)`wzMC(k5vn_bzYF@g1?^H0FcPa9UmB$9^Z?$`aB zk>QuCzkue~X_{lt52VKgvC?dO&ad@fQmucbI2~96?nf>()(mdRl*L}>m?I#D*1XCA z3|25OE-8dgtX8Cq`_v&y2aF)Rzh~l6tF0^p^u~Xw`WQC~vd+4fK0A6rO;=3QwXbm`TfX> zhGDH-ch#g87-bHUV^OUKo0z5Tnk#Dnc|<#Iife24*3^&}wX6?9!d9dzQ=h-pH{FBy zP?#Veaqe+IGhz>)bRRY6+7l-;l%tnj-8el071DW)*+T`{i*Vc)MMkw(T?5m}IrB+z zTqHZt#Ja-xDlqE$2AAlK;gUEvly@Ap;+2kvzm{K9;sXRn4H7C2P5;V)ZxBEN>I-0k zj5kFI>SAfi7Cq}d%|-&PF^9h$UIR?13ktX4{B|8^_u6S-$T_k-r$d&qAtwA`A%9N1 zErV>i;J-tkF?^>?=_i5bEf2{Fh|2bL{)|)@(?KX#ziqG $I6f*s3|vCTs3x2MDD}ZAmGFLHvm9 IK54;zv2o19MJv_ej#={ z6IW0Z+G12dU26ofa{#X?KP_gDp`!I0vK>LTeWW$*1TR^--51ey)-PkBE7EjQTcS;( zWNO_*2B;Y-_bN?3wbpmu->!N*?7+TXODjX*zMexTxFs`4c x7BiOkLMFKex+jiwf?dwONk`tEX_|B(=0AR2p7#6#8zsi0+D%FGiq4HxQHF9@ zpy{*MLDe1Pa7zjD;dZxZV4bNmwT&Z>o8PGJwYnPZ>B1cWP${kkMJE*2K7K#=xKcml z{VOf~u8w!PW#RvPZ~f>2*wpT19}mnCwY)$euj)E2fA+;*Fr6fKnaK*Tct5{YoC26r zA--od>EW5h2xE-j-_ns{2O7nJ?l$w=k9Ui0&bOH_WHyEfN8%0G4&8-Q*9m>dG`l|< z*Q+Yco7vJo$cuX=%|bwD$59~g{Oxr-FwVPwTK^}${6ugnJ5h-^uR1B!u!n0&R`WYZ z{UAq9w7*Qv1AUlZuN&F#gBzqVRZtKPpy#sLf$Be7+gHY3>ON9rce+4CtjFHY6InVg zL-lM;wHS^dAx0J_6F?~ tgEB6=Z>lK_hzzG>Yx }_~;T+#UGR!A<6Lq|`;98vwHMU^~TL^Mi3XQ76H+qzn z#kpj8YA02tmEuE^6xva|$f=2#kJJexaC2vDQ@r?0H^#bBC|AxZ9GoN*H>;|X?~|7Q z%E8ythq7PJTmNBj_2<&oV@J^e(B|;t^9)x|hbFaiE%u)!qR63tT0i6lAxX>H*Ld-A zoxN7fe+raCwWX%Y 8O2~1SjVn+yuYm6@7HYBTi9ltX4a5QN@PXaSA5`nL1z)qyfddl zN2dh$x`6Me1?b1q1qeJ)dWlD=`WVs8gN<%5L%73>pi5Uv%Z^yt+lCO~CX3{rRJi{x zkPGdNtsbhH)9J6J%2Zbd6zAGXR92+)GqQycDhAGThH7e cH0lKIqnu)0^Msy; zZEp_I2schQ<3CUGgI`&-!`}9U&ld$cI_NSL8xvs2r?A8D5=p9&6;xXxwz|5y= zU_|W;*{qHrp_bz2y2xWBffX`PFKXdGn-eX=4|a+n0IFHSSf%QgHI(e>W-^5dY~>jM zb*PGS{v1v2H|G8P`#gKSvts!dN+rg<>iV!Z=j~c9*0i0}4DLq(GikC7M3fgmL}J$y zB ?#` +%`LP&i5LVGRMV2h)=OS-KRo>q>;M5=Mi zWFXVpmS%O2u6!?N6c`qzH7aSK($xtz@;nM|zm&F6m|}Q86Jhooiv|L*ib|t30V5}} zX$>}x1_L2|lMM`3z=Ym^y|(!px&`JbU;>1 #9ltBF{{3QfGtg|b zLJyvgWHVm};g4Q37#Sw*Uk~e48?0<6=cIe2F4MbXQYWa7Ueo XC;b?LGf75x@9evSBy z9T8-GARx>##7hT e ~~m3IyQUMvOiwy*Zese>p?|j``AhYq1FzeYI(Sxe*-04a+;JMnrgzzghwHkNI_wm ziDm1Kcm(C+ &61|vpt|otnv`%y;Cbmq76B8DP`pR$>`r2Yh zbMTK*SxuBJCVk)HMpcSvl`gHc2!yWf5!6;b&z*VT5$Bmbbu9>i;DjiWQ*(VP3iywO zH0^pff0BJf#z8y#+eB^j7OTFXiFRlM0<0EBiv=Jw=u5U!=W51~_W-<^@14yb_sr-5 z^IIzf#WpvorWvu(-(QPMKV(i{&7HPD&L}AVz#S2lZ4P6>!6Va0{F3OsZ*n!ugGN5l z=T4b5?#^GI0Lp(qTf(>9{% YnR zNhZZg2G=SdiQpdHX7fLk4DwB0A-kFvlk3J5T!J1*&Bm5Z3b&X2XL~~b 0_L;i=ZjWhDPszIzkOe?#ura#bE&0*=Y_fO>{w(M zA9oJE!GR|#{Qvz+=8-Pr0i;tU0sN;5|AqElW5haIkcL$!F tY{O zK!Y?LMUaTk*gkc$&`@&*xSdK;$H ga;%M17LrP>q6mc=+X50C`eEJb|<0CI;RQ (%?=AD0>`_qr1;i62a-DMv(NQc1v|ZCgk5dn4!C|uE75PHvwSFb919Ar& zvAJ2oLYYz*_8c{OSjv(EHV?<&%)ABSnwjQdsNGl%QC7##&jqS@uOjFq;?hK;Ac>c$ z0<^J_;FJ9PJc> CE)pNUe{JWgyf>zfJnQyM9vI^>ty->Y_559(-5kz^mUJ zSaEy^RpdgUH=(tQ1vS-4P&nGn^x=ZcuoGUmBxGKp9 Ag3B)9CoQp7U=RPQ{}x9IXm-VILogXFNB3OsNq9Ud#jne#Q3oq<=3DV9 zpUYRG@PTlo<3MAKAPekr7P4k!Xa-%_8|y8Bju^MfuY&5LPvJT<-{2Y4zbot?7a(LH zZ+PJCpl(rFpr`JW#cE%kGtZpi$Av#Gc4V>vR;yD=`RYTXUilb7&EFE9N*VY*v(W|7 zaH{)aplp(!0g?D9UC#Nen8I*?lO&l$9!~F%!JWr{O^M !BpGSj% zxEiFmt dO$UeKLBRltP75PkPXau=3I6#3=^a| zxz~`5?!~-;N1PV_`<6cla!VYNzaHC2!^we)d;AJ6A>oNm-wC36w6nJP*3VselgK{t zka5l`Vcz$dC@`_y;-)=h)|;RVh-Yr|A=N6G$w_jx*vNYB*EG~m6iS0!J+_aH%LTtj zyaaX6ApxU(dDhUEs~jBbE}ExfIu^%4YZO5V6c2acLXxA$ni*igoqXNF{_hN3sN4@8 z&JMa!gz1vg#@Uk6#>K{SPdo|Y+v~~@dSs+Q(co&WSRl!JbLE3u>o!rC((Y(YI7{@} z*Mmawb}w58-`RV8@a;TFPm8UXP}!kU=jT$X7GU+NtMwKQBMi-u!s=aM&2e;R-it GCTGO*Mdollxa5y&dmDA+ z?c&A{f4bF1tQ}w`6LjK%2fI9`Hy|x5sWv|f1yW(lyX8ZrJ5`o7JpmS+H(} &P8v4-{SwJ|snBxXGQ%R$t#eEzfMW!h98_F1Ez+`a@ zCF~v}WV`G}qFWVfKaRcT)z-pUaz-Gu8v$zu_eZFO6a`l5o?F<94%*YAe;ea`<1dGw z%(M4YwX?h9u&xG*S`#q%2@pk%>Ihe`C&;*4CJbM2PpP%c#c|7n2p7tJ%KJmJO28_2 zOg}Bp(W~Y#wLP8D*J~Gm_d$rqIRyfBd}`cc+0AVSuo)M8wwq;X&igiR%NOGQ1TZ-8 zeSUkp`g}cd9Wfv~*Clgps^}QKX6SZC#lKFQO_Ap32K&gUjv}eJGB#@3x87pSpNwCV zDG*Jq^5fR$&T-hR%@p_-w!)pf4@iZjl*C>S nOm|W!?$Tkknk34;KrC*F5Y0_gp0G$nWOJH!8C1V?0CR*(b+t@TsXT+r2BW zTmNc3da^_>-Fl~pu{qmlOT3Y?3>_q9dSi%t2~A=O+OtBRVG$=gR}1pl2cWb%V7aFc zlHcOeLka_3dNShux~O-4?Su1Zn^e37jym$Qz;&9m3hGi4w6O^4a!v_}a87ww?km%< znV=yJLl~MQ9aLf&@pH68V{ur*_2#i KMItKn;_| z`2>69Z9acT5qOtU{&3(N00LM6VE Mq<$F-R9L8}S7ipu;z3a(~6Ki{%4X2lJ1B0kmF2$f0>&)3g> z`#Pr-g|~w1{Ylwba7>kPxGt5TK9@4o FSY(pP=?V4)C8`u% zeJPe+c&LHa7;wIM9UnOBur-o0_*F?EXk2wU&USP|CL?+*6iyVs&LShsQYq&YstkX^ zQE4;kYJX=sOd$|p_QHt+nhNVSWsz{d0p LWeLx!02MCOAYbRMy=t*PXB; zQWSg(6)LW~QJgI_K$`s&@)_kN@XqFP(zQgHGF0SmbUOV$s4n>qiKo7FYKpEl>~UU< zR7 X6QNIiDW~BMi?@K4 zfH>1#Q)+RhIZx9Sve#)>!<%Gi3Q2cKI#RQP=ahwy%Ct2POTA9*k}UG> s}v zx(mK6@}dn6$Z9^fL)cm!P&Pe|6Lius9n1mE#n4ucBaGtJyL=~Ez2FaL?%bfU88~Jg zF=6chTa%R@$J*02&~cKI7D5OYdzabI=uFw+I1dsA39e1S$RM#~48NxRs9LE;0 N>}Degpo zgDJt#tw%QX6>Iv&29Oi${&Mz~_Yyp0*VW**9BQ)#^8|}{UTSDI`FLKD>wy67>th2> zif3$bH5ALuzT3X_HA?db-roH^g$R(DYfB0z;U}yC{Qrlvcl@vW-@1O|G-_ 5TKE+_DB!;~lvTGhx~nM2Pd2X&;8(tKb=E?Tj^wAfVs|POSaWh;=a&TT z?$RGOr``li4N1IQX7k0>fo_v}R^ S zJ1!~^I%~)MaVw1R#!bKU-tc{#38BO&Y-ltNLM?zXs)%&>A`H1dd uH6Z%pvXxpi(3w$>hq8E(M+z%idm%g~DStRNt z7r%FS8Ilwr#i{s1t6}~HIVqgx#7fNjRU(h9GhgTm+$xc8{*S(jUwDw%N_$T%MP!_v z>@uOtb}U1K#g)v5xnxk0P{h^m%kQ}W;;GdS243zEzgu;q&3lTSM%}BxH)n)5-9?jw zg~&1cH(!P~Yw!JcOO7j*y`imDhx>_cGcKJDPtW%Ntjt2j3e>D3rIijMCzfS>Pfie{ zo3%^xj;7(PZM*wFTbT~-r@IKOkZ4$5&oT1XP(rhp!P&}8Z4vXjtnW8x_^?ZWb*sSw zwaV1{G3D$zM6 !Ze%OAv_ ?AXT4yjH@DOcO;bSvt#TekKM=C0`*u zY;j!5)SVq=cb(N!DBCarYsu0o4bnY>V7X_>B7T62F)Uw4a84wF_ta12+T8s1Su+a1 zy~wXP$B(t(Caf(d2AO4mOnIDjtca&AZEb?yp6u0w4fufZFA-~Lf~+#xM`3JhU1T*Q z`Xjx)xPnY9Au(|%blf|9Ei3R2;O-{h-*VTg1nkMxenH&(9SEO5ZfKh0OZ94m)t uJ3)I1DSG~!%&$x<`U1L%&E0!RHqfZvQ z67pYg9!kV0ij6{fp=q)XV+ujsP`!dG(P3iy#+PdnDn9#NhM`-}-lr>=WSp O)^7Ar>oLw`a%=G|cm}`k6VZt460`y@}A=)T!@EUQ^tv+<(?EIGA316Q&L5 z0RI%auk^kx;x{26jWbFlP`E%G#9L3dZ;~w+sG)@j2}l`*RSK7pp$~Ihd_3YS##`x; zQOc(GA4V9)-Sr*+!dC2`t)GubIFCs&i%q3N;39qXTc<;R8Ig({MfB=iwLY45^)B7p z+S%F3akDyhcbzjB6ZSsHz0tqbgWdpSD>;OEeAAfi&-XrKL3n+C&zfk&jP0Qkz<`u> zOw2VvqL8*=5z{p&+EgRBFB9mO3Gc;KF-}0sg+rw-(%z+fsbrGD-nf4U2h3dmR6Ht4 z-Bom^ESTNi#D9=HCI22^;(jnlb)j6!^QDl9YUFD5vJ}3uDbt_-&6NLe4=xqpA*%>w zC&Rd~243fVVDVi}fikp6lt_Vt_cuwE%yi$(VB)spA}==|_q%(m+Zp$&X6;w>X#{h0 zhKP>Whl_W{?nu3tY?xw&>I^hzE{r 1d0~x4KL*SOioT|WEO w8r-H(gb8ouoN4NJ!oukyQeSPkeMd~)t4P105)_yz2csw0u( LG&RU-2h2FPCx;Cu)&H0BKwX6a;D^42 s=!WXQXMcH<$pckn@Erf|XcqygBdLo_i=V#xkz__h_$ zt?>%GJ%OA!C3GO{)2#Ar!m6g>se)tObh=_a6-2?FAs6{ew#Ww|*P%3Xeu8WqVv!m1 zLpf_@%MwGR*cjL%K~BlS0Q0KMPu%6TDiKT%h9n2#T$7_2lv*fF7qUSoBjkz#&n0Da z%wW@Rd`u*&$9y_;9nG#+5WNlu`k7jfVTe8_^5f`G`SPOb n$3IP zBgmPOX*k~(P4T;zm~6v4oR^QD>lDVc#%j0cC(RPGZ@D4;l!#UC$x6sWTBh0Ch?|(Z zkOlEzwh4{lGv!Z#7`3wVURIHX8K+`vzZn_VCs^0&^Y$Z(kOO+{5^n-Jn4&&5O{|%` zTf1K^i@Uq+u)SuF00Q;%Ry<6Vxjo1zyi`19E z?Co15^ebHKmf=1Yj|8deE08uO_-{|dI1H)t=SS uC zrG6(G;qdZ~deM_DUp4;hxU(~IdVLCd;}ZUgDe#1qv20;V1Mu}M(0jL=KmA!6rNg71 zBK`E*qI-8l{csjX{Q!tn4gA1qLe!Gjx@a&~S!L`M^H>hOc&X@StjERHRXe^am$vfu zo-kcM+cx?NlOA%XFLBZxU4R*!`+fe2P=uW)`~v^t;tJts;O0_4Cd~`h=Xs}z)tgb7 zs(H81dXu&0IY1}|n)ck%=slPCUS_rC@Voit>`j)8Ra9%!{w^xfwrst-U*&_ s=CUPzrS8J0zM<6)^r1Yl0f{hp}17@D+-ztnvgV9`%>ilAP6dIgU z$$6y3EiSmk3SR_;OB&*s14cJA6jS%2E}dD^&^XE`TrBy0{`mDc{u)cQa;B#&r%bt@ zmQ1(A{f+i3(=gpYDfo-1tF@KVt%L#67+VVZ+;sAKQUrB!XGrZD)o #0CYF@vQ>u zqS_TN2YYY#@1u>`B1@zsF<=pq>qiAH_!JObms*;>TyWLEXHcM|p-zMhQa>ra1cV%z z3w}5VRMgC{CYf!JMQ@47+^hW>I}RTXJ7q>j&I1s`zRw72GrlHnsJQAFJ=j<@`ww_7 zMcBjrd^aFG8;`ufjfZQaVO990|Fw2MBlx~Vv}rdx(Y?ux=l=DkPnHVTXVLxH=)6&C zH*!*k)^qkL%W=6I?wcFFISHv8Cu(wST8?DQ_Om*5ENZ_w12~+sj#HUN&qNG|=jwUh zQXs&ydbw_T!n7VCU28(1H8)n-rnro4xD3nsP2CbbpLApWc69Z5Q6oaV`P7H)0Sq=M zdH&WbZVeYKSP!mhCdo1xb)UHYHl^+tJq}$__*vWDz;9`X^y>AT!-a{GBj<}vWeu~G zz`CPsLrV{^VDe|xp`Baw$m%h`uHCTOemUTBD&+QIn{f;HgnZxaI(oW#*i6kHXs4dB z^ (kLH+5d$XM5+dxFkxX$YLthAY6>AvYb ~cMz(J$c~*{??7i?%RsT^UK?`^eCIr!9j?)`iqYj617o+gI3RjS}L_~baL{^pZ zRYzv#&^{@7?_st+B0?@5-zph91w=RxOcd`I7W6!P;Zm05gqocp3fW&@AOU+^X) ZHMH}kTkEs6W3Y9ynf zAk5{{rO+gZAQP-OOMlLQ8p7+V0x)8Xh;Yw|F132eNxN6Xnech#$ZXwk?c_GTd#BBj zyp$KKlIiQJ^KO~j$QEN9ZN&TOxGwUm#jMd}B4D#A7mwO+iokzio?SMDlNU?q7 z`^ &e{&$w{%<84+*9UJGb}x6o^H*|d1Hd<(s-u*c=6P~D zf|Q8Y5DoYnKMrx+4tkqYT47j>hM86-p*1U-GGfoXoG3xN;32%{=#g13q0am2Mz}01 z%EXNqZ5aE+c=0Kz*s&}>;=1h$&ZiF>lk@Cu-_(r&@4GdGu;Xnz_vV#%_&>`pjQ=xF zf5&Me8txs<8+ckt5(Wf>>fiIU3y^!azuqB>*N4>gqD50xp+PjHhKGgaUE3O2@oYbV z>NJAo#N6(=kgQ{FVKt~|ghqQ_n>S6#pF)xW7c64xd_<{|F^{|XcC1zPHmmPkpZeyE z%CSCF8;#Bgw1e4c(g1v3z&qE+w?7d%XCYpNC5v?>!3fsxh0?A_$I?p6fHN>}h7yVZ zw`<;WFuAXSTzmm7YG3LZ8oMK3DrDDPWt7&LHz=5w1T=yWmaMGOHP>rUodadvoiSQ= zLtkp8Yeqxizz{kUx*mjRi#^pLw7~<}70%@aCKTa2PsTqMv60TGSQ^o#hv0AWCTer? z?zI?Y@<2^qxcHtW3Iotk0qgG4KXO*ZA7ldKT%qD=*!=E^;0VAY5cHh-6` %KDw!i9*=H>RIe>wD5x8uIcGccod0g|Hzz`K{$nH&SdPN4LF?A%%%xy+G55r zUqO2IQ(%M~nLDe+yF#O_-zL;&!sc$kE|qtn5Ym@w9U@xk|Mjq8Zz@g3y=S8^1O6?a zfH3MS{I)DNX8HS&IoJC;w 3(Io_i0PnePzrg4(QxiaF qO6Wl8f^}*i?aC;up`>c=X806_e> W;S_6vxXEZI~AqfjQGu2bc<-$UhY9cD``Kt6iLx1_0BVRYYqqVFnJ5< z@(zT8RZr~cYe06^F_XJ?&$vDpKF<_pw#2+~T^_k8?$C2>M0|o)nfNyY*F^X8=2>TV zxtBo3{g7L41E+5MX+p7j> 6e0 zoE+5e7E#S}%qC$Syg<0kT~Qo9)Z6ZQoO7A5*OLW+|L0f}Mo9l208Vu!aH`4wPIZco z5iCN2yCXV)Gk?V~Z=sgAjb* fv6Ys$LQIz8zza5#6|<-Vx%aUA8)(Y De?VlEXx(eBs63B*AX6UL^+Oe^ynt6$5u z^BlGG_GwWfl$@$f*EqW1msQ_GDK#^wB$OJ?$msn1ex~I%5z>qWnN(!Q`$rp;YlW;9 zE8(c(UL0J$G8vFoTRgS{fG42JNz}^;EsAhozOEI#*=lrbw==@Y3Y=)V*x!XaxJl3% z95o5h` 7*-tm?I+BR-s`y~4TiD<{bEP2xUXgGt_4veo+ zXk&sF&In{Mvm@ODzS;KLgQ6~*taFz?SRmEsAoBA>RwUIx!#lua;3xuqflIi$l-Cq3 z)PVHfR+-9Mf`^@y_eeI74YIDfX$XJa)8#VAPQ%COvJN_{QTCL|`0Sm=e9IUh;q|it zkdLwtCn$gru?eDp4xoFG^XeP<5HP-6-R5g2VnGL{VzUSM|E| <}3~y3j z6fin8o3ckF&mc$0$${pQIAD{eY*ft%INPYP3KWRIaM}jYDGRQ-y&;Xn=;2r0L&=Q1 zqu u>Ba+cGm=jbmIxw@B4Cx^0wNO{`T~b(4=P4JhTF=Zi zbs=6%#F~)E{6iRV=d=D sO=`|^4`QO8~CnDV(`ayv4;^Mb{YT6~e34YYqp zw`Okv-K@F$H6t=4yN;+cLT*ByD1G(J x}MFzg+8Ltr+fkH%M5&m5UU(ih*3JikSOV0=K`E<|_90iBC+ORG5_HFtrJ zlt?357EKO{GvtFBvI~2SWW{HrYktTYwaneL9_JNI652sU0qE)19>p5Q=p~o==b}sQ z;knTFtEO&9j*k!9W7MruWy^#g$hdAPl9_Y+^YL2XVs6NKG}X}-Q>m?NyZVoW)IMx)V+ zpcCH&|JoR9il@57hAC0EeZBvlu6}Cc=<4g6g_j|763GCOu k}Kh{`>lB^}a4kbl#!wI{6(kY77r{g76_c=E5 zoQotwVreZDP{L1lB@Y?a((B#tgGBA0(JyL=0gMsQ=?6nWKYk78){6NT2{!N&CJi~_ zVQj1n#G&NwKv(6T8hbWoeLACiZS&QPvf9yMW%9deys_!{ym5G8ehO3+j*e2nfr;tQ zeNVMjb_mjD5(0CD6xLRh8MvqRbb;z{e-j_xKDaYZS2kNflVOYdfu6@AOq?hwG}acM z0ciQTa5)m=q-u!rh*JnN-lIApIA|=8p lLeHkvz)F45ps*q!#VGd|VJi2ugqMKkCxjyje?!QjC9`+@t1m}OL35hh9Z{)GP3 z>j3iD;p0L!Z!%%`zH%x4*~o*?ip0pP93buWuH>t~#Z+E6CZyyU)@EKp+$%)T46k&* z@%4!&&4jJC;0bE{nXy1P+2RPod5KaTr)5{AwJ=*EJ!R$%KgNCC^{3jhN%r!%uh-aX z^Y1h>)#~5NOgPa$XIPg&_)7abHjxb3ZoV;uk&+{1&XzZ%*=eR3?!Q)!CZn^@m;)LY zE1*2-SxK-|)_CXLLB$pYWwBV>Jnp)_Yy?V`U|Xr&{KlFQpoLplnEis`V)G;EV>+ZA zU3v_qF#yrm{|krzxfHl*z) CxDs;#vDN7LXNm-9jAASeBHXZ>? z8xV*ybQ$#Br5v2&`?MYc3&eHG?mqzTLH Vi zhFN~eqB4KIh#i=WyZ(Zw!?d9OS*CMSk}2 Mh@ZYk*n>ry7Y2N~zi=Z9(^MXPDr`1ox=?Bj6r zb`>A;yQ2%gjt$255gCnv&Jo| NL;_{wnSAUm0catCG2d(43r&nM85{Df|Lps ?YaoD0# z4;xTEOl8zs@5n4f|KehyHQ(OD*@Rc`ZwSc2DtL<`(hx%_l2@z=oIVTy;naQNq_D4L zb>Od?4g>WRco6;iNUmhk>z6$;?s(+PgVAyfC5P@bH^#WZOEj*KT0C|Vb}LsQ6SPfU zQi{x8$&B{KN2JS&<4!{Jy2%YW9+sr$&KG}NMMHP?UCxO f|Dea9jqkn&>@U{0CP4goRcdm0`#HM@nv*i{RYD ;{_ zPTQ%J3?*PYOPU+dL~m_m<_dJ?%iWWl5R&4#2PJb%ieedlPE2G`13LUfmtv75gH?qy z7{T0b1lxuRr7c{&8WbYXlG;_ER7wR*uZEA?S*7dXlY*vY(cy@Qgn>0yrp@w;uM#@2 z>q8zoT1bfWUs{sUHmL0gW9M7J_O>NPHPVZhMbE+gJ;fXaTF^(vxH>6o5P0d1Mj8J| z+{&>Qse;iZW*C2#0Db@m8WYkwP8h1b?Ia;5b*uUL?8vt>V006zOD1`Ibkp( (@iqRPsD-UAFd=-En!;pf9i9<|F~Z&WkS$s=9P?`LnYR zw?>~~r}hT_1ehQ6K=j(y`GRSc(15|GB5AmIo!GhVB zY2eetPFk|C%E~0XtP-+VVA{drGXwD$oVbeVO=PD!JF_GhCm zrZSO+Gzh91Z+)+vWgej|LRfQHSz~@74=V7oXhl!$RI59{* S}lp z%}0WF?f=8Whb!8uh+t{j8bABfaM*6UXq0-YJ}7>X<7+cjX6YR9fuv?)kiKV&Vr#_X z5gh?9F|xKVq?h%`_+Br7qV*fG{E>tCg+fj#lFhV8VJ%(=Bs-f!kTBIB|8sM$U%HjY z{5peM&4|{HleloA$J06(-7;!~{8L+l03;&|N9M7Bp173zi$Yu#JYvj=Sa%&z o6rL-KU$*Vt~C8 zu2GUo7a9}6Vo}$Cj{PmA(saOXlS%>$J{I(X<7$$ha>Y@rF+COUMLSNoUG1g(l(Fj~ z)tuMU@Hl~6ue}~Tjv|p!Mtjflz{<@pdI7^l2AZU6e_a2{YanhEsN5<4OSuJCMu%V3 z(g3fo|4X?sfXW^FKgzvE{cq*o`?qqRmMGQ!|4{DDSp`iXSd^)`eP1#j{|77rfMgM0 zD(Z`9lIt{!ZjVA^EUIXf?NSFL*wYS*< bc~+D5XD(n9t0Zn)?>jQs9aX{CPNToZ0{_3yDK%R z)Qw7@JFiXMpkMBeFRWCy0(El_{|gpjrO<(3G0qRVTMqLtSoGj;&!k`e`ubq)!S3@H zEJ8}_^J&nTrIfFaf*q9)zI_ }R@o|$m zI2~| dCwhXJj6DRw5;U#lMbZ>tUh z{Nf0OE#qP^QVpTqc0a=&VHKh2`K9C6;L@>yh)ZZ$73%u|#>mp@yc2hxpTiOIWj-uz z9UYOfOGC|~YUHS|VKIFn#Yxat$Aa1hn-?D#A!Y!VE0U;?{%leWD}LgTmLJLFQ{Ss* zn8e|VSkl6_Q+fUjhLmu#Y$T?7$C4bw_D_<$O$ RNdY@J14mKIxVS;DupJfs+ ztWfyYU--opjobT)A$pC25d~ItcVIierbzKQR? {nRfaJ3X1-yoHpd$>6>T!+bNfGmydoXjV|sC zjn8S_3(vOqOM^S%heYI{f>ok>7CGbDYJ?jzw~!{Y%$^G*gtolQfFo`v7U*==SBqC% z2CeoItXY$igi?^QufY^AL@BU_OG!o|iv^a1V&18Bz$j*!B3d1+NFNH8f_ZPBCi;xb zb}T4WiVZFyEf^2 >pNcH{^-$ z&h5UGQ%lxPJv#uol+wr$2tiF$e|g&hS~88Ibn17|C*SmH(`F!!uW8Y$XvTP*H1y#I zcn772pi3KY>QrLZPi{Ixj!#-X-*6y;5+Hk7b}pArW(p4Ii{7QAv@v=~ Z zR$L?dw-JoFLv(~%*dP82$G4=4k0o@52mwwwHl^yKL6#jf-PXx!@X Y2&~o z2H9!=wLM)|j8~KwvGFMEw(}h 2%mDm?fGCig2T@ZO3rx8qMi%fXQ5-MEEE)>5+;91 zW;Eybo7-ng5FeP;tcS~EuqTrbK>&Wl$$=X+L#E-)x@sTb)Xx*44>600hX${F!Iu?H zs827~n<9z1#7h^B7z>ykWiWmmK6u$|Kb@YXG_)SU$!}S9I;f5A+*K^p5{I=d0a{*Q zT8dh`;XaKhP~gUB;Sn=F6nz*%_LHV-kCvs! PHbv1 &M8bjk?;$1C@qxxb%syLu?-8x=40(8J@?n`W6jT-R^Ov)7l-1;i z{Qi>Zw$Oc7&fjT~Az_lWMnA+YQJ`*x)`@|~h)H66_~c;hp3ejhAoY03seWA!SYeGp zcfn}hHXNwT2q1WB3NFhMs{tmbP8_{HX1LUvON1! FbS-w5` WwGz1`yQ89OhTDToX z!85#ofF+&YITR%AFh6$E=ifo~xt2mU$@Hrv&t7|DPmP*#lDLx8-dw^%oIb3L!Q%DB z;E%9xcl5IZ+2_;s_Gizk?F_W@vWRrQTlQUYbToq72*j X{nm5Ks zCAragKTX!OeLuC;wc)pn_6 z*DbItgQbMppuV&u2MvH?a5V61`joswIr%m(UYs*_k!Ho?Us*<+Ys}L2eai?rXgVNn zLo#VjU@<>9jUwn#tVBcyNB-C6@1s2&QEX~~UR;0$^-h^Cik%KZk4&{Atuv~GLF+?_ zQ_4Vx4A>Mp=aVESNC7}W)*;k%-`Qtj=(KU`t6#ilZ{@gFU>V*CIeB}bS9a&H$TrnS z*U&=d6GKu41rBel6pbT&I9T$R#@-5suP2ZCUWCOF%_+-pSUMX$!?V_GZR#6uvdL^} zjfK3SQG^Pr!9>l ztHp_ro5d$(VvAfPQCCl2 z+dI!UAFAY87_=)PT8iW2Gfat+ctM0luP)8qdUZ$FV!~bFurUT=y1Lqv8r&q@g73$k z_@O`keFX_v5dGKpd7LXCeoiGIL~;E;97I#Cq=P8XLHuvn_kSG(5cXMEHK)9gV6FTE z`}TnwLvi_}A=JMd1R`F!;z_L@mQqaKi9JV92+%?3u(SXjMD$+=kslwnxgxgPzds88 zbSxNIW81VnxT^ukY!~nM{Y(*GT9X?gW{5QjyNje{fu9SYjxxPqr$F3#MQV)snU0cx zsCb}l(2^CRM6EIe`CS|Ki@uld^O~|2&_w8OBQo|2@c%Utob~!r*nMu-dnb688k)T{ zc(2@OOUg8aiomS3?;E%7=z?fFR!~1B4>>Sv&9MB<3~*;rC~HJa^tiBcqEWyMEix*Q zPmOtxv_jR;1fzS7E7xcH1w lrBlS|orlK|LHqOH9XYoLcH zWIE%BY-Z*b0D1_Nrhj>e2Tsp#AX&V8a}RKlS(W*QKcW;UQ9+eSVQpHc3IkFbMKt_b z0n{6Fghh12BiGL1q{)8Nsr~_Bk?Pok3Yh~kzmNc 19 z^$4T6 ulCNfk`Rsxd62}iFQ3=4=tDX3yd8{DF@=WxAf5A$N@%!{-s!Dy zl$NQJ6&YNQ2`+2i{sbryKb3&3Bm2^l0Isvp+@1su!Id%~A*Y$q7QUAW(2}{qe93*E zWkt=*x1r&0{Ra@VB|uW6pbK%=^sA1)6#S`T0$r7FN_6h~RG&HT`qa~zXQ)nif6RDd zJY1aq$IGk`KIYm~5O^mKi`0`3R2&;hhmlgV0G9@=!DfWXTGw|~%JKj!KuOXDwJIpS zQ}7qfqoW?Q=p8a#ahQBTZigvMe{OqZRwMH7S=l^o=E6V2xo~=O%2-A=-tTU05fXUB z$anL#h{-d0T?#?xb#3g-8I5arIjgPU_HrRXm*WH4SI 0*YT5Yy%l=&5;)STWjQ+)asZ5k$SMPjUvUVfBzYTo3^=#-K&!5k1A8$aG zpQKWI4C}Nfi_h0bQ83OA_dX0Tz<7vU7d)$#(z$_4gKZ=RC!-4x4hSzoR8IhLU)+F9 z+%*iIk8w%uhYI(#Lc3ykX8FI-0A3IaFAxpb;g0*>yXHA;cevKER1T?SUk-4*U79w- zZ6XA{3V*` V^K14P7AA~y-1Sr zTE$^i7Yk82{7~(1a|u6izqU8vXCExuPX{ig9!QW@#yQPuBTm}WhgVITGlXo%NUlU4 z5vNRu?+3=CN{0;GxiSOhRfrae@pSd{Ld>l8HS!&L2MqRdZ+0ve!JnLnhtwBey9akI zpp#m~^LuxO6Sm^8aefn7BO {Msj||d$}53BX86u3W`z+$CeH7%-{a!( z_NglNN*D}L7`9+-ozdpTe0@ZVtb#8^&24_i30e3sD)-bCKuRny&!@InYOZPHrNJ%i zzI@=yw({itwpr{@HQ&OgzIuG0125vZbIK~BDyb?HrDb!235|Q7M+eR!eFx??>T1vo zdBIvNWEkcV>AFn5>h)P(f?fiaP bRNcYUSd-pOe0Yo ziCl}A eA(gb{v(C(bk`mqk)FxGt5e%IVPsE(z{p;32h0aINmFLEaUPLe@@mq z{GhbO5K^yHTthtBgWm@eo)TzOFmV!(RvG_5J)1>S1Lx&{WjHO1B%V?itwyYb)zoDc zy6(b9!}^M#88?;hVrSgBF^$jKl|P|y)WilPW@TX4L *&*Jb;v zC%7j1q3ZqTPqw~=+aLiZi4ze0uOF%OVhV)1M3dXPX>%RO@VQKetxZ2BgfES`g>h}1 zgnxne^Xpe?i%!rc>N8A 86`Z*; z`{r$^7WvM$x3|U2aQD}9LgK^TXMox?o(|k@i3n=S+_rabD#if#b2-be^zliLsFI;@ z#u|If``|cG7QKn0-|wvwpb5Q0*JS!-!bZiY9jll!)TmUc#o|aHYOGX0%MkzBZdc&0 z`+XUK!X*FCb{j;nwK=E|cz-6|`<3JViORY}nXf<*3vIx_(KoSFr2R4^kTxYg!cLz7 z-2|H_oeHqH2F>MhV&z2rSDBRZ &=Q6>qXGW{yoXHMg>#q8$$$ eG!JOrM?AaSHnGTvJqR zbRWx58VzE>i8Y*xl(Y%!MGSLUMW6X8C4j1mF?IM4cBZ)Ox9S@XLuHMmfx( 8B!M(z=wk^aZCx=dCqqDR6G6Prl ;V=_ zuqRwzOXg5Uj?%X}GLxm5k}7o!Ex?~|ry+FCvUZ#bP&5Y6_ mG;+{#|Mgrk9V4le&XK+*wIO$FK;U@Sx2X*L2VV?@)6z@Gv&cp zqCykph74w7atnc|*awoVv&at6Vl#cK*?>!=c%53?0ffpFos@N$ZQ2v8jBhD>)vTsH z!TE~vUbAoligA>>$u&YHtVb>$;Ap2lnN|GL>{eKlO*bwL+R;GDa*bvItAX1?%Es{~ zpOm3rN-`MKisW!TJ?i-OYfp@@czXU}$q|rNWtOlAn{_0G)oa+GEe9A*Kb}RwNIx{} zN(%yUP1dyNB$P_$4iWE-w58NNtGb~7RTifEOQ1Je{HSOoMmXA5=B(`Ve#+~%D$(%T zvM{JTQP?ppF!l)QUMtYf?zXdJ6QbFuP!HiHece?X@AI*(t~oIs>M8pU@jnM}w-{TU z5ds7p Yf+Y!qMjFVs|PqE%{DUbhe_`;TG>02L$o{< zmSHv+?eVp96EcCYih$v7C@iTJ<{aAseL+h+$w5_F$++j f-4PX0M^C7U^(mOtcNof{P#l3g$YOUeuU@ftxl=E zrD-!z@^X7TYXvTqLhzBq1}f^n(+^3Lsr6M07A{kgmN)2&TngF z=$oG |e!HPUq`Scsj{e!MxA5*=_)4@Y>Qoa}!Mj2mH=tdxy zg{*>hIL U83|+(69)~vc+6zVyx7w{#5CxWQ97)d@U;P z!c`(n%WMV1XG`Fy_Yt^V4BL@LI-Uv5u_Ig=Nb)gGRByh!znr+wfwfknDoQ)cSe#hi zH|q!i#I)WC_Hd!Zh4rHg+K*eQO~tsonFoOxg<-F_qYoZH1(<$Xea(SKbUc>``^m}v z7NfucL6K=4yK^O40WD^TI0a}NQVOZuU?30hqhusVnhXP2<{i-;2&@X<}0X^O6p3Z-iQT}O9K)YkxDyr z&x<{0FA$*s^&K=ht!W$RlKs~oN@^ {eyPQX8)U647ojJc3lStj z@=REuw%2H?*L}O&7+zblGTYg%B2>97J4b;E$$=xt-fS ixm}OpVzM#P#?Ssl zn~DZ$3CZsJ37g7}8&Dyaon|lJj;dM4Y5jHUY>oVOg&cG_JmYoK9&ALSs#m6KozYAu zL*V!lf~u6gA=R6dw%c|~u@1Ve?_!qWMe=qS$B7+*At|0A)pc1R&i8=rWT@VJ04DZm zXWkm%@mizVci@YVO%XA8;M@9<#9~v51J{tR$ }JFzV~de*ywnikuD5m{gTSA$Ms%}jANk2&!oLTk{6*4kvB zAHD7Ln{#^yjjPh`-F20S8}3WdlOEgW|7x25ZN}ytk_so#W @-Mn z&I&OlTNw>(7`=M8^>TVJO&{9$wUVTYgE*CpsMO`N>eJow=Z))KVsq@zmodzU84f-- z23lvApgPoOD0Xx}thflPLWtO-D`Z{UcEL?PUo_TM)d&OyBJoKu3c@4APtEn#Nuo#x zi=MQMSX7wE{uM0)JY&N$Zt1Pr6Wr7FTyd$*yHZdug=PHT4hBdebp~{V;Mka)UrMq| zPK*tLdAovwOK3`Q>;u28MgR7!C {|#G&fT{1I&TrIAW$)AP}W6LBEF@zbUt9DG36tm5h#j`vR=Nk zw_JtKH(TYA3o*I3$6_1By`G@EdCqpy^a){uQ8h_uKj<(qiKOHOHz*X>)KDoInQ-md zVZwfv@KDdtN4AuOw>5iy?!Oy}fgqZ`amD8&Gy=Y;;d1ya`GooN3De!Rq1$CIhlZ#l zi^=uLq6@$YV}KEiLwYY8T{Xt#59Y`%j=;RqA`9D|{BQ3Dy9W)E0Gh)G;01Pv{!xja z|HcUx%v>%+j?^UNpkF~G_qwmaNNgy7wRA2(M}R%;U#>U9iSTdo$O5x>cvz*RTcSEb z`wGciN?ikKAN-#o{lpyFP>Pp*5#{COH|91xR?a%iwdw9uJnp_Yey>i%RkgNFdO)B6 z ~9h)Nk~`U$;6V`jk@Do*~NZ_b%ntl}dTUfp7V~^jx@; zD&b!KCc)|k0VWc-(ptboA|FQS-@8c@Kv;(;Eh}8mfbW(WSlxcUsXY*@dedNTU#0VH zg~_lZR4)!+hH8-1Yp456t>pJf>qhKCGEi`54u=LG*I7xxv@ux{w3PS-Od$Vu3*vwY zq&CQOmfqZLvvSr%-(En0{BRfu4KR^-1SS$BODaZMWu?XV*8*dX@SR=X6#&5H1oFE) zQyen>vV!`sg3^$%ws#;WruGGq36z_n!$NKxtDFnk+ YLU6g!%Q(5!-h-|^PUa@y(4w`Yt2H{Qk85Rx zY-^^8ML%A;-vg-e@mi=$gaHNO+eyeRmJzl4Ys@q8@a5qIC9^sJ7LnSthRJ+EIis2S z*E_@v*jBMatxJzgZTC+}2e&J=zg-2r8#*C@Gi3zLQTr6X7ejvMN#Ser!}CEmHsX62 z2?JvRlrIsrn=t#btS;q162bSEL 22iLSXRS~Fff1MRmub4gKp62a7QuT2i`+0V>EGaW>70xr z8SL7Y`A<;+MT7i1cd+wJXykz?EO=lU3FOh$_;3g-nMbr_pICF1 &tE2eXjMa1XfYNEmRr$b1VBV#;U0yoP=xNd)z6Neq z0=JBRJ!PQc3?JVm6wU9R@puX>oG1^aul{t<*~jJW!w<0WAqd{G$>RqGjnA8t>DKT& z1ac1UDk=Z86pot6cLMp%#!vBADG32bPj`z$hQQYm1g3Iw_OC5L5E!G5tl3r93FLH3 z 4^@#JQdqyZe<6 zwZ*AR`(dyo80WNr_;&~y{qFU?N7K!)A)Sg%Ym2oZyRN41`!{aQp`AP%;w>24pr0WB zX)B*$$(ZY<3*bQkAsk#Ho=J)|IA$LN!K_JRA=0pc0ZbDyYRvVsQxv=RkWzz#*ZOTg zJKzaq5-l#lO|qWXoYBuvX5lRpVIzKJJK2!XO8BAkJEBj_KQFpIU#gsVhxBkMb$rWF zd0aDj*!R9Wo!?8pVV|RmmK6;<)_Ben=ys>P`&t)nL8B)JAld=0`%}dyhY;=`-s0<@ zIY*<+G?dQ7X=Lc~x0!}zfr2!l8gj$QDoQ$DyZw>qSkFQ(d!gj|lBOB4k@Gg8`4nO6 zG{mRzxweVun*Fr49A_MP2^@74hYP)Qzec#r^mXO~Sk6i )%>Yh6RbKV?^8<)_Hh|&%ii9FK^@&+mqsy0_BNTjdDxD-%gS|0qZjW7n{;)BF+ z@eDM@P5DKgJ2J(8x>){VH~8S8Pw^9*?a!Fy!&poz#*NJ1AHlkJV`n;#1i+&xSTEd6 z0eS}xt5;vX;kII>6vUyWJ(^QT?zJbU$+V}>lAQzMt;`cQXjQ@K;egx?1IXQUe^6?T ze90GF$M_d_)0xmb>Nw$9GZ%>tXCMp^P_c>)er;*p{-KFhLblPuSG@yan*$~76}6dr zG- 4|c1C{s+5hFoPX9SNSb0-y@j$5LCyofq^|l CKebCdYR*!M%>26r8#aCSb7Kk5owQaBF(COIA z5Bv9dAl!xV3LdtSo9xj^AWfapnmXpdFX_=$P&;Ts;(3YD*@ZrYcTUiAA|9$6@3O4a zBx>EXM|VXe!CI+)h<^u@(f?%YyeMzLtn^BJnVMr6+~R4%-@kd $j^wo@E0*amA}kcRiXVh;Wf zSLeW-3Ak+Q*tTukp4gb!p4i4W!Nj(0+qP}nwsW)hxwq=p`3Y~;+g;sVYdwqf@?z5R z-o?wQGl++cCfno|LN~ubzm5m2edoiTt04G(p@lzt^4Muh3@$w9ABtzUNeMRJXSxvJ z5e2rv=2k>P&2^bJQ?59>r8etObi@)(b&ItgA^`BW4r9t#qmJVuZW`_d366zoq8qC- z9$~i`{R#nvDr&mfMuqFQbk8SSW^uiRGLG?VC{d(5%$yt}1B>qhmsF8hfJ~DFe(n%6 zRU|?Q^?RFkDoa`B^j!ThO~Qg35&>N;h^t@n7HiIg%u#=Uh(2l1Z1CEy?I_JDXtWtw zi3xyGx2{X4+O|rtYA%Zx=6y~Ix2OFs;qH9+ZF+I>8Szx#k#=7~Q6N=x|K&tSE#(YY znw$^b_772PnkPwc^w}ev$s^j&awI^&+>telvhtw}>Z!m)jTXUmhTcfYO1$7dHn5Z1 z`0&@@WSAe64@%b$u@9MS=wGA7kd6GDASYn`(I25u5ZRg^WoAWmm%oe)rS!RmwaVPC zX;}$)%dD`}{zBREC#uYwc|vfXIj#HLiL=Pk0_{5&4!@Apv?6k7lVic9n?(@@9=xvx zTccMv2#19kj=id}xN~dXLc5^Q;)QARg~k5DmR6;%Lq9Jf+#BUQ&yPk5R~eZ6MMA!8 zD2hv<5q`YeknC+l)-Yej`>5+$H*`c}KhSa`HEF z-CBq_>J_{X0r1HV(0pQ3Xc0 z{a-&9F 4fKVfOzuZuhwlcm4wMG= zoqzdjt|uT{!-^0Vh=O7mMw5ZbQXmwjICU loX70d8LUC6OPq9cHmYtnpZCXbBb(;x6?5@3n7h_}~hwF*g`6>XF2rOc%2;C`HJ z^}(7L&btWIvnXGaIvop(z*$TuQkkq%JQRF)te?6>DYRWOoS|wrw8jW_lDeIqd+b)@ z!as{_KO-tVYX>ahd+h3`2O>fCIn@cctMEOivj *advk1-{P4 zuT(Muw#=8YXulw-I{#u-3pVaz6Ky2vqk1Z^5|0xi1j$JQt1H8L3dM78s$~V^iHYV( zSNP)uGm(I@DH^H|fEw;z{L6!)`I{ysQjiPd7>kDeXhAaKJ{C+`*VgNty2;T U8wh z;u{I+U;y@8|1BouC8w?$u*YCkY@lYptjXR~6fvdyW+r`5b>~}M8?YTeTtx`Ria4?# ze^$i`EErEvZ42xdA6Xp >e`_qaLOuymk1J@^u#%ICrV2jyU7PP4u z>OfdN<7tOhC@hbKXsxc>JfHMD1YZGS1{W#)uZbENPmlS&ErhSaysYH0Bkh8M`UtVu z&R}SYw06@`Z|mK^D*U5;u7Pm-ou=U>!`cr1{cK$twuz}EKTdd)Xs+%C7*^1@mX=7= zo%&4JF7U?NJhxeZ1NS*SZHQj@I=;1r5wPnBH$np!^}2X*?MoA)Hj;;*y$#p@hK%ug zZE>*8HEOvnO_((I?OfPM(h_asL3~hVL{Tu3p=#>#Ars!-;(JDv?s;&NnP^mHrgDko zsgS5GS)rOnnom?^z7<~)%KUixuqt?-=`tM^?TIfV#VK(0k}xwAjHAEDv|K-^9&cVt zMD&b!+pt|x{M-`zX4dNC8!|kN`^ZJ|MBdAJ|MG$q9UWg>%MMH#zgbHKkh(X!kEFEM z-=_<0sNPMx*o7UmcTWO=tX@>F?wS9kc>R!`vnBYG>+=)Cm84{~&V)3)eNT;mxt2^3 zHD5_=VT9#{6Jb-+i)D-@)-^y Mo`UqwBkEhT!(pQ9d$J0 zTN9W_g>pPvwKsM#4I O3~?&ZTHNG?A*s*VV;~p@8y; z*`@yE=WN5|h^idjp{Z)#E~7=+nH{M-dT zWSD~TgJVh%c#7T#&jbfXRZazj#;0ZETndr35k*REF(kSv4>r9E5WSdC|6B#ErE84q zMB;bq(EvQwCf(V3EyJg1kt7hW90Tnx?wrm&{~#&o>pFt`FOdYQPU7)AOD4#PWu<+V z2XvUI=&F*Hxa?Xy@G#x8t**q2BG@NG(`%ILfKHWmWjw^M_%7X**8Y6GX4wAu-s^Us zQZ^WnNjjD*;LP4>66xFfn02WjUqyh19rXeNT?ZJM0u{Dka)8*SI-&us ;d8IOxJGrf#cTg6(t@ zJSP@OM7Q1He(HN#PeZTb@H4(~2Z00P`M(etT{%l+-~1$za&}>KNAc94tjU=Tg4MR5 z-UM*lR@BM{6}c3G{ghEvow>ed(ifgvYUxQu+z=t)< T7cD1){p zo~e-);Izkq_L-%hYiaJfmbw-c16i|Uk;cSpJ#V|_oW6SM%+l9ofUfOGhHTLEzU@W+ zOGNpiLNg6f=%PH|Y1-#x_Wfw@^Yxmr8iI^j6Nlj80#nnZbjBwQE8Z=@Kp^}5K8bOW z?2ju?rh%bN3Hw=*tn3>a7&&4$Ldd%llJ1B(AfJ+pZ)zCfv}TqI-lWPR1k@9{hRd1M z3mZ#3FOV9(NWt9fqLCU}jS-%cI?$YS@}Jb-jAFb%VghU_<|7ze^HoXVG#1D08(!b~ zT`}dOoFAr=JE`bXbd;yCUmbI%0rtZwSRi|1SeztGz=#izhR(=HUSrzVE@^Z^I5qP) z08av2BZX)#4JD&hp;5Ca2NkGZjYNs*YCgpZRfC&P^3|W#&Yq*?#ofhmx4qWN0G~Pw zH&3;J`=B`+f^e%7m*5?cuh*Hw1cQiB;oPg$z9l&%gHkAKe4>Wnu9Krs;^3FX1|3bP zx3_ODjiDwyHy}FFPoVA4d^?ZT1BOuxh-k<*2iAt~h}`JenX!9`G=Nvnd1X-O(<3w1 zxZeXQ1jP|(yZ~Q<;5R1TO=A* l84;{7T|>FY3PofIYT5 z@74b CXL}p%Uo6VP@lR7eOtxTvio$se&a6IWMDv*Ibj%rNo+-$IVqX&`#q;H? zv^OKjWZemQ_U8CdGwYp`>CVm_zz3X9|H?z8B5h=r!l~q#H?C znG;pnU0>&2zO$US+pLXjk-|F2(it5g#00OEY%XfUhAn4EY2LlAt-x1y6}oO5zHuxD zsOkq*5A&7#w}RI&vD0MKBwZRces3gk8$CYAm<*e~c;gdF<_j&z;EbT;<4<|Wa9y@1 z^>4aRUY#Us?ncETId1+N(Aia%_mBDY_;H}4G`(yEn}R$u_eU`()v^TF?9{-cDqeqN z`KHW&jdAEIwbhY;^V79v^-k=F_R_4>19=D4MJ4-5iJY2KDYSM7xcXQ@dP%c41@>)m zA$NqC8Wql!Fd~8kWiPT0ZO@H#+QQ~<9yevvIMcHkxU$t&?<$M|ZN=HQ_uc)LVIAv^ zUybk`_0JGn)N*5Q@BNpw#|Vq&ZqMtixpT>8#+)9mTmWwyBKpNUF_Yx{4ROut>7J{N zG`u$6a5O9RKRJkcf7d6xo}L22rD9LcQ9sI$mqHudAfA@YHa}k868ElJla>0=%=P;A zu|%_R*g?Hk`@&I#jjpWbiM>{ec1@Y*!+1Qi@Y=@Xt^P^~_}X*x5q>!G->_D+4{u{E zWiG3$b3Z{08@9B!0RI17ryi$`4iVVDUSiY=^uO5ixbduAj`;S84}dL5_f(A&Rge=F z4|EMn0xTr*6dIGy#i-+iRO)5hHGC5e%b1yDB}}Juukx#?G~_8MB7UhF_6V9#C3OKv z(J#s$K{+`LCQDmEUuH*UM7O{P+f!NN`9K_$78M!zs_xzU@aTRp; O&jUf{hwq|Awa+;5;&RVQtH04zSu`}e=_>*96!t@F#E{`m 9FGId@q9H0>P9?^?B+9I38PGC_pY+)He?-g)Q_0G;pCT!m&;h|0r4dv+)c?f>glQ zj5~_V)H6~KixB$r@e?zkr0aR@9D4w~g*wvFO0ttvS;JH83V_KjcUqmuoo|fn7cKFK zOba%Y^(#(E7b;Ve(4C+699s31?+$AE(~PzqZoxl%b;*QuX}(sQgdS5X0ED;&3btd6 zD+(U(>%-$hZ#!Rt;_pr1Y&Ws^YSBw{vf_68X %6pUqJRqZd(he(k~cB@f 9 z)sIb^J{K}SyafVK-a=j)slY402qjlsKEB(awh=YIR7_5pb-WnpOUzrnv>vClKO3bO zfsVjT3?MSq5O7BR@W*)vzP((*cLt!0s5uRI7+UlG=G*^33siPAeCRmN*ip^1sbRNO z0D^EZa(24yMkL!VZvt9s;rGLg^rO}-#Z)u0TE&=Xic;vIP@yA2I7X2r0LegY#XrQj zdGgNgi$)D&yj;@?Z^~V2X#|B}R@DhKSz68c 8TefE}`U@J9FsO%WNQvpUg)g_U-_xD;sT@w;P{~K=mgx+=&0Jr4X*LzsK=3J1ih^ zi1B(m1b|GV;!&fpBxX)dX6rc5Y>8}l#hd<%XSZyD?J1?QJ8Mtmgzp)O>68qvQsu$M z>*{4IJN~B@$&cN|#l&vvbuQEVbGUkwJs_u<{$kkQpQ^ufe$|E%ME=@0Qi^25fzx~M zh?)BB2Bq9{+i-?`ki$emje)W-pjrCweMs2%J|B=r6L8uNCnE*zs5G$Z4+Ev{K}Iyr z)JEv8zGc6IG6jpIp)|E28GWLw2jRQvb 8lp z{SjaTnIt+RLQFm4n=I&?x$X0E^Og84<^}W7Hv6!b_xq@M%0FaSTU447wHVl*dR}(T zhToG%l+E`=39yM(0eGCx?Yf1L(2~z7GXy0ci!RA4)6~tF4b;tt!#EpC-7=~hfc{f@ z>X$@F4NM`Y^#v|+hHJ(~p}jQu!BVdOwM}^(*S`{5F}fJn4Lb zfVc$NNDzCKl>C$}sJRW>V6;r1vy11R|3wc%sBliJ1{0C`3&}scre{53e}(9N8ZfnS z3*Tl80;PcUiEEU=zcJr$7PMuWZANe`cyX$&Cu1cx<~J*6ht7Hju~nkZC?^6+iU^=< zVyIJ{+t2?`T~|ZlPY;NQ%_;#aJ!F;Hl$e_bOxOWhKSQpDA?P9Bm}}F7P|D_150JBd z93CeuidGCsI4+Er@*x({Q?{agt5g-q+^F1dNd 6fZFUj0h#FjM)i&vC6H0dyJtr!_1|IH^)< z;%A#(6mi&Cj7uJJoZa@X?e_t *}kqU?aesW*`a_LAhc`!Q2A3eosk9ZCEL 1}({BA(`G4 z?OU5Qu-I`*vF8?MrqD2m)LmSbxNC9SY(xdQCP-MkwdJLb8ZVo!3)Xl=F95eo+mKi6 zHae>*8r3DAJgmJoEUHpmQI!QXur~BONU?vy{%1*ENYSl#IT-t&&Tx_M?Q0b;`M>}; z-;=A5tVkrMQ1YhNy?Bhbf`SXJ{fiC8iZtl6qQ7$Nv!=hHurkjI1g2a-&!bdk6uR?Z z+NO|w6@<{u>*MA4db=58+B5=*8~hNkiP6d;A#7&jfiygS%9eH|)|NKFJDn{UZFedw z6pY|lMIqs*2z>6lZg3@7yeE|K_(vWPEjwO2-|+r$8ePjE$MmQd7b?lZTINAgwAPM9RW3e)EMM>E=J}D)rZ73> z(K!|sa-Z1y z7c*MP6c z4 as_O}88=~VJu~-Ekxr~-8|efT$KELWCU&uk1F54fifuD8 zRWJN28wPr2F)ushO%E%W2S|2)Kh_ktV7+dz?M{7_{bG&Z9;hFnUHRgc$zwLfgs@|j zV8RuDLLh{IsR3k&0$t=}x7R)HWDT+b4Tsr@Iml)|3tf3sgd_sZ!j|4>QdT$81H_)- zS5qF FbQnx71}c6tp{pmS@ hsibGacrP$}#9e zL+|?B;T0Clbco1Z$8I q$X2Wn2*sY753EiaegX-N2+p&_mW+A1B&pRjADa}E3*yskeG^Q_Az&PbNXjp$ zVyRWLAn9u8p_Ry!jf9ZYYs749C=m(&l>_EO48LAUFZ9v(C4cG3d_y#;?*$Rri?Jv1 z#Z~86mZu2d8CR#H*S;R}RVCtHwK$-t#g?bXd=pDDY}5i%SE%``W!)R%3(gOZ`lN7o zu#?RIqcw=+Y#Z-U8M`T_6_Yon)zN%hI#3`e5>3O`KgY(O-n>G{&t{Xg1@;s(CYR=B zQdnUzgKs_I{zAuoV=2P?{Ar6kf#v9n291AQ#QNj&Z^2X>;32-_7wj% zng6VdS7=v|@9njLa!Q%b{er5I2zJWCB4^@TfD6B)p$d%xt^!^buYwwy18a>1=4?!` z9MP}f%o$b1lQ6mq^kY!c`$%a*Mp4?*vSHDCx(23X3w^H28~z{}7o$9nwD8xGJqISP zA;e*TqkT_r#||`4+= tM;%~)R&@FRb|_br3haCPGZl5E_9j;yg18)$b RORiCw9p#`HPt!uU&ZZQF^nI$Z=sv9O$=Dcw+IT oslB8SF3v=x=K>RuOFVdrKr0K8r}eBfsoduP7${hH4 $@N3;q(<@Qo-eXB*pUN2=wu&e&+m~y5aXWtPUN6^zR9* zcdSa@{fuqJMMef{C#wlzL5K!K=9GMZCNF7R-mGl AitR|N&&w>t#$4C?gt@VfzCF1`&p^_-A^gn*_m zcU$LULrv{yozgX5O^b^*HcO*sdAu8ZuXOAieFK6A!dMiz9JCM)dxWolRN_!NXB2Ya zYX)i ;PCBuE9baS9b$K zh*9^!_2b(DnO*!I+ !!sTe@t5&brUI4VcxX)K*O3`}A+d)PEAP!WRk6gA0 zoH-n >8xjf>{<2Ie8U3{x5)Yso2VK$G)th6Ai-;-cG*okJ4S|Wyl#S~ zH;&Ap- ~dj8e!M83akFmfjCz@w-k#4-A9eNGxYpUP5trB3 zK4Nc=x2v>Bl)fDng{4qx**@GKD}oxK8 tEk60sD0c8qsH1RoDJ zH7Tdg@ZHz u5N4lxPli}1gLt)|sa zv;fBEmcDQctZbd}=%le3rm#_u+-4NBN3XnVlLj4#R-TPKnKDu-*VnTb1NErmXG!{| z_e!1%4j{DS`R;DRiBL_c+-nn8hkxq_P9kU Q`N{0#EOk&pA4(x>j`@9iCg_$JhJQYSa%f~_dp3m8Vz2VJm z9009-;y>A1H(_a3F(uX*Aq5UB8~u$I>r(xKM#F`6I1{8^J8?^+$y6yRi=g|;sz)$k z4q!>+9@VTG_KqMg$dltqXrf~zYOax0!16{4?Qhbq0J9#BlPnL-z+eKmq`NST*O_;f zYdfBUdSdEev1W)5jCAVFPI-U~HNc2SNQx!Bi-`<0!1XzGaW)7|EQJ~jFU^q3LSf`M zzDPYr8G_yS2Bq|*7wl!?5i=}E +NS@izh3 zPZE)I4Z~IEUptmJ?wh!q&%w?mW5VY<8ED*tHbm&&iH?vQACJf_lyJ}Sx2}KRFCOcI ze2w_40q~ljhkp$7xBKL!_!Ik+;CfRv3yd>ILSice*-`eFQ8j zuM4JZ%ar;XVPPR7?}!(~RiF{z&>S5g+?aVRV8qvTkjEg)&;=XE@$pK5WZ1_I$+xsV zA8n*y4Q(8JW$ea0k*lz8@zPm1&|^Uw+85SjXiXub5fVE{XlG{OWqm78tOm`atCUmO z7JoS$6{t05&Ic(Afa`@77;W7S8P&e!_CvSFJg%85l?f%CeKS-dye &* AYSh^qEV45^`V-RcPQ>iFSEI8vJ^H+r-}3K zp2@c TY~=X}A=jw%_SOSywC&up8H0 zRq)7JH#kEOIJ)UpddZ{r#a11gaPfu4FkOD7htmlIPRUD3e=| &ycr% zw`?)Wz^rV$b{?jkP$ys*GomADI75kC&uR$*>kPTE$V=<0zWPs3;-%e4I(R>