monadic-chat 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +172 -0
- data/LICENSE.txt +21 -0
- data/README.md +652 -0
- data/Rakefile +12 -0
- data/apps/chat/chat.json +4 -0
- data/apps/chat/chat.md +42 -0
- data/apps/chat/chat.rb +79 -0
- data/apps/code/code.json +4 -0
- data/apps/code/code.md +42 -0
- data/apps/code/code.rb +77 -0
- data/apps/novel/novel.json +4 -0
- data/apps/novel/novel.md +36 -0
- data/apps/novel/novel.rb +77 -0
- data/apps/translate/translate.json +4 -0
- data/apps/translate/translate.md +37 -0
- data/apps/translate/translate.rb +81 -0
- data/assets/github.css +1036 -0
- data/assets/pigments-default.css +69 -0
- data/bin/monadic-chat +122 -0
- data/doc/img/code-example-time-html.png +0 -0
- data/doc/img/code-example-time.png +0 -0
- data/doc/img/example-translation.png +0 -0
- data/doc/img/how-research-mode-works.svg +1 -0
- data/doc/img/input-acess-token.png +0 -0
- data/doc/img/langacker-2001.svg +41 -0
- data/doc/img/linguistic-html.png +0 -0
- data/doc/img/monadic-chat-main-menu.png +0 -0
- data/doc/img/monadic-chat.svg +13 -0
- data/doc/img/readme-example-beatles-html.png +0 -0
- data/doc/img/readme-example-beatles.png +0 -0
- data/doc/img/research-mode-template.svg +198 -0
- data/doc/img/select-app-menu.png +0 -0
- data/doc/img/select-feature-menu.png +0 -0
- data/doc/img/state-monad.svg +154 -0
- data/doc/img/syntree-sample.png +0 -0
- data/lib/monadic_app.rb +115 -0
- data/lib/monadic_chat/console.rb +29 -0
- data/lib/monadic_chat/formatting.rb +110 -0
- data/lib/monadic_chat/helper.rb +72 -0
- data/lib/monadic_chat/interaction.rb +41 -0
- data/lib/monadic_chat/internals.rb +269 -0
- data/lib/monadic_chat/menu.rb +189 -0
- data/lib/monadic_chat/open_ai.rb +150 -0
- data/lib/monadic_chat/parameters.rb +109 -0
- data/lib/monadic_chat/version.rb +5 -0
- data/lib/monadic_chat.rb +190 -0
- data/monadic_chat.gemspec +54 -0
- data/samples/linguistic/linguistic.json +17 -0
- data/samples/linguistic/linguistic.md +39 -0
- data/samples/linguistic/linguistic.rb +74 -0
- metadata +343 -0
@@ -0,0 +1,69 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight { background: #f8f8f8; }
|
3
|
+
.highlight .c { color: #408080; font-style: italic } /* Comment */
|
4
|
+
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
5
|
+
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
|
6
|
+
.highlight .o { color: #666666 } /* Operator */
|
7
|
+
.highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
|
8
|
+
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
|
9
|
+
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
|
10
|
+
.highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
|
11
|
+
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
|
12
|
+
.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
|
13
|
+
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
14
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
15
|
+
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
16
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
17
|
+
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
18
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
19
|
+
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
20
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
21
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
22
|
+
.highlight .gt { color: #0044DD } /* Generic.Traceback */
|
23
|
+
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
|
24
|
+
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
25
|
+
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
26
|
+
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
|
27
|
+
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
28
|
+
.highlight .kt { color: #B00040 } /* Keyword.Type */
|
29
|
+
.highlight .m { color: #666666 } /* Literal.Number */
|
30
|
+
.highlight .s { color: #BA2121 } /* Literal.String */
|
31
|
+
.highlight .na { color: #7D9029 } /* Name.Attribute */
|
32
|
+
.highlight .nb { color: #008000 } /* Name.Builtin */
|
33
|
+
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
|
34
|
+
.highlight .no { color: #880000 } /* Name.Constant */
|
35
|
+
.highlight .nd { color: #AA22FF } /* Name.Decorator */
|
36
|
+
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
37
|
+
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
|
38
|
+
.highlight .nf { color: #0000FF } /* Name.Function */
|
39
|
+
.highlight .nl { color: #A0A000 } /* Name.Label */
|
40
|
+
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
|
41
|
+
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
|
42
|
+
.highlight .nv { color: #19177C } /* Name.Variable */
|
43
|
+
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
|
44
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
45
|
+
.highlight .mb { color: #666666 } /* Literal.Number.Bin */
|
46
|
+
.highlight .mf { color: #666666 } /* Literal.Number.Float */
|
47
|
+
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
|
48
|
+
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
|
49
|
+
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
|
50
|
+
.highlight .sa { color: #BA2121 } /* Literal.String.Affix */
|
51
|
+
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
|
52
|
+
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
|
53
|
+
.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
|
54
|
+
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
|
55
|
+
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
|
56
|
+
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
|
57
|
+
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
|
58
|
+
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
|
59
|
+
.highlight .sx { color: #008000 } /* Literal.String.Other */
|
60
|
+
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
|
61
|
+
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
|
62
|
+
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
|
63
|
+
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
|
64
|
+
.highlight .fm { color: #0000FF } /* Name.Function.Magic */
|
65
|
+
.highlight .vc { color: #19177C } /* Name.Variable.Class */
|
66
|
+
.highlight .vg { color: #19177C } /* Name.Variable.Global */
|
67
|
+
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
|
68
|
+
.highlight .vm { color: #19177C } /* Name.Variable.Magic */
|
69
|
+
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
|
data/bin/monadic-chat
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# frozen_string_literal: true
|
4
|
+
|
5
|
+
require_relative "../lib/monadic_chat"
|
6
|
+
MonadicChat.require_apps
|
7
|
+
|
8
|
+
module MonadicMenu
|
9
|
+
include MonadicChat
|
10
|
+
|
11
|
+
PROMPT_SYSTEM.on(:keypress) do |event|
|
12
|
+
case event.key.name
|
13
|
+
when :ctrl_p
|
14
|
+
PROMPT_SYSTEM.trigger(:keyup)
|
15
|
+
when :ctrl_n
|
16
|
+
PROMPT_SYSTEM.trigger(:keydown)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.clear_screen
|
21
|
+
print TTY::Cursor.clear_screen_down
|
22
|
+
print "\e[2J\e[f"
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.run
|
26
|
+
screen_width = TTY::Screen.width - 2
|
27
|
+
width = screen_width < TITLE_WIDTH ? screen_width : TITLE_WIDTH
|
28
|
+
|
29
|
+
mon = " M O N A D I C "
|
30
|
+
dots = "::"
|
31
|
+
chat = " C H A T "
|
32
|
+
hpad = " " * ((width - (mon.size + dots.size + chat.size)) / 2).to_i
|
33
|
+
title = "#{hpad}#{PASTEL.red.bold(mon + dots + chat)}#{hpad}"
|
34
|
+
subtitle = "OpenAI chat/text-completion API client".center(width, " ")
|
35
|
+
version = "Version: #{VERSION}".center(width, " ")
|
36
|
+
vpad = " " * width
|
37
|
+
|
38
|
+
banner = TTY::Box.frame "#{vpad}\n#{title}\n#{subtitle}\n#{version}\n#{vpad}"
|
39
|
+
|
40
|
+
mode = "normal"
|
41
|
+
openai_completion = nil
|
42
|
+
parameter = ""
|
43
|
+
|
44
|
+
print_mode = lambda do |m|
|
45
|
+
case m
|
46
|
+
when "normal"
|
47
|
+
PASTEL.bold.green("Normal")
|
48
|
+
when "research"
|
49
|
+
PASTEL.bold.red("Research")
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
loop do
|
54
|
+
clear_screen
|
55
|
+
print "\n", banner.strip, "\n"
|
56
|
+
|
57
|
+
openai_completion ||= MonadicChat.authenticate
|
58
|
+
|
59
|
+
parameter = PROMPT_SYSTEM.select(" Current mode: #{print_mode.call(mode)}\n\nSelect item:",
|
60
|
+
per_page: 10,
|
61
|
+
cycle: true,
|
62
|
+
filter: true,
|
63
|
+
default: 1,
|
64
|
+
show_help: :never) do |menu|
|
65
|
+
APPS.each do |app|
|
66
|
+
next unless TEMPLATES["#{mode}/#{app}"]
|
67
|
+
|
68
|
+
desc = eval("#{app.capitalize}::DESC", binding, __FILE__, __LINE__)
|
69
|
+
menu.choice "#{BULLET} #{PASTEL.bold(app.capitalize)} #{desc}", app
|
70
|
+
end
|
71
|
+
|
72
|
+
case mode
|
73
|
+
when "research"
|
74
|
+
menu.choice "#{BULLET} #{PASTEL.bold("Mode")} Switch from #{PASTEL.bold.red("Research")} (current) to #{PASTEL.bold.green("Normal")}", "mode"
|
75
|
+
when "normal"
|
76
|
+
menu.choice "#{BULLET} #{PASTEL.bold("Mode")} Switch from #{PASTEL.bold.green("Normal")} (current) to #{PASTEL.bold.red("Research")}", "mode"
|
77
|
+
end
|
78
|
+
|
79
|
+
menu.choice "#{BULLET} #{PASTEL.bold("Readme")} Open Readme/Documentation", "readme"
|
80
|
+
menu.choice "#{BULLET} #{PASTEL.bold("Quit")} Quit/Exit/Bye", "exit"
|
81
|
+
end
|
82
|
+
|
83
|
+
begin
|
84
|
+
case parameter
|
85
|
+
when "mode"
|
86
|
+
mode = mode == "normal" ? "research" : "normal"
|
87
|
+
next
|
88
|
+
when "readme"
|
89
|
+
MonadicChat.open_readme
|
90
|
+
next
|
91
|
+
when "exit"
|
92
|
+
clear_screen
|
93
|
+
print "#{PASTEL.bold("Bye!")}\n"
|
94
|
+
exit
|
95
|
+
else
|
96
|
+
clear_screen
|
97
|
+
eval(parameter.capitalize, binding, __FILE__, __LINE__).new(openai_completion, research_mode: mode == "research").run
|
98
|
+
end
|
99
|
+
rescue MonadicError
|
100
|
+
next
|
101
|
+
rescue StandardError => e
|
102
|
+
clear_screen
|
103
|
+
choice = PROMPT_SYSTEM.select("Error: Something went wrong", default: 2, show_help: :never) do |menu|
|
104
|
+
menu.choice "Return to main menu", "menu"
|
105
|
+
menu.choice "Show error message and exit", "debug"
|
106
|
+
end
|
107
|
+
|
108
|
+
case choice
|
109
|
+
when "menu"
|
110
|
+
next
|
111
|
+
when "debug"
|
112
|
+
puts "Error: #{e.message}"
|
113
|
+
puts e.backtrace
|
114
|
+
break
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
MonadicMenu.clear_screen
|
122
|
+
MonadicMenu.run
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg width="3066" height="1384" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><defs><clipPath id="clip0"><rect x="357" y="444" width="3066" height="1384"/></clipPath></defs><g clip-path="url(#clip0)" transform="translate(-357 -444)"><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 511.994 1359)">User Input</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2852.61 1359)">GPT </text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2959.18 1359)">Output</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1419.55 874)">Prompt</text><path d="M2.29167-2.48418e-06 2.292 310.008C2.292 311.274 1.26599 312.3 0.000338535 312.3-1.26531 312.3-2.29133 311.274-2.29133 310.008L-2.29167 2.48418e-06C-2.29167-1.26565-1.26566-2.29167-2.48418e-06-2.29167 1.26565-2.29167 2.29167-1.26566 2.29167-2.48418e-06ZM13.7503 305.425 0.000360892 332.925-13.7497 305.425Z" fill="#000000" fill-rule="nonzero" fill-opacity="1" transform="matrix(1 0 0 -1 1750.5 976.425)"/><path d="M0 0 139.232 0.000360892" stroke="#000000" stroke-width="4.58333" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd" transform="matrix(-1 0 0 1 1749.73 977.5)"/><path d="M1727.64 527.728C1725.17 510.15 1737.87 493.961 1756.01 491.57 1763.36 490.601 1770.83 492.049 1777.23 495.683 1784.01 483.294 1799.85 478.585 1812.62 485.166 1814.85 486.317 1816.9 487.776 1818.7 489.496 1823.98 479.227 1836.84 475.054 1847.43 480.177 1850.36 481.595 1852.92 483.646 1854.9 486.172 1863.41 476.46 1878.45 475.26 1888.5 483.492 1892.72 486.952 1895.56 491.724 1896.54 496.99 1910.49 500.679 1918.72 514.651 1914.92 528.198 1914.6 529.337 1914.2 530.453 1913.72 531.537 1924.9 545.653 1922.17 565.885 1907.6 576.727 1903.07 580.101 1897.72 582.286 1892.06 583.071 1891.93 598.257 1879.12 610.469 1863.44 610.347 1858.2 610.307 1853.08 608.863 1848.64 606.176 1843.33 623.202 1824.84 632.825 1807.32 627.67 1799.98 625.509 1793.64 620.941 1789.38 614.743 1771.44 625.228 1748.17 619.588 1737.39 602.144 1737.25 601.924 1737.12 601.703 1736.99 601.481 1725.25 602.812 1714.62 594.694 1713.24 583.347 1712.51 577.3 1714.57 571.246 1718.87 566.8 1708.71 561.001 1705.3 548.271 1711.25 538.368 1714.68 532.655 1720.7 528.878 1727.46 528.199Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><path d="M1731.53 568.998C1727.19 569.328 1722.85 568.355 1719.1 566.212M1742.5 599.485C1740.75 600.158 1738.93 600.606 1737.06 600.818M1789.36 614.134C1788.05 612.226 1786.95 610.187 1786.09 608.052M1849.97 598.968C1849.77 601.231 1849.33 603.468 1848.66 605.641M1875.98 557.733C1885.82 562.374 1892.03 572.077 1891.94 582.674M1913.62 531.168C1912.03 534.776 1909.59 537.978 1906.51 540.52M1896.57 496.466C1896.84 497.923 1896.97 499.402 1896.95 500.883M1851.2 491.314C1852.12 489.276 1853.35 487.379 1854.84 485.681M1817.15 493.998C1817.53 492.314 1818.12 490.682 1818.92 489.14M1777.2 495.648C1779.52 496.963 1781.66 498.545 1783.58 500.361M1728.75 532.688C1728.25 531.066 1727.88 529.408 1727.64 527.73" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><path d="M876.5 736.5 1179.67 736.5 1634.42 736.5 2695.5 736.5 2695.5 1157.67 2695.5 1338.17 2695.5 1458.5 1634.42 1458.5 1179.67 1458.5 876.5 1458.5 876.5 1338.17 876.5 1365.8 876.5 1157.67Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><path d="M553.5 1293.5 567 1239.5 677.5 1239.5 664 1293.5Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><path d="M1537.33 1063.5 1541.17 1048.17 1556.5 1044.33 1537.33 1063.5 1441.5 1063.5 1441.5 904.5 1556.5 904.5 1556.5 1044.33" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1177.01 1229)">JSON</text><path d="M660.166 1063.5 664.033 1048.03 679.5 1044.17 660.166 1063.5 563.5 1063.5 563.5 904.5 679.5 904.5 679.5 1044.17" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 533.513 875)">Template</text><rect x="1067" y="1258" width="371" height="183" fill="#FFFFFF" fill-opacity="1"/><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1100.21 1314)">inpu</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1187.3 1314)">t</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1201.05 1314)">:</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1100.21 1364)">output:</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1100.21 1413)">accum</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1221.67 1413)">:</text><path d="M1269.5 1307.5 1276.25 1280.5 1336.5 1280.5 1329.75 1307.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><path d="M1269.5 1348.5 1276.25 1321.5 1336.5 1321.5 1329.75 1348.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#BFBFBF" fill-rule="evenodd" fill-opacity="1"/><path d="M1252.5 1415.5 1259.25 1388.5 1320.5 1388.5 1313.75 1415.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#FFFFFF" fill-rule="evenodd" fill-opacity="1"/><path d="M1263.5 1407.5 1270.25 1380.5 1331.5 1380.5 1324.75 1407.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#BFBFBF" fill-rule="evenodd" fill-opacity="1"/><path d="M1275.5 1398.5 1282.25 1371.5 1343.5 1371.5 1336.75 1398.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#FFFFFF" fill-rule="evenodd" fill-opacity="1"/><path d="M1286.5 1390.5 1293.25 1363.5 1353.5 1363.5 1346.75 1390.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#BFBFBF" fill-rule="evenodd" fill-opacity="1"/><path d="M360.5 975.208 374.25 975.208C375.516 975.208 376.542 976.234 376.542 977.5 376.542 978.766 375.516 979.792 374.25 979.792L360.5 979.792C359.234 979.792 358.208 978.766 358.208 977.5 358.208 976.234 359.234 975.208 360.5 975.208ZM392.583 975.208 406.333 975.209C407.599 975.209 408.625 976.235 408.625 977.5 408.625 978.766 407.599 979.792 406.333 979.792L392.583 979.792C391.318 979.792 390.292 978.766 390.292 977.5 390.292 976.235 391.318 975.208 392.583 975.208ZM424.667 975.209 438.417 975.209C439.682 975.209 440.708 976.235 440.708 977.5 440.708 978.766 439.682 979.792 438.417 979.792L424.667 979.792C423.401 979.792 422.375 978.766 422.375 977.5 422.375 976.235 423.401 975.209 424.667 975.209ZM456.75 975.209 470.5 975.209C471.766 975.209 472.792 976.235 472.792 977.5 472.792 978.766 471.766 979.792 470.5 979.792L456.75 979.792C455.484 979.792 454.458 978.766 454.458 977.5 454.458 976.235 455.484 975.209 456.75 975.209ZM488.833 975.209 501.313 975.209C502.579 975.209 503.605 976.235 503.605 977.5 503.605 978.766 502.579 979.792 501.313 979.792L488.833 979.792C487.568 979.792 486.542 978.766 486.542 977.5 486.542 976.235 487.568 975.209 488.833 975.209ZM496.73 963.75 524.23 977.5 496.73 991.25Z" fill="#000000" fill-rule="nonzero" fill-opacity="1"/><path d="M743.5 975.208 1327.67 975.209C1328.93 975.209 1329.96 976.235 1329.96 977.5 1329.96 978.766 1328.93 979.792 1327.67 979.792L743.5 979.792C742.234 979.792 741.208 978.766 741.208 977.5 741.208 976.234 742.234 975.208 743.5 975.208ZM1323.08 963.75 1350.58 977.5 1323.08 991.25Z" fill="#000000" fill-rule="nonzero" fill-opacity="1"/><path d="M1026.5 982.5 1026.5 1247.04" stroke="#000000" stroke-width="4.58333" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><path d="M743.5 1246.5 1024.42 1246.5" stroke="#000000" stroke-width="4.58333" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1945.83 508)">text</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2019.17 508)">-</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1945.83 563)">completion </text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1945.83 618)">API</text><path d="M1880.79 647.5 1880.79 974.071C1880.79 975.337 1879.77 976.363 1878.5 976.363 1877.23 976.363 1876.21 975.337 1876.21 974.071L1876.21 647.5C1876.21 646.234 1877.23 645.208 1878.5 645.208 1879.77 645.208 1880.79 646.234 1880.79 647.5ZM1892.25 969.488 1878.5 996.988 1864.75 969.488Z" fill="#000000" fill-rule="nonzero" fill-opacity="1"/><path d="M1004.5 977C1004.5 966.23 1013.23 957.5 1024 957.5 1034.77 957.5 1043.5 966.23 1043.5 977 1043.5 987.77 1034.77 996.5 1024 996.5 1013.23 996.5 1004.5 987.77 1004.5 977Z" stroke="#2F528F" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#000000" fill-rule="evenodd" fill-opacity="1"/><path d="M1858.5 977.5C1858.5 966.454 1867.23 957.5 1878 957.5 1888.77 957.5 1897.5 966.454 1897.5 977.5 1897.5 988.546 1888.77 997.5 1878 997.5 1867.23 997.5 1858.5 988.546 1858.5 977.5Z" stroke="#2F528F" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#000000" fill-rule="evenodd" fill-opacity="1"/><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2880.45 882)">Template’</text><path d="M3022.17 1070.5 3026.03 1055.03 3041.5 1051.17 3022.17 1070.5 2925.5 1070.5 2925.5 911.5 3041.5 911.5 3041.5 1051.17" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1574.08 1232)">JSON</text><rect x="2363.5" y="845" width="125.5" height="76.5001" fill="#FFFFFF" fill-opacity="1"/><path d="M2489 845 2514.5 819.5 2514.5 896 2489 921.5Z" fill="#CDCDCD" fill-rule="evenodd" fill-opacity="1"/><path d="M2363.5 845 2389 819.5 2514.5 819.5 2489 845Z" fill="#FFFFFF" fill-rule="evenodd" fill-opacity="1"/><path d="M2363.5 845 2389 819.5 2514.5 819.5 2514.5 896 2489 921.5 2363.5 921.5ZM2363.5 845 2489 845 2514.5 819.5M2489 845 2489 921.5" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2349.84 798)">Reducer</text><path d="M3096.5 978.208 3110.25 978.208C3111.52 978.208 3112.54 979.234 3112.54 980.5 3112.54 981.766 3111.52 982.792 3110.25 982.792L3096.5 982.792C3095.23 982.792 3094.21 981.766 3094.21 980.5 3094.21 979.234 3095.23 978.208 3096.5 978.208ZM3128.58 978.208 3142.33 978.208C3143.6 978.208 3144.62 979.234 3144.62 980.5 3144.62 981.766 3143.6 982.792 3142.33 982.792L3128.58 982.792C3127.32 982.792 3126.29 981.766 3126.29 980.5 3126.29 979.234 3127.32 978.208 3128.58 978.208ZM3160.67 978.208 3174.42 978.208C3175.68 978.208 3176.71 979.234 3176.71 980.5 3176.71 981.766 3175.68 982.792 3174.42 982.792L3160.67 982.792C3159.4 982.792 3158.38 981.766 3158.38 980.5 3158.38 979.234 3159.4 978.208 3160.67 978.208ZM3192.75 978.208 3206.5 978.208C3207.77 978.208 3208.79 979.234 3208.79 980.5 3208.79 981.766 3207.77 982.792 3206.5 982.792L3192.75 982.792C3191.48 982.792 3190.46 981.766 3190.46 980.5 3190.46 979.234 3191.48 978.208 3192.75 978.208ZM3224.83 978.208 3237.31 978.208C3238.58 978.208 3239.6 979.235 3239.6 980.5 3239.6 981.766 3238.58 982.792 3237.31 982.792L3224.83 982.792C3223.57 982.792 3222.54 981.766 3222.54 980.5 3222.54 979.234 3223.57 978.208 3224.83 978.208ZM3232.73 966.75 3260.23 980.5 3232.73 994.25Z" fill="#000000" fill-rule="nonzero" fill-opacity="1"/><path d="M1039.81 988.783 1039.82 988.787C1041.04 989.789 1041.22 991.594 1040.22 992.818 1039.22 994.042 1037.41 994.222 1036.19 993.22L1036.19 993.217C1034.96 992.215 1034.78 990.41 1035.78 989.186 1036.79 987.961 1038.59 987.781 1039.81 988.783ZM1048.69 996.045 1048.69 996.049C1049.91 997.051 1050.09 998.856 1049.09 1000.08 1048.09 1001.3 1046.28 1001.48 1045.06 1000.48L1045.06 1000.48C1043.83 999.476 1043.65 997.671 1044.65 996.447 1045.66 995.223 1047.46 995.043 1048.69 996.045ZM1057.56 1003.31 1057.56 1003.31C1058.78 1004.31 1058.97 1006.12 1057.96 1007.34 1056.96 1008.57 1055.16 1008.75 1053.93 1007.74L1053.93 1007.74C1052.7 1006.74 1052.52 1004.93 1053.53 1003.71 1054.53 1002.48 1056.33 1002.3 1057.56 1003.31ZM1066.43 1010.57 1066.43 1010.57C1067.66 1011.57 1067.84 1013.38 1066.83 1014.6 1065.83 1015.83 1064.03 1016.01 1062.8 1015.01L1062.8 1015C1061.57 1014 1061.39 1012.19 1062.4 1010.97 1063.4 1009.75 1065.2 1009.57 1066.43 1010.57ZM1075.3 1017.83 1075.3 1017.83C1076.53 1018.84 1076.71 1020.64 1075.7 1021.87 1074.7 1023.09 1072.9 1023.27 1071.67 1022.27L1071.67 1022.26C1070.44 1021.26 1070.26 1019.46 1071.27 1018.23 1072.27 1017.01 1074.07 1016.83 1075.3 1017.83ZM1084.17 1025.09 1084.17 1025.1C1085.4 1026.1 1085.58 1027.9 1084.58 1029.13 1083.57 1030.35 1081.77 1030.53 1080.54 1029.53L1080.54 1029.53C1079.32 1028.52 1079.14 1026.72 1080.14 1025.49 1081.14 1024.27 1082.94 1024.09 1084.17 1025.09ZM1093.04 1032.35 1093.04 1032.36C1094.27 1033.36 1094.45 1035.16 1093.45 1036.39 1092.44 1037.61 1090.64 1037.79 1089.41 1036.79L1089.41 1036.79C1088.19 1035.78 1088.01 1033.98 1089.01 1032.76 1090.01 1031.53 1091.82 1031.35 1093.04 1032.35ZM1101.91 1039.62 1101.92 1039.62C1103.14 1040.62 1103.32 1042.43 1102.32 1043.65 1101.31 1044.88 1099.51 1045.05 1098.28 1044.05L1098.28 1044.05C1097.06 1043.05 1096.88 1041.24 1097.88 1040.02 1098.88 1038.79 1100.69 1038.61 1101.91 1039.62ZM1110.78 1046.88 1110.79 1046.88C1112.01 1047.88 1112.19 1049.69 1111.19 1050.91 1110.18 1052.14 1108.38 1052.32 1107.16 1051.31L1107.15 1051.31C1105.93 1050.31 1105.75 1048.5 1106.75 1047.28 1107.75 1046.05 1109.56 1045.88 1110.78 1046.88ZM1119.65 1054.14 1119.66 1054.14C1120.88 1055.15 1121.06 1056.95 1120.06 1058.17 1119.06 1059.4 1117.25 1059.58 1116.03 1058.58L1116.02 1058.57C1114.8 1057.57 1114.62 1055.76 1115.62 1054.54 1116.62 1053.32 1118.43 1053.14 1119.65 1054.14ZM1128.52 1061.4 1128.53 1061.41C1129.75 1062.41 1129.93 1064.21 1128.93 1065.44 1127.93 1066.66 1126.12 1066.84 1124.9 1065.84L1124.89 1065.83C1123.67 1064.83 1123.49 1063.03 1124.49 1061.8 1125.5 1060.58 1127.3 1060.4 1128.52 1061.4ZM1137.39 1068.66 1137.4 1068.67C1138.62 1069.67 1138.8 1071.47 1137.8 1072.7 1136.8 1073.92 1134.99 1074.1 1133.77 1073.1L1133.76 1073.09C1132.54 1072.09 1132.36 1070.29 1133.36 1069.06 1134.37 1067.84 1136.17 1067.66 1137.39 1068.66ZM1146.27 1075.93 1146.27 1075.93C1147.49 1076.93 1147.67 1078.74 1146.67 1079.96 1145.67 1081.18 1143.86 1081.36 1142.64 1080.36L1142.63 1080.36C1141.41 1079.35 1141.23 1077.55 1142.23 1076.33 1143.24 1075.1 1145.04 1074.92 1146.27 1075.93ZM1155.14 1083.19 1155.14 1083.19C1156.36 1084.19 1156.54 1086 1155.54 1087.22 1154.54 1088.45 1152.73 1088.62 1151.51 1087.62L1151.51 1087.62C1150.28 1086.62 1150.1 1084.81 1151.11 1083.59 1152.11 1082.36 1153.91 1082.18 1155.14 1083.19ZM1164.01 1090.45 1164.01 1090.45C1165.24 1091.45 1165.41 1093.26 1164.41 1094.48 1163.41 1095.71 1161.6 1095.89 1160.38 1094.88L1160.38 1094.88C1159.15 1093.88 1158.97 1092.07 1159.98 1090.85 1160.98 1089.63 1162.78 1089.45 1164.01 1090.45ZM1172.88 1097.71 1172.88 1097.71C1174.11 1098.72 1174.29 1100.52 1173.28 1101.75 1172.28 1102.97 1170.48 1103.15 1169.25 1102.15L1169.25 1102.14C1168.02 1101.14 1167.84 1099.33 1168.85 1098.11 1169.85 1096.89 1171.65 1096.71 1172.88 1097.71ZM1181.75 1104.97 1181.75 1104.98C1182.98 1105.98 1183.16 1107.78 1182.15 1109.01 1181.15 1110.23 1179.35 1110.41 1178.12 1109.41L1178.12 1109.4C1176.89 1108.4 1176.72 1106.6 1177.72 1105.37 1178.72 1104.15 1180.53 1103.97 1181.75 1104.97ZM1190.62 1112.23 1190.62 1112.24C1191.85 1113.24 1192.03 1115.05 1191.02 1116.27 1190.02 1117.49 1188.22 1117.67 1186.99 1116.67L1186.99 1116.67C1185.77 1115.66 1185.59 1113.86 1186.59 1112.63 1187.59 1111.41 1189.4 1111.23 1190.62 1112.23ZM1199.49 1119.5 1199.5 1119.5C1200.72 1120.5 1200.9 1122.31 1199.9 1123.53 1198.89 1124.75 1197.09 1124.93 1195.86 1123.93L1195.86 1123.93C1194.64 1122.92 1194.46 1121.12 1195.46 1119.9 1196.46 1118.67 1198.27 1118.49 1199.49 1119.5ZM1208.36 1126.76 1208.37 1126.76C1209.59 1127.76 1209.77 1129.57 1208.77 1130.79 1207.76 1132.02 1205.96 1132.2 1204.74 1131.19L1204.73 1131.19C1203.51 1130.19 1203.33 1128.38 1204.33 1127.16 1205.33 1125.93 1207.14 1125.75 1208.36 1126.76ZM1217.23 1134.02 1217.24 1134.02C1218.46 1135.03 1218.64 1136.83 1217.64 1138.05 1216.63 1139.28 1214.83 1139.46 1213.61 1138.45L1213.6 1138.45C1212.38 1137.45 1212.2 1135.64 1213.2 1134.42 1214.2 1133.2 1216.01 1133.02 1217.23 1134.02ZM1226.1 1141.28 1226.11 1141.28C1227.33 1142.29 1227.51 1144.09 1226.51 1145.32 1225.51 1146.54 1223.7 1146.72 1222.48 1145.72L1222.47 1145.71C1221.25 1144.71 1221.07 1142.9 1222.07 1141.68 1223.07 1140.46 1224.88 1140.28 1226.1 1141.28ZM1234.97 1148.54 1234.98 1148.54C1236.2 1149.55 1236.38 1151.35 1235.38 1152.57 1234.38 1153.8 1232.58 1153.98 1231.35 1152.98L1231.35 1152.98C1230.12 1151.98 1229.94 1150.17 1230.94 1148.95 1231.94 1147.72 1233.75 1147.54 1234.97 1148.54ZM1243.84 1155.8 1243.85 1155.81C1245.07 1156.81 1245.25 1158.61 1244.25 1159.84 1243.25 1161.06 1241.45 1161.24 1240.22 1160.24L1240.22 1160.24C1238.99 1159.24 1238.81 1157.43 1239.81 1156.21 1240.81 1154.98 1242.62 1154.8 1243.84 1155.8ZM1252.71 1163.06 1252.72 1163.07C1253.94 1164.07 1254.12 1165.87 1253.12 1167.1 1252.12 1168.32 1250.32 1168.5 1249.09 1167.5L1249.09 1167.5C1247.86 1166.5 1247.68 1164.69 1248.68 1163.47 1249.68 1162.24 1251.49 1162.06 1252.71 1163.06Z" fill="#000000" fill-rule="nonzero" fill-opacity="1"/><path d="M1.87025-2.16979 1.87459-2.16605C3.07293-1.13314 3.20704 0.675648 2.17413 1.87399 1.14122 3.07233-0.667568 3.20644-1.86591 2.17353L-1.87025 2.16979C-3.06859 1.13688-3.2027-0.671908-2.16979-1.87025-1.13688-3.06859 0.671908-3.2027 1.87025-2.16979ZM10.5538 5.31495 10.5581 5.31869C11.7564 6.3516 11.8906 8.16039 10.8576 9.35873 9.82474 10.5571 8.01595 10.6912 6.8176 9.65828L6.81326 9.65454C5.61492 8.62163 5.4808 6.81284 6.51371 5.6145 7.54662 4.41615 9.35541 4.28204 10.5538 5.31495ZM19.2372 12.7997 19.2416 12.8034C20.4399 13.8363 20.5741 15.6451 19.5412 16.8434 18.5083 18.0418 16.6995 18.1759 15.5011 17.143L15.4968 17.1393C14.2984 16.1064 14.1643 14.2976 15.1972 13.0993 16.2301 11.9009 18.0389 11.7668 19.2372 12.7997ZM27.9207 20.2844 27.9251 20.2882C29.1234 21.321 29.2576 23.1298 28.2247 24.3282 27.1918 25.5266 25.383 25.6607 24.1846 24.6278L24.1803 24.6241C22.9819 23.5912 22.8478 21.7824 23.8807 20.584 24.9136 19.3857 26.7224 19.2515 27.9207 20.2844ZM36.6047 27.7695 36.609 27.7732C37.8072 28.8064 37.941 30.6152 36.9078 31.8133 35.8747 33.0115 34.0659 33.1453 32.8677 32.1122L32.8634 32.1084C31.6652 31.0753 31.5314 29.2665 32.5646 28.0684 33.5977 26.8702 35.4065 26.7364 36.6047 27.7695ZM45.2882 35.2543 45.2925 35.258C46.4907 36.2911 46.6245 38.0999 45.5914 39.2981 44.5582 40.4963 42.7494 40.6301 41.5513 39.5969L41.5469 39.5932C40.3488 38.5601 40.215 36.7513 41.2481 35.5531 42.2812 34.3549 44.09 34.2211 45.2882 35.2543ZM53.971 42.7384 53.9753 42.7421C55.1738 43.7749 55.3082 45.5836 54.2755 46.7821 53.2427 47.9806 51.434 48.115 50.2355 47.0823L50.2311 47.0785C49.0326 46.0458 48.8983 44.237 49.931 43.0385 50.9637 41.84 52.7725 41.7057 53.971 42.7384ZM62.6537 50.2224 62.658 50.2262C63.8569 51.2585 63.992 53.0672 62.9597 54.2661 61.9274 55.465 60.1187 55.6 58.9198 54.5677L58.9154 54.564C57.7166 53.5317 57.5815 51.723 58.6138 50.5241 59.6461 49.3252 61.4548 49.1902 62.6537 50.2224ZM71.3372 57.7072 71.3415 57.7109C72.5404 58.7432 72.6755 60.5519 71.6432 61.7508 70.6109 62.9497 68.8022 63.0848 67.6033 62.0525L67.599 62.0487C66.4001 61.0164 66.265 59.2077 67.2973 58.0088 68.3296 56.81 70.1383 56.6749 71.3372 57.7072ZM80.0207 65.1919 80.025 65.1957C81.2239 66.228 81.359 68.0367 80.3267 69.2355 79.2944 70.4344 77.4857 70.5695 76.2868 69.5372L76.2825 69.5335C75.0836 68.5012 74.9485 66.6925 75.9808 65.4936 77.0131 64.2947 78.8218 64.1596 80.0207 65.1919ZM88.7042 72.6767 88.7086 72.6804C89.9074 73.7127 90.0425 75.5214 89.0102 76.7203 87.9779 77.9192 86.1692 78.0542 84.9703 77.0219L84.966 77.0182C83.7671 75.9859 83.632 74.1772 84.6643 72.9783 85.6966 71.7794 87.5053 71.6444 88.7042 72.6767ZM97.3877 80.1614 97.3921 80.1652C98.591 81.1974 98.726 83.0062 97.6937 84.205 96.6614 85.4039 94.8527 85.539 93.6538 84.5067L93.6495 84.503C92.4506 83.4707 92.3156 81.6619 93.3478 80.4631 94.3801 79.2642 96.1888 79.1291 97.3877 80.1614ZM106.071 87.6462 106.076 87.6499C107.274 88.6822 107.41 90.4909 106.377 91.6898 105.345 92.8887 103.536 93.0237 102.337 91.9914L102.333 91.9877C101.134 90.9554 100.999 89.1467 102.031 87.9478 103.064 86.7489 104.872 86.6139 106.071 87.6462ZM114.756 95.1323 114.761 95.136C115.959 96.1692 116.093 97.978 115.059 99.1761 114.026 100.374 112.217 100.508 111.019 99.4748L111.015 99.4711C109.817 98.4379 109.683 96.6291 110.716 95.4309 111.749 94.2328 113.558 94.0991 114.756 95.1323ZM123.44 102.617 123.444 102.621C124.642 103.654 124.776 105.463 123.743 106.661 122.71 107.859 120.901 107.993 119.703 106.96L119.698 106.956C118.5 105.923 118.367 104.114 119.4 102.916 120.433 101.718 122.242 101.584 123.44 102.617ZM132.123 110.102 132.128 110.106C133.326 111.139 133.46 112.948 132.426 114.146 131.393 115.344 129.584 115.477 128.386 114.444L128.382 114.441C127.184 113.407 127.05 111.599 128.083 110.4 129.116 109.202 130.925 109.069 132.123 110.102ZM140.807 117.587 140.811 117.59C142.009 118.623 142.143 120.432 141.11 121.63 140.077 122.829 138.268 122.962 137.07 121.929L137.065 121.925C135.867 120.892 135.734 119.083 136.767 117.885 137.8 116.687 139.609 116.553 140.807 117.587ZM149.49 125.071 149.495 125.075C150.693 126.108 150.827 127.917 149.793 129.115 148.76 130.313 146.951 130.447 145.753 129.414L145.749 129.41C144.551 128.377 144.417 126.568 145.45 125.37 146.483 124.172 148.292 124.038 149.49 125.071ZM158.174 132.556 158.178 132.56C159.376 133.593 159.51 135.402 158.477 136.6 157.444 137.798 155.635 137.932 154.437 136.899L154.432 136.895C153.234 135.862 153.101 134.053 154.134 132.855 155.167 131.657 156.976 131.523 158.174 132.556ZM166.857 140.041 166.862 140.045C168.06 141.078 168.194 142.887 167.16 144.085 166.127 145.283 164.318 145.416 163.12 144.383L163.116 144.38C161.918 143.346 161.784 141.538 162.817 140.339 163.85 139.141 165.659 139.008 166.857 140.041ZM175.541 147.526 175.545 147.529C176.743 148.562 176.877 150.371 175.844 151.569 174.811 152.768 173.002 152.901 171.804 151.868L171.799 151.864C170.601 150.831 170.468 149.022 171.501 147.824 172.534 146.626 174.343 146.492 175.541 147.526ZM184.224 155.01 184.229 155.014C185.427 156.047 185.561 157.856 184.527 159.054 183.494 160.252 181.685 160.386 180.487 159.353L180.483 159.349C179.285 158.316 179.151 156.507 180.184 155.309 181.218 154.111 183.026 153.977 184.224 155.01ZM192.911 162.497 192.915 162.501C194.112 163.536 194.243 165.345 193.209 166.542 192.174 167.738 190.365 167.87 189.168 166.835L189.164 166.831C187.967 165.797 187.836 163.988 188.87 162.791 189.905 161.594 191.714 161.463 192.911 162.497ZM201.594 169.982 201.599 169.986C202.795 171.021 202.927 172.83 201.892 174.026 200.857 175.223 199.048 175.355 197.852 174.32L197.847 174.316C196.65 173.281 196.519 171.472 197.554 170.276 198.588 169.079 200.397 168.947 201.594 169.982ZM210.278 177.467 210.282 177.471C211.479 178.505 211.61 180.314 210.576 181.511 209.541 182.708 207.732 182.839 206.535 181.805L206.531 181.801C205.334 180.766 205.203 178.957 206.237 177.76 207.272 176.564 209.081 176.432 210.278 177.467ZM218.961 184.952 218.966 184.955C220.162 185.99 220.294 187.799 219.259 188.996 218.224 190.193 216.415 190.324 215.219 189.289L215.214 189.286C214.017 188.251 213.886 186.442 214.921 185.245 215.955 184.048 217.764 183.917 218.961 184.952ZM227.645 192.436 227.649 192.44C228.846 193.475 228.977 195.284 227.943 196.481 226.908 197.677 225.099 197.809 223.902 196.774L223.898 196.77C222.701 195.736 222.57 193.927 223.604 192.73 224.639 191.533 226.448 191.402 227.645 192.436ZM236.328 199.921 236.333 199.925C237.529 200.96 237.661 202.769 236.626 203.965 235.591 205.162 233.782 205.294 232.586 204.259L232.581 204.255C231.384 203.22 231.253 201.411 232.288 200.215 233.322 199.018 235.131 198.886 236.328 199.921ZM245.012 207.406 245.016 207.41C246.213 208.444 246.344 210.253 245.31 211.45 244.275 212.647 242.466 212.778 241.269 211.744L241.265 211.74C240.068 210.705 239.937 208.896 240.971 207.699 242.006 206.503 243.815 206.371 245.012 207.406Z" fill="#000000" fill-rule="nonzero" fill-opacity="1" transform="matrix(-1 0 0 1 2447.48 960)"/><path d="M1897.5 975.208 2824.54 975.209C2825.8 975.209 2826.83 976.235 2826.83 977.5 2826.83 978.766 2825.8 979.792 2824.54 979.792L1897.5 979.792C1896.23 979.792 1895.21 978.766 1895.21 977.5 1895.21 976.234 1896.23 975.208 1897.5 975.208ZM2819.96 963.75 2847.46 977.5 2819.96 991.25Z" fill="#000000" fill-rule="nonzero" fill-opacity="1"/><path d="M1.85884-2.17957 1.8632-2.17586C3.06695-1.14925 3.21054 0.658814 2.18393 1.86256 1.15732 3.06631-0.650737 3.2099-1.85448 2.18329L-1.85884 2.17957C-3.06259 1.15296-3.20618-0.655096-2.17957-1.85884-1.15296-3.06259 0.655096-3.20618 1.85884-2.17957ZM10.5815 5.25951 10.5859 5.26323C11.7896 6.28984 11.9332 8.0979 10.9066 9.30164 9.87998 10.5054 8.07192 10.649 6.86817 9.62238L6.86381 9.61866C5.66007 8.59205 5.51647 6.78399 6.54308 5.58024 7.56969 4.3765 9.37775 4.2329 10.5815 5.25951ZM19.3042 12.6986 19.3085 12.7023C20.5123 13.7289 20.6559 15.537 19.6292 16.7407 18.6026 17.9445 16.7946 18.0881 15.5908 17.0615L15.5865 17.0577C14.3827 16.0311 14.2391 14.2231 15.2657 13.0193 16.2923 11.8156 18.1004 11.672 19.3042 12.6986ZM28.0268 20.1377 28.0312 20.1414C29.2349 21.168 29.3785 22.9761 28.3519 24.1798 27.3253 25.3836 25.5172 25.5272 24.3135 24.5005L24.3091 24.4968C23.1054 23.4702 22.9618 21.6622 23.9884 20.4584 25.015 19.2547 26.8231 19.1111 28.0268 20.1377ZM36.7499 27.5771 36.7542 27.5808C37.9578 28.6077 38.101 30.4158 37.0742 31.6193 36.0474 32.8229 34.2393 32.9661 33.0357 31.9393L33.0314 31.9356C31.8278 30.9087 31.6846 29.1006 32.7114 27.8971 33.7382 26.6935 35.5463 26.5503 36.7499 27.5771ZM45.4725 35.0162 45.4769 35.0199C46.6804 36.0468 46.8237 37.8548 45.7969 39.0584 44.77 40.262 42.9619 40.4052 41.7584 39.3784L41.754 39.3747C40.5505 38.3478 40.4072 36.5397 41.4341 35.3362 42.4609 34.1326 44.269 33.9894 45.4725 35.0162ZM54.1952 42.4553 54.1995 42.459C55.4031 43.4858 55.5464 45.2939 54.5195 46.4975 53.4927 47.701 51.6846 47.8443 50.481 46.8175L50.4767 46.8137C49.2731 45.7869 49.1299 43.9788 50.1567 42.7753 51.1835 41.5717 52.9916 41.4285 54.1952 42.4553ZM62.917 49.8937 62.9214 49.8974C64.1253 50.9238 64.2693 52.7318 63.2429 53.9357 62.2165 55.1397 60.4085 55.2836 59.2045 54.2572L59.2002 54.2535C57.9962 53.2271 57.8523 51.4191 58.8787 50.2152 59.9051 49.0112 61.7131 48.8673 62.917 49.8937ZM71.6397 57.3328 71.644 57.3365C72.848 58.3629 72.9919 60.1709 71.9655 61.3748 70.9391 62.5788 69.1311 62.7227 67.9272 61.6963L67.9228 61.6926C66.7189 60.6662 66.5749 58.8582 67.6013 57.6543 68.6277 56.4503 70.4357 56.3064 71.6397 57.3328ZM80.3623 64.7719 80.3667 64.7756C81.5706 65.802 81.7146 67.61 80.6882 68.8139 79.6618 70.0179 77.8538 70.1618 76.6498 69.1354L76.6455 69.1317C75.4415 68.1053 75.2976 66.2973 76.324 65.0933 77.3504 63.8894 79.1584 63.7455 80.3623 64.7719ZM89.085 72.2109 89.0894 72.2147C90.2933 73.241 90.4372 75.0491 89.4108 76.253 88.3845 77.4569 86.5764 77.6009 85.3725 76.5745L85.3681 76.5708C84.1642 75.5444 84.0203 73.7364 85.0466 72.5324 86.073 71.3285 87.8811 71.1846 89.085 72.2109ZM97.8063 79.6488 97.8106 79.6525C99.0152 80.6782 99.1603 82.4861 98.1347 83.6907 97.1091 84.8953 95.3011 85.0404 94.0965 84.0148L94.0922 84.0111C92.8876 82.9854 92.7425 81.1775 93.7681 79.9729 94.7937 78.7683 96.6017 78.6232 97.8063 79.6488ZM106.529 87.0879 106.533 87.0916C107.738 88.1173 107.883 89.9252 106.857 91.1298 105.832 92.3344 104.024 92.4795 102.819 91.4539L102.815 91.4501C101.61 90.4245 101.465 88.6166 102.491 87.412 103.516 86.2074 105.324 86.0623 106.529 87.0879ZM115.253 94.5284 115.258 94.5321C116.461 95.5586 116.605 97.3667 115.579 98.5705 114.552 99.7743 112.744 99.9181 111.54 98.8916L111.536 98.8878C110.332 97.8613 110.188 96.0533 111.215 94.8494 112.241 93.6456 114.049 93.5019 115.253 94.5284ZM123.976 101.967 123.98 101.971C125.184 102.998 125.328 104.806 124.301 106.01 123.275 107.213 121.467 107.357 120.263 106.331L120.259 106.327C119.055 105.3 118.911 103.492 119.937 102.289 120.964 101.085 122.772 100.941 123.976 101.967ZM132.699 109.407 132.703 109.41C133.907 110.437 134.05 112.245 133.024 113.449 131.997 114.653 130.189 114.796 128.986 113.77L128.981 113.766C127.777 112.739 127.634 110.931 128.66 109.728 129.687 108.524 131.495 108.38 132.699 109.407ZM141.421 116.846 141.426 116.849C142.629 117.876 142.773 119.684 141.747 120.888 140.72 122.092 138.912 122.235 137.708 121.209L137.704 121.205C136.5 120.179 136.356 118.371 137.383 117.167 138.409 115.963 140.217 115.819 141.421 116.846ZM150.144 124.285 150.148 124.288C151.352 125.315 151.496 127.123 150.469 128.327 149.443 129.531 147.635 129.674 146.431 128.648L146.426 128.644C145.223 127.618 145.079 125.81 146.105 124.606 147.132 123.402 148.94 123.258 150.144 124.285ZM158.867 131.724 158.871 131.728C160.075 132.754 160.218 134.562 159.192 135.766 158.165 136.97 156.357 137.114 155.154 136.087L155.149 136.083C153.945 135.057 153.802 133.249 154.828 132.045 155.855 130.841 157.663 130.697 158.867 131.724ZM167.589 139.163 167.594 139.167C168.797 140.193 168.941 142.001 167.915 143.205 166.888 144.409 165.08 144.553 163.876 143.526L163.872 143.522C162.668 142.496 162.524 140.688 163.551 139.484 164.577 138.28 166.385 138.136 167.589 139.163ZM176.312 146.602 176.316 146.606C177.52 147.632 177.664 149.44 176.637 150.644 175.611 151.848 173.803 151.992 172.599 150.965L172.594 150.961C171.391 149.935 171.247 148.127 172.273 146.923 173.3 145.719 175.108 145.575 176.312 146.602ZM185.034 154.041 185.039 154.045C186.243 155.071 186.386 156.879 185.36 158.083 184.333 159.287 182.525 159.431 181.321 158.404L181.317 158.401C180.113 157.374 179.97 155.566 180.996 154.362 182.023 153.158 183.831 153.015 185.034 154.041ZM193.76 161.483 193.764 161.486C194.967 162.514 195.108 164.323 194.08 165.525 193.052 166.728 191.244 166.869 190.041 165.841L190.037 165.837C188.834 164.809 188.693 163.001 189.721 161.798 190.749 160.596 192.557 160.454 193.76 161.483ZM202.483 168.922 202.487 168.925C203.689 169.953 203.831 171.762 202.803 172.964 201.775 174.167 199.967 174.308 198.764 173.28L198.76 173.276C197.557 172.248 197.416 170.44 198.444 169.238 199.472 168.035 201.28 167.894 202.483 168.922ZM211.205 176.361 211.21 176.364C212.412 177.393 212.554 179.201 211.525 180.403 210.497 181.606 208.689 181.747 207.487 180.719L207.482 180.715C206.28 179.687 206.138 177.879 207.166 176.677 208.194 175.474 210.003 175.333 211.205 176.361ZM219.928 183.8 219.932 183.804C221.135 184.832 221.276 186.64 220.248 187.842 219.22 189.045 217.412 189.186 216.209 188.158L216.205 188.154C215.002 187.126 214.861 185.318 215.889 184.116 216.917 182.913 218.725 182.772 219.928 183.8ZM228.651 191.239 228.655 191.243C229.857 192.271 229.999 194.079 228.971 195.281 227.943 196.484 226.134 196.625 224.932 195.597L224.928 195.594C223.725 194.566 223.584 192.757 224.612 191.555 225.64 190.352 227.448 190.211 228.651 191.239ZM237.373 198.678 237.378 198.682C238.58 199.71 238.721 201.518 237.693 202.72 236.665 203.923 234.857 204.064 233.655 203.036L233.65 203.033C232.448 202.005 232.306 200.196 233.334 198.994 234.362 197.791 236.171 197.65 237.373 198.678Z" fill="#000000" fill-rule="nonzero" fill-opacity="1" transform="matrix(-1 0 0 1 1891.72 963)"/><path d="M2413.5 974.5C2413.5 963.454 2422.45 954.5 2433.5 954.5 2444.55 954.5 2453.5 963.454 2453.5 974.5 2453.5 985.546 2444.55 994.5 2433.5 994.5 2422.45 994.5 2413.5 985.546 2413.5 974.5Z" stroke="#2F528F" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#000000" fill-rule="evenodd" fill-opacity="1"/><path d="M2985.79 1003.5 2985.79 1148.32C2985.79 1149.59 2984.77 1150.61 2983.5 1150.61 2982.23 1150.61 2981.21 1149.59 2981.21 1148.32L2981.21 1003.5C2981.21 1002.23 2982.23 1001.21 2983.5 1001.21 2984.77 1001.21 2985.79 1002.23 2985.79 1003.5ZM2997.25 1143.74 2983.5 1171.24 2969.75 1143.74Z" fill="#000000" fill-rule="nonzero" fill-opacity="1"/><path d="M2927.5 1293.5 2941 1239.5 3052.5 1239.5 3039 1293.5Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#BFBFBF" fill-rule="evenodd" fill-opacity="1"/><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2134.76 1234)">JSON</text><rect x="362.5" y="1507.5" width="806" height="199" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="round" stroke-miterlimit="10" stroke-opacity="1" fill="none"/><text fill="#000000" fill-opacity="1" font-family="MS Gothic,MS Gothic_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 394.812 1568)">①</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 457.581 1568)">User</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 571.339 1568)">text</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 661.608 1568)">input</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 777.085 1568)">is</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 827.25 1568)">inserted</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1006.34 1568)">as</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1071.43 1568)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 394.812 1623)">value</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 528.6 1623)">of</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 591.346 1623)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 679.3 1623)">input</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 816.502 1623)">property</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1008.7 1623)">of</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1071.43 1623)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 394.812 1678)">JSON</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 529.448 1678)">object</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 663.51 1678)">in</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 711.635 1678)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 787.26 1678)">template</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 975.177 1678)">.</text><rect x="602.5" y="476.5" width="1033" height="200" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="round" stroke-miterlimit="10" stroke-opacity="1" fill="none"/><text fill="#000000" fill-opacity="1" font-family="MS Gothic,MS Gothic_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 634.614 538)">②</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 703.112 538)">A</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 756.141 538)">template</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 953.545 538)">containing</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1183.61 538)">a</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1231.48 538)">JSON</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1376.2 538)">object</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1520.34 538)">with</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 634.614 593)">user</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 736.364 593)">text</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 822.645 593)">input</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 934.135 593)">is</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 980.335 593)">sent</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1079.24 593)">to</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1130.03 593)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1206.02 593)">text</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1279.35 593)">-</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1294.82 593)">completion</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1528.36 593)">API</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 634.614 648)">as</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 695.343 648)">a</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 733.155 648)">prompt</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 891.28 648)">.</text><rect x="1220.5" y="1507.5" width="1138" height="200" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="round" stroke-miterlimit="10" stroke-opacity="1" fill="none"/><text fill="#000000" fill-opacity="1" font-family="MS Gothic,MS Gothic_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1253.25 1569)">③</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1312.67 1569)">text</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1386 1569)">-</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1401.47 1569)">completion</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1635.64 1569)">API</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1722.58 1569)">sends</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1857.65 1569)">out</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1934.28 1569)">a</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1973.11 1569)">JSON</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2108.75 1569)">object</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2243.82 1569)">with</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1253.25 1624)">its</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1341.29 1624)">output</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1526.73 1624)">property</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1736.24 1624)">updated</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1942.31 1624)">according</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2182.15 1624)">to</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2262.15 1624)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1253.25 1679)">instructions</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1496.74 1679)">in</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1544.86 1679)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1620.49 1679)">template</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1795.23 1679)">.</text><rect x="2238.5" y="448.5" width="1178" height="256" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="round" stroke-miterlimit="10" stroke-opacity="1" fill="none"/><text fill="#000000" fill-opacity="1" font-family="MS Gothic,MS Gothic_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2271.19 510)">④</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2341.55 510)">The</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2444.56 510)">result</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2580.8 510)">is</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2638.55 510)">kept</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2749.01 510)">in</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2809.05 510)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2896.59 510)">accum</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3065.48 510)">property</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3257.3 510)">of</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3319.63 510)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2271.19 565)">JSON</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2406.17 565)">as</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2467.25 565)">a</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2505.4 565)">context</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2665.02 565)">for</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2731.25 565)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2807.21 565)">next</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2906.1 565)">turn</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2997.54 565)">of</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3048.3 565)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3124.27 565)">conversation</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3382.65 565)">.</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2271.19 620)">The</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2381.77 620)">reducer</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2581.14 620)">mechanism</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2846.97 620)">compresses</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3125.41 620)">or</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3198.17 620)">detaches</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2271.19 675)">portions</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2445.93 675)">of</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2496.35 675)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2571.97 675)">context</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2731.25 675)">data</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2832.08 675)">as</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2892.81 675)">needed</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3044.06 675)">.</text><rect x="2413.5" y="1507.5" width="1003" height="311" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="round" stroke-miterlimit="10" stroke-opacity="1" fill="none"/><text fill="#000000" fill-opacity="1" font-family="MS Gothic,MS Gothic_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2446.2 1568)">⑤</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2505.55 1568)">A</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2549.44 1568)">template</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2737.7 1568)">containing</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2958.64 1568)">a</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2997.39 1568)">JSON</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3132.97 1568)">object</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3267.97 1568)">of</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3319.33 1568)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2446.2 1623)">same</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2579.32 1623)">structure</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2778.33 1623)">as</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2847.86 1623)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2932.29 1623)">one</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3029.31 1623)">given</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3159.6 1623)">as</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3229.15 1623)">input</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3349.12 1623)">is</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2446.2 1678)">returned</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2615.78 1678)">.</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2647.87 1678)">Text</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2736.67 1678)">-</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2752.14 1678)">completion</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2992.19 1678)">API’s</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3137.71 1678)">response</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3344.53 1678)">to</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2446.2 1733)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2533.79 1733)">user</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2647.16 1733)">text</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2745.06 1733)">input</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2868.16 1733)">is</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2925.96 1733)">taken</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3061.67 1733)">from</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3177.91 1733)">within</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 3319.33 1733)">the</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2446.2 1788)">JSON</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2580.84 1788)">object</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2702.29 1788)">.</text><text fill="#000000" fill-opacity="1" font-family="MS Gothic,MS Gothic_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1005.78 918)">①</text><text fill="#000000" fill-opacity="1" font-family="MS Gothic,MS Gothic_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1645.1 874)">②</text><text fill="#000000" fill-opacity="1" font-family="MS Gothic,MS Gothic_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1929.37 934)">③</text><text fill="#000000" fill-opacity="1" font-family="MS Gothic,MS Gothic_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2251.84 1058)">④</text><text fill="#000000" fill-opacity="1" font-family="MS Gothic,MS Gothic_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2603.86 1055)">⑤</text><rect x="1464" y="1258" width="371" height="184" fill="#FFFFFF" fill-opacity="1"/><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1496.9 1315)">inpu</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1574.82 1315)">t:</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1496.9 1365)">output</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1625.23 1365)">:</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1496.9 1414)">accum</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 1618.36 1414)">:</text><path d="M1665.5 1308.5 1672.25 1281.5 1733.5 1281.5 1726.75 1308.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><path d="M1665.5 1349.5 1672.25 1322.5 1733.5 1322.5 1726.75 1349.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#BFBFBF" fill-rule="evenodd" fill-opacity="1"/><path d="M1649.5 1415.5 1656 1389.5 1717.5 1389.5 1711 1415.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#FFFFFF" fill-rule="evenodd" fill-opacity="1"/><path d="M1660.5 1408.5 1667.25 1381.5 1728.5 1381.5 1721.75 1408.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#BFBFBF" fill-rule="evenodd" fill-opacity="1"/><path d="M1672.5 1399.5 1679.25 1372.5 1739.5 1372.5 1732.75 1399.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#FFFFFF" fill-rule="evenodd" fill-opacity="1"/><path d="M1682.5 1391.5 1689.25 1364.5 1750.5 1364.5 1743.75 1391.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#BFBFBF" fill-rule="evenodd" fill-opacity="1"/><rect x="2031" y="1259" width="371" height="184" fill="#FFFFFF" fill-opacity="1"/><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2064.09 1316)">inpu</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2142.01 1316)">t:</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2064.09 1366)">output:</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2064.09 1415)">accum</text><text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="41" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" transform="matrix(1 0 0 1 2194.71 1415)">:</text><path d="M2233.5 1309.5 2240.25 1282.5 2300.5 1282.5 2293.75 1309.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/><path d="M2233.5 1350.5 2240.25 1323.5 2300.5 1323.5 2293.75 1350.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#BFBFBF" fill-rule="evenodd" fill-opacity="1"/><path d="M2216.5 1417.5 2223.25 1390.5 2284.5 1390.5 2277.75 1417.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#FFFFFF" fill-rule="evenodd" fill-opacity="1"/><path d="M2227.5 1409.5 2234.25 1382.5 2295.5 1382.5 2288.75 1409.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#BFBFBF" fill-rule="evenodd" fill-opacity="1"/><path d="M2239.5 1400.5 2246.25 1373.5 2306.5 1373.5 2299.75 1400.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#FFFFFF" fill-rule="evenodd" fill-opacity="1"/><path d="M2250.5 1392.5 2257.25 1365.5 2317.5 1365.5 2310.75 1392.5Z" stroke="#000000" stroke-width="3.4375" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#BFBFBF" fill-rule="evenodd" fill-opacity="1"/><path d="M0 0 0.000360892 264.538" stroke="#000000" stroke-width="4.58333" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd" transform="matrix(-1 0 0 1 2555.5 982.5)"/><path d="M22.9166-2.29164 280.923-2.29131C282.189-2.2913 283.215-1.26529 283.215 0.000363836 283.215 1.26602 282.189 2.29203 280.923 2.29203L22.9166 2.2917C21.651 2.29169 20.625 1.26568 20.625 2.64962e-05 20.625-1.26563 21.651-2.29164 22.9166-2.29164ZM27.5 13.75 0 0 27.5-13.75Z" fill="#000000" fill-rule="nonzero" fill-opacity="1" transform="matrix(-1 0 0 1 2838.42 1246.5)"/></g></svg>
|
Binary file
|
@@ -0,0 +1,41 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<svg width="2035" height="1068" overflow="hidden" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<defs>
|
4
|
+
<clipPath id="clip0">
|
5
|
+
<rect x="1347" y="366" width="2035" height="1068"/>
|
6
|
+
</clipPath>
|
7
|
+
</defs>
|
8
|
+
<g clip-path="url(#clip0)" transform="translate(-1347 -366)">
|
9
|
+
<path d="M2.17587-0.719256 6.49141 12.336 2.13967 13.7745-2.17587 0.719256ZM7.92992 16.6877 12.2455 29.7429 7.89372 31.1814 3.57818 18.1262ZM13.684 34.0947 17.9995 47.1499 13.6478 48.5884 9.33223 35.5332ZM19.438 51.5016 23.7536 64.5568 19.4018 65.9953 15.0863 52.9401ZM25.1921 68.9085 29.5076 81.9638 25.1559 83.4023 20.8403 70.3471ZM30.9461 86.3155 35.2617 99.3707 30.9099 100.809 26.5944 87.754ZM36.7002 103.722 41.0157 116.778 36.664 118.216 32.3484 105.161ZM42.4542 121.129 46.7698 134.185 42.418 135.623 38.1025 122.568ZM48.2083 138.536 49.8125 143.389 45.4607 144.828 43.8565 139.975ZM54.9884 123.649 48.9939 148.215 29.5395 132.062C28.5657 131.253 28.4317 129.808 29.2402 128.835 30.0488 127.861 31.4936 127.727 32.4673 128.535L49.1007 142.346 45.4104 143.566 50.5357 122.563C50.8358 121.333 52.0758 120.579 53.3054 120.88 54.5349 121.18 55.2885 122.42 54.9884 123.649Z" fill="#000000" fill-rule="nonzero" fill-opacity="1" transform="matrix(1 0 0 -1 2237.5 923.7)"/>
|
10
|
+
<path d="M2423.31 922.419 2419 909.364 2423.35 907.925 2427.66 920.98ZM2417.56 905.012 2413.24 891.957 2417.59 890.518 2421.91 903.573ZM2411.8 887.605 2407.49 874.55 2411.84 873.111 2416.16 886.167ZM2406.05 870.198 2401.74 857.143 2406.09 855.704 2410.4 868.76ZM2400.3 852.791 2395.98 839.736 2400.33 838.297 2404.65 851.353ZM2394.54 835.384 2390.23 822.329 2394.58 820.89 2398.89 833.946ZM2388.79 817.977 2384.47 804.922 2388.82 803.483 2393.14 816.539ZM2383.03 800.57 2378.72 787.515 2383.07 786.076 2387.39 799.132ZM2377.28 783.163 2375.68 778.31 2380.03 776.872 2381.63 781.725ZM2370.5 798.05 2376.49 773.485 2395.95 789.638C2396.92 790.447 2397.06 791.891 2396.25 792.865 2395.44 793.839 2394 793.973 2393.02 793.164L2376.39 779.354 2380.08 778.134 2374.95 799.137C2374.65 800.367 2373.41 801.12 2372.18 800.82 2370.95 800.52 2370.2 799.28 2370.5 798.05Z" fill="#000000" fill-rule="nonzero" fill-opacity="1"/>
|
11
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 1462.52 438)">Current Discourse Space</text>
|
12
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 2196.11 505)">Usage Event</text>
|
13
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 2178.87 644)">Viewing Frame</text>
|
14
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 2270.33 742)">Focus</text>
|
15
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 2255.01 1032)">Ground</text>
|
16
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 2249.34 1108)">Context</text>
|
17
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 2142.52 1201)">Shared Knowledge</text>
|
18
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 1407.17 897)">. . .</text>
|
19
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="700" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 3216.98 897)">. . .</text>
|
20
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="83" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 1999.76 913)">></text>
|
21
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="83" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 2638.71 910)">></text>
|
22
|
+
<path d="M1352.5 982.208 3305.01 982.209C3306.27 982.209 3307.3 983.235 3307.3 984.5 3307.3 985.766 3306.27 986.792 3305.01 986.792L1352.5 986.792C1351.23 986.792 1350.21 985.766 1350.21 984.5 1350.21 983.234 1351.23 982.208 1352.5 982.208ZM3305 984.5 3286.67 961.584 3332.5 984.5 3286.67 1007.42Z" fill="#000000" fill-rule="nonzero" fill-opacity="1"/>
|
23
|
+
<path d="M1352.5 522.669C1352.5 438.076 1421.08 369.5 1505.67 369.5L3179.33 369.5C3263.92 369.5 3332.5 438.076 3332.5 522.669L3332.5 1135.33C3332.5 1219.92 3263.92 1288.5 3179.33 1288.5L1505.67 1288.5C1421.08 1288.5 1352.5 1219.92 1352.5 1135.33Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/>
|
24
|
+
<path d="M1525.5 611.335C1525.5 570.005 1559 536.5 1600.33 536.5L1899.67 536.5C1941 536.5 1974.5 570.005 1974.5 611.335L1974.5 1165.67C1974.5 1207 1941 1240.5 1899.67 1240.5L1600.33 1240.5C1559 1240.5 1525.5 1207 1525.5 1165.67Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/>
|
25
|
+
<path d="M2083.5 619.668C2083.5 571.527 2122.53 532.5 2170.67 532.5L2519.33 532.5C2567.47 532.5 2606.5 571.527 2606.5 619.668L2606.5 1148.33C2606.5 1196.47 2567.47 1235.5 2519.33 1235.5L2170.67 1235.5C2122.53 1235.5 2083.5 1196.47 2083.5 1148.33Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/>
|
26
|
+
<path d="M2717.5 611.163C2717.5 569.928 2750.93 536.5 2792.16 536.5L3090.8 536.5C3132.04 536.5 3165.47 569.928 3165.47 611.163L3165.47 1164.84C3165.47 1206.07 3132.04 1239.5 3090.8 1239.5L2792.16 1239.5C2750.93 1239.5 2717.5 1206.07 2717.5 1164.84Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/>
|
27
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 1387.69 1090)">Time</text>
|
28
|
+
<path d="M2110.5 639.834C2110.5 596.571 2145.57 561.5 2188.83 561.5L2502.17 561.5C2545.43 561.5 2580.5 596.571 2580.5 639.834L2580.5 1050.17C2580.5 1093.43 2545.43 1128.5 2502.17 1128.5L2188.83 1128.5C2145.57 1128.5 2110.5 1093.43 2110.5 1050.17Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/>
|
29
|
+
<path d="M2170.5 892.167C2170.5 873.573 2185.57 858.5 2204.17 858.5L2471.83 858.5C2490.43 858.5 2505.5 873.573 2505.5 892.167L2505.5 1026.83C2505.5 1045.43 2490.43 1060.5 2471.83 1060.5L2204.17 1060.5C2185.57 1060.5 2170.5 1045.43 2170.5 1026.83Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/>
|
30
|
+
<path d="M2165.5 626.501C2165.5 606.618 2181.62 590.5 2201.5 590.5L2464.5 590.5C2484.38 590.5 2500.5 606.618 2500.5 626.501L2500.5 770.499C2500.5 790.382 2484.38 806.5 2464.5 806.5L2201.5 806.5C2181.62 806.5 2165.5 790.382 2165.5 770.499Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/>
|
31
|
+
<path d="M2226.5 725.5C2226.5 698.438 2273.29 676.5 2331 676.5 2388.71 676.5 2435.5 698.438 2435.5 725.5 2435.5 752.562 2388.71 774.5 2331 774.5 2273.29 774.5 2226.5 752.562 2226.5 725.5Z" stroke="#000000" stroke-width="9.16667" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/>
|
32
|
+
<path d="M2196.5 929C2196.5 904.976 2215.98 885.5 2240 885.5 2264.02 885.5 2283.5 904.976 2283.5 929 2283.5 953.024 2264.02 972.5 2240 972.5 2215.98 972.5 2196.5 953.024 2196.5 929Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#FFFFFF" fill-rule="evenodd" fill-opacity="1"/>
|
33
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 2223.89 943)">S</text>
|
34
|
+
<path d="M2390.5 927C2390.5 902.976 2410.2 883.5 2434.5 883.5 2458.8 883.5 2478.5 902.976 2478.5 927 2478.5 951.024 2458.8 970.5 2434.5 970.5 2410.2 970.5 2390.5 951.024 2390.5 927Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="#FFFFFF" fill-rule="evenodd" fill-opacity="1"/>
|
35
|
+
<text fill="#000000" fill-opacity="1" font-family="Arial,Arial_MSFontService,sans-serif" font-style="normal" font-variant="normal" font-weight="400" font-stretch="normal" font-size="46" text-anchor="start" direction="ltr" writing-mode="lr-tb" unicode-bidi="normal" text-decoration="none" style="white-space: pre;" transform="matrix(1 0 0 1 2417.9 944)">H</text>
|
36
|
+
<path d="M1554.5 626.668C1554.5 590.677 1583.68 561.5 1619.67 561.5L1880.33 561.5C1916.32 561.5 1945.5 590.677 1945.5 626.668L1945.5 1071.33C1945.5 1107.32 1916.32 1136.5 1880.33 1136.5L1619.67 1136.5C1583.68 1136.5 1554.5 1107.32 1554.5 1071.33Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/>
|
37
|
+
<path d="M1609.5 627.667C1609.5 607.14 1626.14 590.5 1646.67 590.5L1852.33 590.5C1872.86 590.5 1889.5 607.14 1889.5 627.667L1889.5 776.333C1889.5 796.86 1872.86 813.5 1852.33 813.5L1646.67 813.5C1626.14 813.5 1609.5 796.86 1609.5 776.333Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/>
|
38
|
+
<path d="M1582.5 887.001C1582.5 869.604 1596.6 855.5 1614 855.5L1886 855.5C1903.4 855.5 1917.5 869.604 1917.5 887.001L1917.5 1013C1917.5 1030.4 1903.4 1044.5 1886 1044.5L1614 1044.5C1596.6 1044.5 1582.5 1030.4 1582.5 1013Z" stroke="#000000" stroke-width="4.58333" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="8" stroke-opacity="1" fill="none" fill-rule="evenodd"/>
|
39
|
+
<path d="M4.31275-2.28292 18.0627-2.25501 18.0534 2.32832 4.30344 2.30041ZM22.646-2.24571 36.396-2.2178 36.3867 2.36553 22.6367 2.33762ZM40.9793-2.20849 54.7293-2.18059 54.72 2.40274 40.97 2.37483ZM59.3126-2.17128 73.0626-2.14337 73.0533 2.43995 59.3033 2.41204ZM77.6459-2.13407 91.3959-2.10616 91.3866 2.47716 77.6366 2.44925ZM95.9792-2.09686 97.2214-2.09434 97.2121 2.48899 95.9699 2.48647ZM21.3998 13.4451-0.0155744-3.1728e-05 21.4542-13.3581C22.5289-14.0268 23.9421-13.6976 24.6107-12.623 25.2793-11.5484 24.9501-10.1352 23.8755-9.46656L5.51896 1.95454 5.52685-1.93212 23.8369 9.56341C24.9088 10.2364 25.2322 11.6509 24.5592 12.7228 23.8863 13.7947 22.4717 14.1181 21.3998 13.4451ZM80.1253-13.2391 101.541 0.206101 80.0709 13.5642C78.9963 14.2328 77.5831 13.9037 76.9145 12.8291 76.2459 11.7544 76.575 10.3412 77.6497 9.67263L96.0062-1.74847 95.9983 2.13819 77.6883-9.35734C76.6164-10.0303 76.293-11.4448 76.9659-12.5167 77.6389-13.5886 79.0534-13.912 80.1253-13.2391Z" fill="#000000" fill-rule="nonzero" fill-opacity="1" transform="matrix(-1 0 0 1 2388.03 927.5)"/>
|
40
|
+
</g>
|
41
|
+
</svg>
|
Binary file
|
Binary file
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<svg version="1.1" id="レイヤー_1" x="0px" y="0px" viewBox="0 0 1527.6 225" style="enable-background:new 0 0 1527.6 271.6;" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<style type="text/css">
|
4
|
+
.st0{fill:#333333;}
|
5
|
+
.st1{font-family:'Arial-BoldMT';}
|
6
|
+
.st2{font-size:220px;}
|
7
|
+
.st3{fill:#EB742B;}
|
8
|
+
.st4{fill:#999999;}
|
9
|
+
</style>
|
10
|
+
<text transform="matrix(1 0 0 1 0 188.7405)" class="st0 st1 st2" style="white-space: pre;">Monadic</text>
|
11
|
+
<text transform="matrix(1 0 0 1 1038.769 188.7401)" class="st3 st1 st2" style="white-space: pre;">Chat</text>
|
12
|
+
<text transform="matrix(1 0 0 1 892.245 188.7401)" class="st4 st1 st2" style="white-space: pre;">::</text>
|
13
|
+
</svg>
|
Binary file
|
Binary file
|