From 2d195e4dc5216df9027ff89c561f41907e1d551d Mon Sep 17 00:00:00 2001 From: jiyinyiyong Date: Wed, 10 Oct 2018 00:18:27 +0800 Subject: [PATCH] roughly activate project again with latest workflow --- app/.gitattributes => .gitattributes | 0 app/.gitignore => .gitignore | 1 + .npmignore | 9 + app/calcit.edn | 10528 --------- app/cli/build/upload.clj | 19 - app/deps.edn | 2 - app/entry/main.css | 9 - app/package.json | 22 - app/shadow-cljs.edn | 26 - app/src/app/comp/container.cljs | 59 - app/src/app/comp/login.cljs | 53 - app/src/app/comp/profile.cljs | 28 - app/src/app/render.cljs | 36 - app/src/app/schema.cljs | 4 - app/src/app/style.cljs | 9 - app/yarn.lock | 1335 -- calcit.edn | 18074 ++++++++++++++++ {app/cli => cli}/build/main.clj | 25 +- cli/build/upload.cljs | 15 + entry/main.css | 14 + {app/entry => entry}/manifest.json | 4 +- {app/entry => entry}/termina.png | Bin {app/entry => entry}/termina.sketch | Bin package.json | 37 + server/.gitattributes | 3 - server/.gitignore | 5 - server/.npmignore | 5 - server/README.md | 5 - server/calcit.edn | 6061 ------ server/package.json | 36 - server/shadow-cljs.edn | 11 - server/src/server/main.cljs | 56 - server/src/server/twig/user.cljs | 4 - server/src/server/updater/core.cljs | 31 - server/src/server/updater/router.cljs | 5 - server/src/server/updater/session.cljs | 14 - server/src/server/updater/user.cljs | 53 - server/src/server/util.cljs | 13 - server/yarn.lock | 1279 -- shadow-cljs.edn | 34 + app/src/app/main.cljs => src/app/client.cljs | 21 +- {app/src => src}/app/comp/commander.cljs | 1 - src/app/comp/container.cljs | 89 + {app/src => src}/app/comp/dialog.cljs | 0 {app/src => src}/app/comp/header.cljs | 0 {app/src => src}/app/comp/history.cljs | 0 {app/src => src}/app/comp/home.cljs | 0 src/app/comp/login.cljs | 56 + {app/src => src}/app/comp/missing.cljs | 0 src/app/comp/navigation.cljs | 28 + {app/src => src}/app/comp/process.cljs | 2 + {app/src => src}/app/comp/process_detail.cljs | 0 src/app/comp/profile.cljs | 49 + {app/src => src}/app/comp/reel.cljs | 8 +- {app/src => src}/app/comp/workflow.cljs | 0 src/app/config.cljs | 22 + .../network.cljs => src/app/connection.cljs | 3 +- {server/src/server => src/app}/manager.cljs | 6 +- src/app/node_config.cljs | 4 + src/app/page.cljs | 43 + {server/src/server => src/app}/reel.cljs | 12 +- {server/src/server => src/app}/schema.cljs | 24 +- src/app/server.cljs | 76 + .../network.cljs => src/app/service.cljs | 22 +- src/app/style.cljs | 13 + .../server => src/app}/twig/container.cljs | 22 +- src/app/twig/user.cljs | 4 + src/app/updater.cljs | 34 + .../server => src/app}/updater/process.cljs | 2 +- src/app/updater/router.cljs | 4 + src/app/updater/session.cljs | 11 + src/app/updater/user.cljs | 46 + .../server => src/app}/updater/workflow.cljs | 2 +- {app/src => src}/app/util.cljs | 7 + yarn.lock | 830 + 75 files changed, 19582 insertions(+), 19783 deletions(-) rename app/.gitattributes => .gitattributes (100%) rename app/.gitignore => .gitignore (81%) create mode 100644 .npmignore delete mode 100644 app/calcit.edn delete mode 100644 app/cli/build/upload.clj delete mode 100644 app/deps.edn delete mode 100644 app/entry/main.css delete mode 100644 app/package.json delete mode 100644 app/shadow-cljs.edn delete mode 100644 app/src/app/comp/container.cljs delete mode 100644 app/src/app/comp/login.cljs delete mode 100644 app/src/app/comp/profile.cljs delete mode 100644 app/src/app/render.cljs delete mode 100644 app/src/app/schema.cljs delete mode 100644 app/src/app/style.cljs delete mode 100644 app/yarn.lock create mode 100644 calcit.edn rename {app/cli => cli}/build/main.clj (51%) create mode 100644 cli/build/upload.cljs create mode 100644 entry/main.css rename {app/entry => entry}/manifest.json (74%) rename {app/entry => entry}/termina.png (100%) rename {app/entry => entry}/termina.sketch (100%) create mode 100644 package.json delete mode 100644 server/.gitattributes delete mode 100644 server/.gitignore delete mode 100644 server/.npmignore delete mode 100644 server/README.md delete mode 100644 server/calcit.edn delete mode 100644 server/package.json delete mode 100644 server/shadow-cljs.edn delete mode 100644 server/src/server/main.cljs delete mode 100644 server/src/server/twig/user.cljs delete mode 100644 server/src/server/updater/core.cljs delete mode 100644 server/src/server/updater/router.cljs delete mode 100644 server/src/server/updater/session.cljs delete mode 100644 server/src/server/updater/user.cljs delete mode 100644 server/src/server/util.cljs delete mode 100644 server/yarn.lock create mode 100644 shadow-cljs.edn rename app/src/app/main.cljs => src/app/client.cljs (70%) rename {app/src => src}/app/comp/commander.cljs (96%) create mode 100644 src/app/comp/container.cljs rename {app/src => src}/app/comp/dialog.cljs (100%) rename {app/src => src}/app/comp/header.cljs (100%) rename {app/src => src}/app/comp/history.cljs (100%) rename {app/src => src}/app/comp/home.cljs (100%) create mode 100644 src/app/comp/login.cljs rename {app/src => src}/app/comp/missing.cljs (100%) create mode 100644 src/app/comp/navigation.cljs rename {app/src => src}/app/comp/process.cljs (98%) rename {app/src => src}/app/comp/process_detail.cljs (100%) create mode 100644 src/app/comp/profile.cljs rename {app/src => src}/app/comp/reel.cljs (75%) rename {app/src => src}/app/comp/workflow.cljs (100%) create mode 100644 src/app/config.cljs rename app/src/app/network.cljs => src/app/connection.cljs (89%) rename {server/src/server => src/app}/manager.cljs (79%) create mode 100644 src/app/node_config.cljs create mode 100644 src/app/page.cljs rename {server/src/server => src/app}/reel.cljs (74%) rename {server/src/server => src/app}/schema.cljs (53%) create mode 100644 src/app/server.cljs rename server/src/server/network.cljs => src/app/service.cljs (68%) create mode 100644 src/app/style.cljs rename {server/src/server => src/app}/twig/container.cljs (59%) create mode 100644 src/app/twig/user.cljs create mode 100644 src/app/updater.cljs rename {server/src/server => src/app}/updater/process.cljs (95%) create mode 100644 src/app/updater/router.cljs create mode 100644 src/app/updater/session.cljs create mode 100644 src/app/updater/user.cljs rename {server/src/server => src/app}/updater/workflow.cljs (94%) rename {app/src => src}/app/util.cljs (82%) create mode 100644 yarn.lock diff --git a/app/.gitattributes b/.gitattributes similarity index 100% rename from app/.gitattributes rename to .gitattributes diff --git a/app/.gitignore b/.gitignore similarity index 81% rename from app/.gitignore rename to .gitignore index d269732..395f39e 100644 --- a/app/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /node_modules .shadow-cljs/ .cpcache/ +.nrepl-port diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..f095163 --- /dev/null +++ b/.npmignore @@ -0,0 +1,9 @@ + +.shadow-cljs/ +cli/ +entry +target/ +src/ +calcit.edn +shadow-cljs.edn +yarn.lock diff --git a/app/calcit.edn b/app/calcit.edn deleted file mode 100644 index 52ceb60..0000000 --- a/app/calcit.edn +++ /dev/null @@ -1,10528 +0,0 @@ -{ - :ir { - :package "app" - :root {:ns "main", :def "main!"} - :files { - "app.comp.commander" { - :ns { - :type :expr, :by "root", :at 1517129225764, :id "rkeMGA-jBM" - :data { - "T" {:type :leaf, :by "root", :at 1517129225764, :text "ns", :id "S1-zzAZsBG"} - "j" {:type :leaf, :by "root", :at 1517129225764, :text "app.comp.commander", :id "rkzMfC-sHM"} - "r" { - :type :expr, :id "ryF7R-srG", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547394445} - "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "rJXHzqUxxRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S14rzqLgg0B-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1rHfcUggCr-", :text "respo-ui.colors", :by "root", :at 1516547392332} - "r" {:type :leaf, :id "ByUBz9LleASb", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "BkwSMqLglCBZ", :text "colors", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "SkVQg5h1z", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} - "n" {:type :leaf, :by "root", :at 1517201096861, :text "mutation->", :id "SJg108Q3BG"} - "p" {:type :leaf, :by "root", :at 1517673902876, :text "action->", :id "HklV2aUmUG"} - "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} - "y" {:type :leaf, :by "root", :at 1517129429398, :text "input", :id "SJb3RAbjHf"} - "yT" {:type :leaf, :by "root", :at 1517201251121, :text "button", :id "Hkgcvwm3SG"} - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517130919368, :id "HyZk3EMjHG" - :data { - "T" {:type :leaf, :by "root", :at 1517130921180, :text "[]", :id "HyZk3EMjHGleaf"} - "j" {:type :leaf, :by "root", :at 1517130923222, :text "keycode.core", :id "rJ--hNGjBz"} - "r" {:type :leaf, :by "root", :at 1517130924834, :text ":as", :id "SkI72VMjSG"} - "v" {:type :leaf, :by "root", :at 1517130927061, :text "keycode", :id "SyWrhNfoBz"} - } - } - "yT" { - :type :expr, :by "root", :at 1517201331480, :id "Bkei3PXnHz" - :data { - "T" {:type :leaf, :by "root", :at 1517201331780, :text "[]", :id "Bkei3PXnHzleaf"} - "j" {:type :leaf, :by "root", :at 1517201333886, :text "respo.comp.space", :id "rJZn3w73Bz"} - "r" {:type :leaf, :by "root", :at 1517201334600, :text ":refer", :id "HymR2PmnSM"} - "v" { - :type :expr, :by "root", :at 1517201334829, :id "Byb16vQhSM" - :data { - "T" {:type :leaf, :by "root", :at 1517201335183, :text "[]", :id "SJx1pwQ2Hf"} - "j" {:type :leaf, :by "root", :at 1517201335779, :text "=<", :id "rJ4kTPX2rf"} - } - } - } - } - } - } - } - } - :defs { - "comp-commander" { - :type :expr, :by "root", :at 1517129275723, :id "rJeNB0ZjSz" - :data { - "T" {:type :leaf, :by "root", :at 1517129279287, :text "defcomp", :id "H1Z4rCbsrG"} - "j" {:type :leaf, :by "root", :at 1517129275723, :text "comp-commander", :id "SyfEBCZorz"} - "r" { - :type :expr, :by "root", :at 1517129275723, :id "rkQ4r0Wjrz" - :data { - "T" {:type :leaf, :by "root", :at 1517129329236, :text "states", :id "B1gddRWiBM"} - } - } - "v" { - :type :expr, :by "root", :at 1517129332201, :id "Hyen_R-iSM" - :data { - "D" {:type :leaf, :by "root", :at 1517129332801, :text "let", :id "ByW2dAbjHz"} - "L" { - :type :expr, :by "root", :at 1517129333084, :id "S1mTuAWjHM" - :data { - "T" { - :type :expr, :by "root", :at 1517129333265, :id "S1Ep_A-oSG" - :data { - "T" {:type :leaf, :by "root", :at 1517129333963, :text "state", :id "rkza_C-jSf"} - "j" { - :type :expr, :by "root", :at 1517129387773, :id "rkgV30ZiHf" - :data { - "D" {:type :leaf, :by "root", :at 1517129388340, :text "or", :id "r1bE3CWsHz"} - "T" { - :type :expr, :by "root", :at 1517129335228, :id "SkWJtR-sSG" - :data { - "T" {:type :leaf, :by "root", :at 1517129337111, :text ":data", :id "rJkFRboBG"} - "j" {:type :leaf, :by "root", :at 1517129338081, :text "states", :id "Hk7WKCbsrz"} - } - } - "j" { - :type :expr, :by "root", :at 1517129391464, :id "BJP2Cbirf" - :data { - "T" {:type :leaf, :by "root", :at 1517129391804, :text "{}", :id "Bkxr3AZjHz"} - "j" { - :type :expr, :by "root", :at 1517129392033, :id "ryzO2C-sBM" - :data { - "T" {:type :leaf, :by "root", :at 1517201155100, :text ":command", :id "HyZuhCWjBz"} - "j" {:type :leaf, :by "root", :at 1517129393562, :text "|", :id "H1bt2R-iBG"} - } - } - "r" { - :type :expr, :by "root", :at 1517201167628, :id "SJ_fw7nBz" - :data { - "T" {:type :leaf, :by "root", :at 1517201170767, :text ":cwd", :id "SJ_fw7nBzleaf"} - "j" {:type :leaf, :by "root", :at 1517201171590, :text "|", :id "SJfsfPm3BG"} - } - } - } - } - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517129280185, :id "rJ-uHCWiHG" - :data { - "T" {:type :leaf, :by "root", :at 1517129282323, :text "div", :id "By9BCbiHz"} - "j" { - :type :expr, :by "root", :at 1517129282588, :id "B1iH0WiSf" - :data { - "T" {:type :leaf, :by "root", :at 1517129282880, :text "{}", :id "r1QcHAZjrG"} - } - } - "n" { - :type :expr, :by "root", :at 1517129340799, :id "B1lmP72Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517129383683, :text "input", :id "Hyy3A-jSz"} - "j" { - :type :expr, :by "root", :at 1517129383917, :id "rJMl2A-oBf" - :data { - "T" {:type :leaf, :by "root", :at 1517129384247, :text "{}", :id "S1-xhC-iSf"} - "j" { - :type :expr, :by "root", :at 1517129384495, :id "SJLln0ZsHf" - :data { - "T" {:type :leaf, :by "root", :at 1517131139091, :text ":value", :id "rJre20bsBG"} - "j" { - :type :expr, :by "root", :at 1517129397533, :id "BJAhCboBG" - :data { - "T" {:type :leaf, :by "root", :at 1517201181198, :text ":cwd", :id "SJa20biHz"} - "j" {:type :leaf, :by "root", :at 1517129399278, :text "state", :id "Bkgk6A-jHf"} - } - } - } - } - "n" { - :type :expr, :by "root", :at 1517129436970, :id "SygHyJzsrf" - :data { - "T" {:type :leaf, :by "root", :at 1517129437934, :text ":style", :id "SygHyJzsrfleaf"} - "j" { - :type :expr, :by "root", :at 1517129438657, :id "ryP1JMsHM" - :data { - "T" {:type :leaf, :by "root", :at 1517129440260, :text "merge", :id "Syf8JJGoSM"} - "j" {:type :leaf, :by "root", :at 1517129444225, :text "ui/input", :id "SkfckyfiSM"} - "r" { - :type :expr, :by "root", :at 1517129465390, :id "S1bbZJfjHz" - :data { - "T" {:type :leaf, :by "root", :at 1517129465249, :text "{}", :id "r1bebkMiBz"} - "j" { - :type :expr, :by "root", :at 1517129466175, :id "rJWMW1MiBG" - :data { - "T" {:type :leaf, :by "root", :at 1517129467154, :text ":width", :id "r1zW1GoHf"} - "j" {:type :leaf, :by "root", :at 1517843679772, :text "160", :id "HJ4QZ1fiHf"} - } - } - "r" { - :type :expr, :by "root", :at 1517205296594, :id "BJYEPV2Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517205298666, :text ":font-family", :id "BJYEPV2Szleaf"} - "j" {:type :leaf, :by "root", :at 1517205303464, :text "ui/font-code", :id "SkeiNwE2SM"} - } - } - } - } - } - } - } - } - "p" { - :type :expr, :by "root", :at 1517129449013, :id "ry-Ze1fiHf" - :data { - "T" {:type :leaf, :by "root", :at 1517129453002, :text ":placeholder", :id "ry-Ze1fiHfleaf"} - "j" {:type :leaf, :by "root", :at 1517843675365, :text "|cwd", :id "SJmHekzsrM"} - } - } - "r" { - :type :expr, :by "root", :at 1517129400750, :id "HJbTRbsHf" - :data { - "T" {:type :leaf, :by "root", :at 1517129404918, :text ":on-input", :id "HJbTRbsHfleaf"} - "r" { - :type :expr, :by "root", :at 1517201074975, :id "BylsnIQ2BM" - :data { - "T" {:type :leaf, :by "root", :at 1517201077775, :text "mutation->", :id "BylsnIQ2BMleaf"} - "j" { - :type :expr, :by "root", :at 1517201078575, :id "HyyaIm2Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517201081122, :text "assoc", :id "SkxCh8mhHf"} - "j" {:type :leaf, :by "root", :at 1517201084103, :text "state", :id "SJWWTLm2rM"} - "r" {:type :leaf, :by "root", :at 1517201199184, :text ":cwd", :id "Byra8X2SG"} - "v" { - :type :expr, :by "root", :at 1517201086394, :id "H1Q8TLX3HG" - :data { - "T" {:type :leaf, :by "root", :at 1517201087116, :text ":value", :id "SJzLTUm2BG"} - "j" {:type :leaf, :by "root", :at 1517201089857, :text "%e", :id "Sy_p87hrM"} - } - } - } - } - } - } - } - } - } - } - } - } - "p" { - :type :expr, :by "root", :at 1517201326230, :id "rklIhPm3rG" - :data { - "T" {:type :leaf, :by "root", :at 1517201326859, :text "=<", :id "rklIhPm3rGleaf"} - "j" {:type :leaf, :by "root", :at 1517201327615, :text "8", :id "rJZv2PQ3rG"} - "r" {:type :leaf, :by "root", :at 1517201328200, :text "nil", :id "HkxdhDQnBG"} - } - } - "r" { - :type :expr, :by "root", :at 1517129340799, :id "rkBKCboSG" - :data { - "T" {:type :leaf, :by "root", :at 1517129383683, :text "input", :id "Hyy3A-jSz"} - "j" { - :type :expr, :by "root", :at 1517129383917, :id "rJMl2A-oBf" - :data { - "T" {:type :leaf, :by "root", :at 1517129384247, :text "{}", :id "S1-xhC-iSf"} - "j" { - :type :expr, :by "root", :at 1517129384495, :id "SJLln0ZsHf" - :data { - "T" {:type :leaf, :by "root", :at 1517131139091, :text ":value", :id "rJre20bsBG"} - "j" { - :type :expr, :by "root", :at 1517129397533, :id "BJAhCboBG" - :data { - "T" {:type :leaf, :by "root", :at 1517201156928, :text ":command", :id "SJa20biHz"} - "j" {:type :leaf, :by "root", :at 1517129399278, :text "state", :id "Bkgk6A-jHf"} - } - } - } - } - "n" { - :type :expr, :by "root", :at 1517129436970, :id "SygHyJzsrf" - :data { - "T" {:type :leaf, :by "root", :at 1517129437934, :text ":style", :id "SygHyJzsrfleaf"} - "j" { - :type :expr, :by "root", :at 1517129438657, :id "ryP1JMsHM" - :data { - "T" {:type :leaf, :by "root", :at 1517129440260, :text "merge", :id "Syf8JJGoSM"} - "j" {:type :leaf, :by "root", :at 1517129444225, :text "ui/input", :id "SkfckyfiSM"} - "r" { - :type :expr, :by "root", :at 1517129465390, :id "S1bbZJfjHz" - :data { - "T" {:type :leaf, :by "root", :at 1517129465249, :text "{}", :id "r1bebkMiBz"} - "j" { - :type :expr, :by "root", :at 1517129466175, :id "rJWMW1MiBG" - :data { - "T" {:type :leaf, :by "root", :at 1517129467154, :text ":width", :id "r1zW1GoHf"} - "j" {:type :leaf, :by "root", :at 1517843682973, :text "160", :id "HJ4QZ1fiHf"} - } - } - "r" { - :type :expr, :by "root", :at 1517205296594, :id "B1WXHvEhBM" - :data { - "T" {:type :leaf, :by "root", :at 1517205298666, :text ":font-family", :id "BJYEPV2Szleaf"} - "j" {:type :leaf, :by "root", :at 1517205303464, :text "ui/font-code", :id "SkeiNwE2SM"} - } - } - } - } - } - } - } - } - "p" { - :type :expr, :by "root", :at 1517129449013, :id "ry-Ze1fiHf" - :data { - "T" {:type :leaf, :by "root", :at 1517129453002, :text ":placeholder", :id "ry-Ze1fiHfleaf"} - "j" {:type :leaf, :by "root", :at 1517129460470, :text "|Command", :id "SJmHekzsrM"} - } - } - "r" { - :type :expr, :by "root", :at 1517129400750, :id "HJbTRbsHf" - :data { - "T" {:type :leaf, :by "root", :at 1517129404918, :text ":on-input", :id "HJbTRbsHfleaf"} - "r" { - :type :expr, :by "root", :at 1517201074975, :id "BylsnIQ2BM" - :data { - "T" {:type :leaf, :by "root", :at 1517201077775, :text "mutation->", :id "BylsnIQ2BMleaf"} - "j" { - :type :expr, :by "root", :at 1517201078575, :id "HyyaIm2Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517201081122, :text "assoc", :id "SkxCh8mhHf"} - "j" {:type :leaf, :by "root", :at 1517201084103, :text "state", :id "SJWWTLm2rM"} - "r" {:type :leaf, :by "root", :at 1517201159131, :text ":command", :id "Byra8X2SG"} - "v" { - :type :expr, :by "root", :at 1517201086394, :id "H1Q8TLX3HG" - :data { - "T" {:type :leaf, :by "root", :at 1517201087116, :text ":value", :id "SJzLTUm2BG"} - "j" {:type :leaf, :by "root", :at 1517201089857, :text "%e", :id "Sy_p87hrM"} - } - } - } - } - } - } - } - } - } - } - } - } - "t" { - :type :expr, :by "root", :at 1517201361243, :id "SyxYCw72SM" - :data { - "T" {:type :leaf, :by "root", :at 1517201361718, :text "=<", :id "SyxYCw72SMleaf"} - "j" {:type :leaf, :by "root", :at 1517201362851, :text "8", :id "SyxcAPX2SG"} - "r" {:type :leaf, :by "root", :at 1517201363318, :text "nil", :id "HkWoAPXhBM"} - } - } - "v" { - :type :expr, :by "root", :at 1517201213711, :id "BkLHwX3Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517201215134, :text "button", :id "BkLHwX3Bzleaf"} - "j" { - :type :expr, :by "root", :at 1517201215394, :id "SyLwBDmhrf" - :data { - "T" {:type :leaf, :by "root", :at 1517201215774, :text "{}", :id "BkrDHPm2Hf"} - "b" { - :type :expr, :by "root", :at 1517201355156, :id "H1gQRD72rf" - :data { - "T" {:type :leaf, :by "root", :at 1517201356058, :text ":style", :id "H1gQRD72rfleaf"} - "j" {:type :leaf, :by "root", :at 1517201358235, :text "ui/button", :id "H1NN0DX3rG"} - } - } - "j" { - :type :expr, :by "root", :at 1517201217645, :id "Hk5rwX3SG" - :data { - "T" {:type :leaf, :by "root", :at 1517201219891, :text ":on-click", :id "rkFHwX3HG"} - "j" { - :type :expr, :by "root", :at 1517201220208, :id "r1B2SvmnrM" - :data { - "T" {:type :leaf, :by "root", :at 1517201220467, :text "fn", :id "SkEhrv73Sz"} - "j" { - :type :expr, :by "root", :at 1517201221579, :id "S1RSP72Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517201222627, :text "e", :id "r16SPXhrG"} - "j" {:type :leaf, :by "root", :at 1517201224532, :text "d!", :id "S1gJIwm2rz"} - "r" {:type :leaf, :by "root", :at 1517201226092, :text "m!", :id "BkeZIvm2HG"} - } - } - "r" { - :type :expr, :by "root", :at 1517201227459, :id "Hyl7UDQnrz" - :data { - "T" {:type :leaf, :by "root", :at 1517201228236, :text "println", :id "Hyl7UDQnrzleaf"} - "j" {:type :leaf, :by "root", :at 1517201228961, :text "state", :id "rkLVLDXnrM"} - } - } - "v" { - :type :expr, :by "root", :at 1517201394052, :id "rJl5xdm2Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517201395119, :text "d!", :id "rJl5xdm2Bzleaf"} - "j" {:type :leaf, :by "root", :at 1517201398974, :text ":effect/run", :id "H1-se_XnrG"} - "r" { - :type :expr, :by "root", :at 1517201400080, :id "Hkgl-OXnHz" - :data { - "T" {:type :leaf, :by "root", :at 1517201400423, :text "{}", :id "ryxZ_m3rM"} - "j" { - :type :expr, :by "root", :at 1517201401463, :id "BJWbW_7hHM" - :data { - "T" {:type :leaf, :by "root", :at 1517201404107, :text ":command", :id "SkWbOmhBf"} - "j" { - :type :expr, :by "root", :at 1517201406980, :id "HyPbdQnSf" - :data { - "T" {:type :leaf, :by "root", :at 1517201407801, :text ":command", :id "HJrVZuQ3Hf"} - "j" {:type :leaf, :by "root", :at 1517201409030, :text "state", :id "Bkf_WdQhBG"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517201410258, :id "HJecZO72Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517201412808, :text ":cwd", :id "HJecZO72Sfleaf"} - "j" { - :type :expr, :by "root", :at 1517201413272, :id "SyQaZuQhBM" - :data { - "T" {:type :leaf, :by "root", :at 1517201414610, :text ":cwd", :id "B1G6ZuXhHz"} - "j" {:type :leaf, :by "root", :at 1517201415442, :text "state", :id "r1xyzOQhBz"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517201342532, :id "HJv6DX2Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517201344310, :text "<>", :id "HJv6DX2Sfleaf"} - "j" {:type :leaf, :by "root", :at 1517201346901, :text "|Run", :id "Sy7d6D7hrM"} - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517129225764, :id "HymzGR-srz" - :data {} - } - } - "app.comp.container" { - :ns { - :type :expr, :id "B15IxeRH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJxc8xl0HZ", :text "ns", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkZcLgxAB-", :text "app.comp.container", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SkCq8lx0rb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyJlqLelRBW", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SylgqLee0B-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkZlcUgg0B-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1Gxq8xgCB-", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SJQlcUlgRr-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "By4lc8gxCB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkHx5LxeRS-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJIlq8leCBb", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "ryvl5IllRSb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1dg5UeeRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1Fgc8egCSW", :text "respo-ui.core", :by "root", :at 1516547378489} - "r" {:type :leaf, :id "Hy9x5IeeASW", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "rkoe5LxlCBW", :text "ui", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "Skhxq8geCHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJ6lq8llCBW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ryCl5IeeCHW", :text "respo-ui.colors", :by "root", :at 1516547379966} - "r" {:type :leaf, :id "ByyZ5Uxx0r-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "r1e-5UxlCr-", :text "colors", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "B1gpZxc3yG", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1B9Ueg0Sb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H189Igg0S-", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "HJw9LexRS-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "B1_98eeRSb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkKcLxeRHW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkqqIggASZ", :text "defcomp", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SysqUxxRH-", :text "<>", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "Bkh9UglCrZ", :text "div", :by "root", :at 1500541010211} - "w" {:type :leaf, :by "root", :at 1517236978225, :text "cursor->", :id "ByeFxXh3rM"} - "wT" {:type :leaf, :by "root", :at 1517844810812, :text "action->", :id "rJl-VFlIUz"} - "x" {:type :leaf, :id "BkaqLel0H-", :text "span", :by "root", :at 1500541010211} - "y" {:type :leaf, :text "button", :id "ryjGzeahb", :by "root", :at 1507815955483} - "yT" {:type :leaf, :by "root", :at 1517844774613, :text "pre", :id "HJeC7FlLLz"} - } - } - } - } - "y" { - :type :expr, :id "rJu-cIxlRSZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1FW9UegCSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "By9-qLxlRHW", :text "respo.comp.inspect", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1oZq8gl0r-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "rk2ZqUlx0SZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1T-5UggAB-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SJ0bqLggCH-", :text "comp-inspect", :by "root", :at 1500541010211} - } - } - } - } - "yD" { - :type :expr, :id "Sklr2Mg6n-", :by "root", :at 1507816109319 - :data { - "T" {:type :leaf, :text "[]", :id "Sklr2Mg6n-leaf", :by "root", :at 1507816109737} - "j" {:type :leaf, :text "respo.comp.space", :id "SkbLhMlp3b", :by "root", :at 1507816117447} - "r" {:type :leaf, :text ":refer", :id "H1GOhGephb", :by "root", :at 1507816112686} - "v" { - :type :expr, :id "rk-53Mlah-", :by "root", :at 1507816113982 - :data { - "T" {:type :leaf, :text "[]", :id "rk-Y2zgTnW", :by "root", :at 1507816114106} - "j" {:type :leaf, :text "=<", :id "SyN5nGgThZ", :by "root", :at 1507816114704} - } - } - } - } - "yT" { - :type :expr, :id "H1kGc8glRHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJlM5UxgRBb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1-f5UgeABb", :text "app.comp.header", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "rkzM98gxRrZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "Bymz5LglArW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkEzcLxgAB-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rkBfcLggCBb", :text "comp-header", :by "root", :at 1500541010211} - } - } - } - } - "yj" { - :type :expr, :id "HJ8M5UeeCS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyvGq8leRHZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1_fq8geCHb", :text "app.comp.profile", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "ryFz9LglCHb", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "r1qfqUlxASb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SysM5LegCBW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H12z9LxxCHW", :text "comp-profile", :by "root", :at 1500541010211} - } - } - } - } - "yr" { - :type :expr, :id "Bypz9LxxRSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyAG9Uel0B-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Hkk7qUgxAr-", :text "app.comp.login", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SJg798xxAHW", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJ-m9Ueg0SW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1zm5IxxCrb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1Qmq8gxCrW", :text "comp-login", :by "root", :at 1500541010211} - } - } - } - } - "yv" { - :type :expr, :id "SyE7qLleCHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJrm9LelAr-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkIQ9Iel0Hb", :text "respo-message.comp.msg-list", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "ryv7cIgeCrZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "Hk_7c8eg0rW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJY7cIlgRrW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJcQcUxxASW", :text "comp-msg-list", :by "root", :at 1500541010211} - } - } - } - } - "yx" { - :type :expr, :id "BklAlV7a2Z", :by "root", :at 1507828725931 - :data { - "T" {:type :leaf, :text "[]", :id "BklAlV7a2Zleaf", :by "root", :at 1507828726338} - "j" {:type :leaf, :text "app.comp.reel", :id "ry7AeNmT3b", :by "root", :at 1507828730719} - "r" {:type :leaf, :text ":refer", :id "H1bQW4762Z", :by "root", :at 1507828731528} - "v" { - :type :expr, :id "Sk-NbNmT3W", :by "root", :at 1507828731735 - :data { - "T" {:type :leaf, :text "[]", :id "r1e4ZN7a3b", :by "root", :at 1507828731987} - "j" {:type :leaf, :text "comp-reel", :id "Bk44ZNXT2Z", :by "root", :at 1507828733743} - } - } - } - } - "yy" { - :type :expr, :by "B1y7Rc-Zz", :at 1517127062382, :id "B1eA9SZjHM" - :data { - "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127062757, :text "[]", :id "B1eA9SZjHMleaf"} - "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127067520, :text "app.comp.missing", :id "B1WkjrZirf"} - "r" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127068235, :text ":refer", :id "ByxNirbiSz"} - "v" { - :type :expr, :by "B1y7Rc-Zz", :at 1517127068479, :id "r1_NiBWsBf" - :data { - "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127068639, :text "[]", :id "ByvEsrZsBz"} - "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127070581, :text "comp-missing", :id "By-BiSbjBM"} - } - } - } - } - "yyT" { - :type :expr, :by "root", :at 1517127417228, :id "S1lbZvZsHf" - :data { - "T" {:type :leaf, :by "root", :at 1517127417559, :text "[]", :id "S1lbZvZsHfleaf"} - "j" {:type :leaf, :by "root", :at 1517127419488, :text "app.comp.home", :id "H1xzZPbiSz"} - "r" {:type :leaf, :by "root", :at 1517127420177, :text ":refer", :id "ByNZDbjrG"} - "v" { - :type :expr, :by "root", :at 1517127420396, :id "r1v4WwWorf" - :data { - "T" {:type :leaf, :by "root", :at 1517127420646, :text "[]", :id "SyU4ZPZirG"} - "j" {:type :leaf, :by "root", :at 1517127423789, :text "comp-home", :id "rk-H-vWsHG"} - } - } - } - } - "yyj" { - :type :expr, :by "root", :at 1517233334678, :id "rk1a4shBf" - :data { - "T" {:type :leaf, :by "root", :at 1517233335033, :text "[]", :id "rk1a4shBfleaf"} - "j" {:type :leaf, :by "root", :at 1517327078336, :text "app.comp.workflow", :id "H1MkpVinSM"} - "r" {:type :leaf, :by "root", :at 1517233340973, :text ":refer", :id "rkEpVo2HM"} - "v" { - :type :expr, :by "root", :at 1517233341429, :id "r1ES6Ns2Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517233341748, :text "[]", :id "BJXBaNo2Sf"} - "j" {:type :leaf, :by "root", :at 1517327081243, :text "comp-workflow-container", :id "BkZI6Eonrf"} - } - } - } - } - "yyr" { - :type :expr, :by "root", :at 1517233334678, :id "BJ_l86gLG" - :data { - "T" {:type :leaf, :by "root", :at 1517233335033, :text "[]", :id "rk1a4shBfleaf"} - "j" {:type :leaf, :by "root", :at 1517503986627, :text "app.comp.history", :id "H1MkpVinSM"} - "r" {:type :leaf, :by "root", :at 1517233340973, :text ":refer", :id "rkEpVo2HM"} - "v" { - :type :expr, :by "root", :at 1517233341429, :id "r1ES6Ns2Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517233341748, :text "[]", :id "BJXBaNo2Sf"} - "j" {:type :leaf, :by "root", :at 1517503990612, :text "comp-history", :id "BkZI6Eonrf"} - } - } - } - } - "yyv" { - :type :expr, :by "root", :at 1517233334678, :id "rk1lH8XIf" - :data { - "T" {:type :leaf, :by "root", :at 1517233335033, :text "[]", :id "rk1a4shBfleaf"} - "j" {:type :leaf, :by "root", :at 1517671663791, :text "app.comp.process-detail", :id "H1MkpVinSM"} - "r" {:type :leaf, :by "root", :at 1517233340973, :text ":refer", :id "rkEpVo2HM"} - "v" { - :type :expr, :by "root", :at 1517233341429, :id "r1ES6Ns2Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517233341748, :text "[]", :id "BJXBaNo2Sf"} - "j" {:type :leaf, :by "root", :at 1517671667082, :text "comp-process-detail", :id "BkZI6Eonrf"} - } - } - } - } - } - } - } - } - :defs { - "comp-container" { - :type :expr, :id "rJcN9Iee0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryo4cIlgAHZ", :text "defcomp", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1hV5IlxCH-", :text "comp-container", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "r1aE9IglCB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1CV9UxeCBb", :text "states", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkyrqIglCr-", :text "store", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "HyxSq8llRHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ByZB58exAB-", :text "let", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rkzr9UggCHW", :by nil, :at 1500541010211 - :data { - "T" { - :type :expr, :id "HJmS5IllASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJVBcUxx0Bb", :text "state", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "ByrH5IggAHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1LScUglRSW", :text ":data", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SJvHc8eeAB-", :text "states", :by "root", :at 1500541010211} - } - } - } - } - "j" { - :type :expr, :id "ryuSqIllABW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkYrq8lgCHb", :text "session", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BycSqLllCSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hksr5IxlCSZ", :text ":session", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SJhS5UxeRBb", :text "store", :by "root", :at 1500541010211} - } - } - } - } - } - } - "r" { - :type :expr, :id "ByaHq8gxCSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S10HqUelASb", :text "if", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rJJIc8gg0BZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryeLc8egCS-", :text "nil?", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1-LcUggCrZ", :text "store", :by "root", :at 1500541010211} - } - } - "p" { - :type :expr, :by "root", :at 1517844679450, :id "ryeJC_xU8f" - :data { - "T" {:type :leaf, :by "root", :at 1517844682386, :text "comp-offline", :id "ryeJC_xU8fleaf"} - } - } - "v" { - :type :expr, :id "BJGP9LlxRB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1mvc8lgRH-", :text "div", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "r1VPqLxxRrb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJHD5UxeCHZ", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "B1Uwq8gxArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkwD58ggCr-", :text ":style", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rkdw5Lgg0rW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SktwcIxlCS-", :text "merge", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Hk9PqUlg0Bb", :text "ui/global", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "HkjD9Lel0B-", :text "ui/fullscreen", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "SJ3vcUegASZ", :text "ui/column", :by "root", :at 1500541010211} - } - } - } - } - } - } - "r" { - :type :expr, :id "r1pw9LelCr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyAvc8lgCB-", :text "comp-header", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rkyu9UglRHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkedq8xxAB-", :text ":logged-in?", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJ-_cLge0SW", :text "store", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "HkvMoLXIG", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJAF9Lle0HW", :text ":router", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Byy95UlgRBW", :text "store", :by "root", :at 1500541010211} - } - } - } - } - "t" { - :type :expr, :by "root", :at 1517222185547, :id "HkGVKOhBz" - :data { - "T" {:type :leaf, :by "root", :at 1517222186386, :text "=<", :id "HkGVKOhBzleaf"} - "j" {:type :leaf, :by "root", :at 1517222190790, :text "nil", :id "Bym4t_2BG"} - "r" {:type :leaf, :by "root", :at 1517222208150, :text "8", :id "rJzwEK_hBz"} - } - } - "v" { - :type :expr, :id "rkXYc8ll0SW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJVYcUxlRrZ", :text "if", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "S1rK5UggABZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkUtqUxg0HZ", :text ":logged-in?", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1Dtq8lxArb", :text "store", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "B1dK5UggRBW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1FFc8lx0Hb", :text "let", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "r1qFcIglRrb", :by nil, :at 1500541010211 - :data { - "T" { - :type :expr, :id "HyjK5UxgAr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B12tqUxlASZ", :text "router", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HJ6Fc8xeRHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJAF9Lle0HW", :text ":router", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Byy95UlgRBW", :text "store", :by "root", :at 1500541010211} - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517503718301, :id "S1WMbHaeLG" - :data { - "T" {:type :leaf, :by "root", :at 1517503719772, :text "router-data", :id "ByG0JH6xIG"} - "j" { - :type :expr, :by "root", :at 1517503720037, :id "BkmllS6gLz" - :data { - "T" {:type :leaf, :by "root", :at 1517503720674, :text ":data", :id "rJGxgr6gIM"} - "j" {:type :leaf, :by "root", :at 1517503722254, :text "router", :id "SkWZgrTe8f"} - } - } - } - } - } - } - "r" { - :type :expr, :id "rkl99UlgCSZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkbqq8xgAHb", :text "case", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rkz5q8eeRH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJX958ggAS-", :text ":name", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkE558leAH-", :text "router", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "rJH998xlAH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1LqqUexArZ", :text ":profile", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "B1v5cLxgASb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJd95UxlRHZ", :text "comp-profile", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "ByF99IxlCBZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJq558xxRBZ", :text ":user", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJo558lxAH-", :text "store", :by "root", :at 1500541010211} - } - } - } - } - } - } - "v" { - :type :expr, :id "BJ35cUexRBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rypccUgxCBb", :text ":home", :by "B1y7Rc-Zz", :at 1517127047489} - "j" { - :type :expr, :by "root", :at 1517127412524, :id "ByagPboBz" - :data { - "T" {:type :leaf, :by "root", :at 1517127413820, :text "comp-home", :id "BkxhlvWsrM"} - "j" {:type :leaf, :by "root", :at 1517503758935, :text "router-data", :id "rJXRlvWoSG"} - "r" {:type :leaf, :by "root", :at 1517129302140, :text "states", :id "HkZhUCborG"} - } - } - } - } - "w" { - :type :expr, :by "root", :at 1517233318544, :id "Sykn4j3Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517233325846, :text ":workflows", :id "Sykn4j3Bzleaf"} - "j" { - :type :expr, :by "root", :at 1517233326888, :id "B14ZBTl8M" - :data { - "D" {:type :leaf, :by "root", :at 1517236957996, :text "cursor->", :id "r14ymh2Sf"} - "L" {:type :leaf, :by "root", :at 1517236973215, :text ":workflows", :id "r1DyQnnBG"} - "T" {:type :leaf, :by "root", :at 1517327074772, :text "comp-workflow-container", :id "rkv2NjhSf"} - "b" {:type :leaf, :by "root", :at 1517236969479, :text "states", :id "Bke2y7hhrf"} - "j" { - :type :expr, :by "root", :at 1517236559803, :id "r1gO8bh3SM" - :data { - "D" {:type :leaf, :by "root", :at 1517236563333, :text ":workflows", :id "SyFLb3nBG"} - "T" {:type :leaf, :by "root", :at 1517503729696, :text "router-data", :id "r1q2Vo2Bz"} - } - } - } - } - } - } - "wT" { - :type :expr, :by "root", :at 1517503966547, :id "SkDkLTeLG" - :data { - "T" {:type :leaf, :by "root", :at 1517504017585, :text ":history", :id "SkDkLTeLGleaf"} - "j" { - :type :expr, :by "root", :at 1517503969386, :id "ByeY1U6lUG" - :data { - "T" {:type :leaf, :by "root", :at 1517503973388, :text "comp-history", :id "HJK1Lpx8f"} - "j" { - :type :expr, :by "root", :at 1517503974647, :id "rkJgIaxLz" - :data { - "T" {:type :leaf, :by "root", :at 1517503976486, :text ":histories", :id "S1AJL6g8M"} - "j" {:type :leaf, :by "root", :at 1517503981133, :text "router-data", :id "rkbl8TeLM"} - } - } - } - } - } - } - "wj" { - :type :expr, :by "root", :at 1517671639380, :id "rkZJ1BIXLz" - :data { - "T" {:type :leaf, :by "root", :at 1517671642411, :text ":process", :id "rkZJ1BIXLzleaf"} - "j" { - :type :expr, :by "root", :at 1517671642937, :id "SkxQkr87Iz" - :data { - "T" {:type :leaf, :by "root", :at 1517671645436, :text "comp-process-detail", :id "r1QkSIXIf"} - "j" {:type :leaf, :by "root", :at 1517671649954, :text "router-data", :id "ByLkHImUG"} - } - } - } - } - "x" { - :type :expr, :by "B1y7Rc-Zz", :at 1517127056918, :id "SkgY5BWiSG" - :data { - "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127074032, :text "comp-missing", :id "SkgY5BWiSGleaf"} - "j" {:type :leaf, :by "root", :at 1517671412756, :text "router", :id "r1nlNIQUf"} - } - } - } - } - } - } - "v" { - :type :expr, :id "BkciqUxgRrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BysicIxgAHW", :text "comp-login", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rkhocIleRrb", :text "states", :by "root", :at 1500541010211} - } - } - } - } - "x" { - :type :expr, :id "S16oqUeeASb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkAi58lx0S-", :text "comp-inspect", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJkhq8gxRrb", :text "|Store", :by "root", :at 1500541010211} - "r" { - :type :expr, :by "root", :at 1517670738461, :id "r1e5L-L78G" - :data { - "D" {:type :leaf, :by "root", :at 1517670741665, :text ":router", :id "S1sLWLQIG"} - "T" {:type :leaf, :id "Skln58ge0rb", :text "store", :by "root", :at 1500541010211} - } - } - "v" {:type :leaf, :id "Sy-n5UgxCBW", :text "style-debugger", :by "root", :at 1500541010211} - } - } - "y" { - :type :expr, :id "H1G3c8ll0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkQnqIex0Sb", :text "comp-msg-list", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "Bk429LxgCS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1B2cLgxCHZ", :text "get-in", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ryInqUelCHb", :text "store", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "SJw25Uge0BW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJd398el0rZ", :text "[]", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SJqh5UlgRB-", :text ":notifications", :by "root", :at 1500541010211} - } - } - } - } - "r" {:type :leaf, :id "r1s398ex0Hb", :text ":session/remove-notification", :by "root", :at 1500541010211} - } - } - "yT" { - :type :expr, :id "BJgRkVX62W", :by "root", :at 1507828710405 - :data { - "T" {:type :leaf, :text "comp-reel", :id "BJgRkVX62Wleaf", :by "root", :at 1507828712159} - "j" { - :type :expr, :id "HylruBmT3-", :by "root", :at 1507829101137 - :data { - "T" {:type :leaf, :text ":reel-length", :id "HyBgV7T2Z", :by "root", :at 1507830262253} - "j" {:type :leaf, :text "store", :id "S1MvOr7a2Z", :by "root", :at 1507829104010} - } - } - "r" { - :type :expr, :id "ByteVmTnZ", :by "root", :at 1507828721052 - :data { - "T" {:type :leaf, :text "{}", :id "ByxdeN7anb", :by "root", :at 1507828722268} - } - } - } - } - } - } - } - } - } - } - } - } - "comp-offline" { - :type :expr, :by "root", :at 1517844682800, :id "Bkg7A_eUUf" - :data { - "T" {:type :leaf, :by "root", :at 1517844685136, :text "defcomp", :id "rybmC_xLLz"} - "j" {:type :leaf, :by "root", :at 1517844682800, :text "comp-offline", :id "r1zm0_eL8M"} - "r" { - :type :expr, :by "root", :at 1517844682800, :id "HymQAOeULM" - :data {} - } - "v" { - :type :expr, :id "SkvCdeIIM", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJX8cUxxRrZ", :text "div", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SyVU9Ugl0Sb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJS8c8ex0BZ", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BJL8cUggArZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1DLq8eg0BZ", :text ":style", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HkOI5Ixe0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJtIcLgeCr-", :text "merge", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ry5898xg0S-", :text "ui/global", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "Hyi89UxlASZ", :text "ui/fullscreen", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "H128cLleCSZ", :text "ui/center", :by "root", :at 1500541010211} - } - } - } - } - } - } - "r" { - :type :expr, :id "Sy9cLiZZM", :by "B1y7Rc-Zz", :at 1512318609835 - :data { - "D" {:type :leaf, :text "span", :id "Hkg55IoWZf", :by "B1y7Rc-Zz", :at 1512318615853} - "L" { - :type :expr, :id "Bk4lsLiZbM", :by "B1y7Rc-Zz", :at 1512318616357 - :data { - "T" {:type :leaf, :text "{}", :id "ry7ls8iZZG", :by "B1y7Rc-Zz", :at 1512318616775} - "b" { - :type :expr, :id "ryukPjZbG", :by "B1y7Rc-Zz", :at 1512318646827 - :data { - "T" {:type :leaf, :text ":style", :id "Hk1TIjW-Gleaf", :by "B1y7Rc-Zz", :at 1512318648638} - "j" { - :type :expr, :id "S1ZVetlL8G", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkxN5IggCSZ", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BkZ4qUxgABZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ByzE9Lxe0BW", :text ":font-family", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Skm4cUlgRrZ", :text "ui/font-fancy", :by "root", :at 1517844707940} - } - } - "r" { - :type :expr, :id "rk4NcIlxRBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkrV9Ile0BZ", :text ":font-weight", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r18N9UlxASZ", :text "100", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "ByvVqIxlCBW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkuNcLlxRrW", :text ":font-size", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SJYNcUxxASZ", :text "40", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "BJZWgFgLLf", :by "B1y7Rc-Zz", :at 1512318651023 - :data { - "T" {:type :leaf, :text ":cursor", :id "ryZQTLs-WG", :by "B1y7Rc-Zz", :at 1512318654654} - "j" {:type :leaf, :text ":pointer", :id "B1ew68jZbf", :by "B1y7Rc-Zz", :at 1512318656571} - } - } - } - } - } - } - "f" { - :type :expr, :by "root", :at 1517844896663, :id "BJYsKlIIM" - :data { - "T" {:type :leaf, :by "root", :at 1517844898671, :text ":title", :id "BJYsKlIIMleaf"} - "j" {:type :leaf, :by "root", :at 1517844908804, :text "|Click to reconnect!", :id "HybsoKxIUM"} - } - } - "j" { - :type :expr, :id "Bkf_dsJemM", :by "B1y7Rc-Zz", :at 1512318621029 - :data { - "T" {:type :leaf, :text ":on-click", :id "S1broUjZZM", :by "root", :at 1514302319022} - "j" { - :type :expr, :by "root", :at 1517844783628, :id "BkrHFlLLM" - :data { - "T" {:type :leaf, :by "root", :at 1517844789831, :text "action->", :id "BkdEtgLLfleaf"} - "j" {:type :leaf, :by "root", :at 1517844968900, :text ":effect/connect", :id "HJkSKlIUz"} - "r" {:type :leaf, :by "root", :at 1517844794476, :text "nil", :id "HkWfrteIUG"} - } - } - } - } - } - } - "f" { - :type :expr, :id "ryWtnOgULG", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryC8qIleABW", :text "<>", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SkxP9UxxCSZ", :text "|No connection!", :by "root", :at 1500541010211} - } - } - } - } - "t" { - :type :expr, :by "root", :at 1517844818144, :id "SJxcItgILf" - :data { - "T" {:type :leaf, :by "root", :at 1517844833844, :text "<>", :id "SJxcItgILfleaf"} - "j" {:type :leaf, :by "root", :at 1517844881941, :text "|This is a placeholder page for Termina, install and run the command line to try again:", :id "HyW9DtxLUf"} - } - } - "v" { - :type :expr, :by "root", :at 1517844741212, :id "SJgT-KgILf" - :data { - "T" {:type :leaf, :by "root", :at 1517844741983, :text "pre", :id "SJgT-KgILfleaf"} - "j" { - :type :expr, :by "root", :at 1517844742692, :id "HJeyMKl8If" - :data { - "T" {:type :leaf, :by "root", :at 1517844743613, :text "{}", :id "B1JGYlIUf"} - "j" { - :type :expr, :by "root", :at 1517844746143, :id "SkbGfFlI8f" - :data { - "T" {:type :leaf, :by "root", :at 1517844748048, :text ":inner-text", :id "HyxfzYlLUM"} - "j" {:type :leaf, :by "root", :at 1517844754563, :text "|npm i -g termina", :id "H1WEMKxLLz"} - } - } - "r" { - :type :expr, :by "root", :at 1517844755256, :id "rJWszteLLf" - :data { - "T" {:type :leaf, :by "root", :at 1517844756442, :text ":style", :id "rJWszteLLfleaf"} - "j" { - :type :expr, :by "root", :at 1517844756681, :id "ByaGKgUIz" - :data { - "T" {:type :leaf, :by "root", :at 1517844757710, :text "{}", :id "H1rnzte8UG"} - "j" { - :type :expr, :by "root", :at 1517844759187, :id "B1xkXYlILM" - :data { - "T" {:type :leaf, :by "root", :at 1517844762098, :text ":font-family", :id "HkJ7KgU8f"} - "j" {:type :leaf, :by "root", :at 1517844767757, :text "ui/font-code", :id "H177KxLIG"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "style-debugger" { - :type :expr, :id "ryh398xl0SZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkTn5IeeCBW", :text "def", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Sk02qLexRHW", :text "style-debugger", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "rky6q8xxASb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyeT5UllASZ", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SJZ6qUleRS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryfp9IxgABW", :text ":bottom", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Skma9UglRr-", :text "0", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "r1V65Ixl0HW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkBp9LllArb", :text ":left", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ryIpcIggCrb", :text "0", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "SJv6q8xeAH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJ_acUlgCrZ", :text ":max-width", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkYpc8ee0B-", :text "|100%", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - :proc { - :type :expr, :id "S1om9LgxCBZ", :by nil, :at 1500541010211 - :data {} - } - } - "app.comp.dialog" { - :ns { - :type :expr, :by "root", :at 1517292376619, :id "HJl-wiF6BG" - :data { - "T" {:type :leaf, :by "root", :at 1517292376619, :text "ns", :id "r1ZbPoYaSG"} - "j" {:type :leaf, :by "root", :at 1517292376619, :text "app.comp.dialog", :id "SkzbDoYTSM"} - "r" { - :type :expr, :id "rylQ_jFaSz", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547394445} - "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "rJXHzqUxxRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S14rzqLgg0B-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1rHfcUggCr-", :text "respo-ui.colors", :by "root", :at 1516547392332} - "r" {:type :leaf, :id "ByUBz9LleASb", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "BkwSMqLglCBZ", :text "colors", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "SkVQg5h1z", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} - "t" {:type :leaf, :by "root", :at 1517200690109, :text "action->", :id "rJeuVSmhSz"} - "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517200808252, :id "SJeehS72SM" - :data { - "T" {:type :leaf, :by "root", :at 1517200808677, :text "[]", :id "SJeehS72SMleaf"} - "j" {:type :leaf, :by "root", :at 1517200811145, :text "respo.comp.space", :id "By-Z2H73HM"} - "r" {:type :leaf, :by "root", :at 1517200812912, :text ":refer", :id "rJSX3H72Hf"} - "v" { - :type :expr, :by "root", :at 1517200813134, :id "HkrB2HXnrf" - :data { - "T" {:type :leaf, :by "root", :at 1517200813286, :text "[]", :id "HkEBhBX3Sz"} - "j" {:type :leaf, :by "root", :at 1517200815416, :text "=<", :id "S1_H3S7nSG"} - } - } - } - } - } - } - } - } - :defs { - "comp-dialog" { - :type :expr, :by "root", :at 1517292380770, :id "H1eSPiYTBf" - :data { - "T" {:type :leaf, :by "root", :at 1517292400137, :text "defcomp", :id "SJ-rwstTrz"} - "j" {:type :leaf, :by "root", :at 1517292380770, :text "comp-dialog", :id "SkMrvotTrM"} - "r" { - :type :expr, :by "root", :at 1517292401516, :id "SJlFusF6BM" - :data { - "T" {:type :leaf, :by "root", :at 1517292419146, :text "on-close!", :id "BJGKjY6Hz"} - "j" {:type :leaf, :by "root", :at 1517292424823, :text "child-node", :id "HkQjYjKaBf"} - } - } - "v" { - :type :expr, :by "root", :at 1517292425790, :id "ryzqstprM" - :data { - "T" {:type :leaf, :by "root", :at 1517292426972, :text "div", :id "ryzqstprMleaf"} - "j" { - :type :expr, :by "root", :at 1517292427209, :id "HyzXqoY6BG" - :data { - "T" {:type :leaf, :by "root", :at 1517292427580, :text "{}", :id "B1ZQ9sY6rz"} - "j" { - :type :expr, :by "root", :at 1517292430243, :id "BJxU9jYTBz" - :data { - "T" {:type :leaf, :by "root", :at 1517292431757, :text ":style", :id "r1L9itprf"} - "j" { - :type :expr, :by "root", :at 1517292435449, :id "rJicsYaSz" - :data { - "T" {:type :leaf, :by "root", :at 1517292436081, :text "merge", :id "S1-OcjFprG"} - "j" {:type :leaf, :by "root", :at 1517292438888, :text "ui/fullscreen", :id "SyNncsYTBG"} - "n" {:type :leaf, :by "root", :at 1517326154631, :text "ui/center", :id "S1lb8JMCHf"} - "r" { - :type :expr, :by "root", :at 1517326121994, :id "BkzVJMArG" - :data { - "T" {:type :leaf, :by "root", :at 1517326122379, :text "{}", :id "HJg-41zABM"} - "j" { - :type :expr, :by "root", :at 1517326122606, :id "ByQNJGCBG" - :data { - "T" {:type :leaf, :by "root", :at 1517326124516, :text ":position", :id "HyzMEJzRrz"} - "j" {:type :leaf, :by "root", :at 1517326127107, :text ":absolute", :id "rySN1z0Sf"} - } - } - "r" { - :type :expr, :by "root", :at 1517326127649, :id "S1dNyzCHM" - :data { - "T" {:type :leaf, :by "root", :at 1517326129114, :text ":width", :id "S1dNyzCHMleaf"} - "j" {:type :leaf, :by "root", :at 1517326132569, :text "|100%", :id "SyVt4yzRrG"} - } - } - "v" { - :type :expr, :by "root", :at 1517326133146, :id "BybTE1G0Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517326134918, :text ":height", :id "BybTE1G0Hfleaf"} - "j" {:type :leaf, :by "root", :at 1517326138333, :text "|100%", :id "S1NkrkGRSf"} - } - } - "x" { - :type :expr, :by "root", :at 1517326156350, :id "SyeVIJGCBf" - :data { - "T" {:type :leaf, :by "root", :at 1517326161075, :text ":background-color", :id "SyeVIJGCBfleaf"} - "j" { - :type :expr, :by "root", :at 1517326161336, :id "ByQtUyGCSM" - :data { - "T" {:type :leaf, :by "root", :at 1517326162598, :text "hsl", :id "B1Mt81zCSf"} - "j" {:type :leaf, :by "root", :at 1517326163347, :text "0", :id "S1gsIyzRBz"} - "r" {:type :leaf, :by "root", :at 1517326163645, :text "0", :id "SkMo8kGASM"} - "v" {:type :leaf, :by "root", :at 1517326163931, :text "0", :id "Hkl3UkfCrf"} - "x" {:type :leaf, :by "root", :at 1517326165218, :text "0.4", :id "SJGnUyGABz"} - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517326172215, :id "HygEPyMRBM" - :data { - "T" {:type :leaf, :by "root", :at 1517326175098, :text ":z-index", :id "HygEPyMRBMleaf"} - "j" {:type :leaf, :by "root", :at 1517326175885, :text "100", :id "ry-Dw1fCrM"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517292471963, :id "SJg6itaBG" - :data { - "T" {:type :leaf, :by "root", :at 1517292475585, :text ":on-click", :id "SJg6itaBGleaf"} - "j" { - :type :expr, :by "root", :at 1517292490410, :id "B1Wf0oFaBG" - :data { - "D" {:type :leaf, :by "root", :at 1517292491080, :text "fn", :id "S1QCjt6rM"} - "T" { - :type :expr, :by "root", :at 1517292484122, :id "HJW36iFTBz" - :data { - "T" {:type :leaf, :by "root", :at 1517292486108, :text "e", :id "S1g3pstaHG"} - "j" {:type :leaf, :by "root", :at 1517292487497, :text "d!", :id "r1g0aiFTBf"} - "r" {:type :leaf, :by "root", :at 1517292488298, :text "m!", :id "HkgRiKpSG"} - } - } - "j" { - :type :expr, :by "root", :at 1517292497693, :id "Sy50oKTBM" - :data { - "T" {:type :leaf, :by "root", :at 1517292497447, :text "on-close!", :id "ByVRitTSM"} - "j" {:type :leaf, :by "root", :at 1517292500205, :text "m!", :id "S1x5CsKpBf"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517292445728, :id "rk8istaSf" - :data { - "T" {:type :leaf, :by "root", :at 1517292446540, :text "div", :id "rk8istaSfleaf"} - "j" { - :type :expr, :by "root", :at 1517292446863, :id "Sy-PiiYTHM" - :data { - "T" {:type :leaf, :by "root", :at 1517292447231, :text "{}", :id "H1lPjjt6HM"} - "b" { - :type :expr, :by "root", :at 1517326183793, :id "SJxdkzRBM" - :data { - "T" {:type :leaf, :by "root", :at 1517326185866, :text ":style", :id "HyJO1GAHf"} - "j" { - :type :expr, :by "root", :at 1517326186143, :id "rkQfuyfCSz" - :data { - "T" {:type :leaf, :by "root", :at 1517326186613, :text "{}", :id "SJffuJfCHM"} - "j" { - :type :expr, :by "root", :at 1517326186838, :id "S1z7ukGAHf" - :data { - "T" {:type :leaf, :by "root", :at 1517326188752, :text ":padding", :id "HkbXdJz0rz"} - "j" {:type :leaf, :by "root", :at 1517326189806, :text "16", :id "ryMru1zArM"} - } - } - "r" { - :type :expr, :by "root", :at 1517326191422, :id "SJev_JzCSG" - :data { - "T" {:type :leaf, :by "root", :at 1517326194897, :text ":background-color", :id "SJev_JzCSGleaf"} - "j" {:type :leaf, :by "root", :at 1517326197308, :text ":white", :id "SJms_yzCBf"} - } - } - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517292476824, :id "Hklr6jYTSG" - :data { - "T" {:type :leaf, :by "root", :at 1517292478898, :text ":on-click", :id "HyS6itTSG"} - "j" { - :type :expr, :by "root", :at 1517292479238, :id "r1HP6sF6Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517292480192, :text "fn", :id "r1Ev6jK6rG"} - "j" { - :type :expr, :by "root", :at 1517292480484, :id "HkGOaitTBf" - :data { - "T" {:type :leaf, :by "root", :at 1517292480859, :text "e", :id "HkZupjt6rf"} - "j" {:type :leaf, :by "root", :at 1517292481588, :text "d!", :id "HylKpjKTSM"} - "r" {:type :leaf, :by "root", :at 1517292482547, :text "m!", :id "H1ecTjKaBf"} - } - } - } - } - } - } - } - } - "r" {:type :leaf, :by "root", :at 1517292463337, :text "child-node", :id "rklM2sKaBG"} - } - } - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517292376619, :id "rJQZvjFTBM" - :data {} - } - } - "app.comp.header" { - :ns { - :type :expr, :id "BkUXGcUegABW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1DXG98elCSb", :text "ns", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkO7fcLel0SZ", :text "app.comp.header", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "S1HVf5UxlRHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547394445} - "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "rJXHzqUxxRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S14rzqLgg0B-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1rHfcUggCr-", :text "respo-ui.colors", :by "root", :at 1516547392332} - "r" {:type :leaf, :id "ByUBz9LleASb", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "BkwSMqLglCBZ", :text "colors", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "SkVQg5h1z", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} - "t" {:type :leaf, :by "root", :at 1517200690109, :text "action->", :id "rJeuVSmhSz"} - "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517200808252, :id "SJeehS72SM" - :data { - "T" {:type :leaf, :by "root", :at 1517200808677, :text "[]", :id "SJeehS72SMleaf"} - "j" {:type :leaf, :by "root", :at 1517200811145, :text "respo.comp.space", :id "By-Z2H73HM"} - "r" {:type :leaf, :by "root", :at 1517200812912, :text ":refer", :id "rJSX3H72Hf"} - "v" { - :type :expr, :by "root", :at 1517200813134, :id "HkrB2HXnrf" - :data { - "T" {:type :leaf, :by "root", :at 1517200813286, :text "[]", :id "HkEBhBX3Sz"} - "j" {:type :leaf, :by "root", :at 1517200815416, :text "=<", :id "S1_H3S7nSG"} - } - } - } - } - } - } - } - } - :defs { - "comp-header" { - :type :expr, :id "Bk2vfqUxl0BZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sy6DG9UglCrb", :text "defcomp", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJRPfqLgxArb", :text "comp-header", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "H11df58le0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJxuzcLle0S-", :text "logged-in?", :by "root", :at 1500541010211} - "j" {:type :leaf, :by "root", :at 1517673236095, :text "router", :id "BkecfiIXLf"} - } - } - "v" { - :type :expr, :id "rkW_zqUxlCrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJM_fc8elAHW", :text "div", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "H1QdzqLge0SW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJNOG5LleABZ", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SyBufq8elAHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkUOfqIxxRS-", :text ":style", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "r1vdGcUglRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1u_z9Ixe0HZ", :text "merge", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1YdfcUxxCB-", :text "ui/row-center", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "rJquM5LllRHW", :text "style-header", :by "root", :at 1500541010211} - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517200619499, :id "Hkx7gSmhBG" - :data { - "D" {:type :leaf, :by "root", :at 1517200620932, :text "div", :id "Bk4er73BM"} - "L" { - :type :expr, :by "root", :at 1517200621178, :id "SJVrgr7hBf" - :data { - "T" {:type :leaf, :by "root", :at 1517200621517, :text "{}", :id "B17HeSQ3SM"} - "j" { - :type :expr, :by "root", :at 1517200794296, :id "S1WGor72Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517200795166, :text ":style", :id "S1xzjHm3rz"} - "j" {:type :leaf, :by "root", :at 1517200796433, :text "ui/row", :id "BJS7sBXhBf"} - } - } - } - } - "X" { - :type :expr, :by "root", :at 1517673297599, :id "HJ9UjIQLG" - :data { - "T" {:type :leaf, :by "root", :at 1517673424200, :text "render-entry", :id "HJ9UjIQLGleaf"} - "b" {:type :leaf, :by "root", :at 1517673408080, :text "router", :id "SyPajIQIz"} - "j" {:type :leaf, :by "root", :at 1517673311822, :text ":home", :id "SkLDo87Lz"} - "r" {:type :leaf, :by "root", :at 1517673313797, :text "|Termina", :id "SJmODs87Uf"} - } - } - "b" { - :type :expr, :by "root", :at 1517200799998, :id "SJxuoSmhBf" - :data { - "T" {:type :leaf, :by "root", :at 1517200800813, :text "=<", :id "SJxuoSmhBfleaf"} - "j" {:type :leaf, :by "root", :at 1517200801627, :text "16", :id "B1WtiBXhHz"} - "r" {:type :leaf, :by "root", :at 1517215427449, :text "nil", :id "SyjsS7hSG"} - } - } - "n" { - :type :expr, :by "root", :at 1517673297599, :id "B15FsIm8f" - :data { - "T" {:type :leaf, :by "root", :at 1517673426045, :text "render-entry", :id "HJ9UjIQLGleaf"} - "b" {:type :leaf, :by "root", :at 1517673410720, :text "router", :id "rygKpjUX8G"} - "j" {:type :leaf, :by "root", :at 1517673349824, :text ":workflows", :id "SkLDo87Lz"} - "r" {:type :leaf, :by "root", :at 1517673353071, :text "|Workflows", :id "SJmODs87Uf"} - } - } - "r" { - :type :expr, :by "root", :at 1517301508631, :id "B1pWJ2aBf" - :data { - "T" {:type :leaf, :by "root", :at 1517301509132, :text "=<", :id "B1pWJ2aBfleaf"} - "j" {:type :leaf, :by "root", :at 1517301510157, :text "16", :id "BJMTby26HM"} - "r" {:type :leaf, :by "root", :at 1517301510897, :text "nil", :id "BkbC-y2arM"} - } - } - "t" { - :type :expr, :by "root", :at 1517673297599, :id "S1U9o87UG" - :data { - "T" {:type :leaf, :by "root", :at 1517673427321, :text "render-entry", :id "HJ9UjIQLGleaf"} - "b" {:type :leaf, :by "root", :at 1517673412182, :text "router", :id "B1ms6o8mUM"} - "j" {:type :leaf, :by "root", :at 1517673361738, :text ":history", :id "SkLDo87Lz"} - "r" {:type :leaf, :by "root", :at 1517673364969, :text "|History", :id "SJmODs87Uf"} - } - } - } - } - "v" { - :type :expr, :id "H10FM9IeeRBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ByyqzcUglRHZ", :text "div", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rkl5GcLglABW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HybqMqUge0SW", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BkfcMq8ge0HZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkX5G5Ueg0rW", :text ":style", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ByVcMqLelCHb", :text "style-pointer", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "SJeLFokgXG", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hkc5MqUgeCBb", :text ":on-click", :by "root", :at 1514302332444} - "j" {:type :leaf, :id "Bks5GcIglRrb", :text "on-profile", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "Hkhcfq8gx0Sb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJ69McLelASZ", :text "<>", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HyAcMc8lxRS-", :text "span", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "ByysG5UgxABb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkesM9IllRBZ", :text "if", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1bjz98xxRSb", :text "logged-in?", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "Syziz98ggAS-", :text "|Me", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "Hk7izqLel0rb", :text "|Guest", :by "root", :at 1500541010211} - } - } - "v" {:type :leaf, :id "S1EoMqLllArW", :text "nil", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - "on-profile" { - :type :expr, :id "HJe8z9IeeCr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sy-Lz9Ueg0BW", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Skf8G5IgeRBW", :text "on-profile", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "HkXUGcLll0BW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkVLGcLgeABW", :text "e", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HySLM9LxlRH-", :text "dispatch!", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "SyULz58glRH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyvLfcIelAHb", :text "dispatch!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1_8fqLxgRHZ", :text ":router/change", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "S1KIfc8xx0Sb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJqIM5LexCH-", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SyjIfc8ggAHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJ3LM5LgxABb", :text ":name", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJT8GqIgxRr-", :text ":profile", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "ByCUzqIleArW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sk1wzcIexRHZ", :text ":data", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BylDzqUglAHZ", :text "nil", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "SybPM9UegArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryzDMcUllRBZ", :text ":router", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1mvG9IeeCS-", :text "nil", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - "render-entry" { - :type :expr, :by "root", :at 1517673318184, :id "rkW0PsUQLM" - :data { - "T" {:type :leaf, :by "root", :at 1517673318184, :text "defn", :id "rJMAPsUQIz"} - "j" {:type :leaf, :by "root", :at 1517673318184, :text "render-entry", :id "SyQCDjLmUf"} - "r" { - :type :expr, :by "root", :at 1517673318184, :id "BkERwoUXLM" - :data { - "D" {:type :leaf, :by "root", :at 1517673421015, :text "router", :id "Sy4Aj8XIG"} - "T" {:type :leaf, :by "root", :at 1517673324927, :text "router-name", :id "B1MJ_oLQIG"} - "j" {:type :leaf, :by "root", :at 1517673388983, :text "title", :id "r1Qr_jUX8f"} - } - } - "v" { - :type :expr, :id "rk_uiIQIf", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hk3dfcUex0rW", :text "div", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BJT_z5UgeRB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkCufcIex0rb", :text "{}", :by "root", :at 1500541010211} - "b" { - :type :expr, :id "Sybicrm3rf", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BywKzqUegArW", :text ":style", :by "root", :at 1500541010211} - "j" { - :type :expr, :by "root", :at 1517673202659, :id "ByigiLmUz" - :data { - "D" {:type :leaf, :by "root", :at 1517673206855, :text "merge", :id "rylaxjImUf"} - "T" {:type :leaf, :id "HJOtzcUgeAHW", :text "style-logo", :by "root", :at 1500541010211} - "j" { - :type :expr, :by "root", :at 1517673210933, :id "rJXboU7If" - :data { - "T" {:type :leaf, :by "root", :at 1517673212618, :text "if", :id "S1EyboLQLM"} - "j" { - :type :expr, :by "root", :at 1517673214385, :id "Sk8Zs8m8G" - :data { - "T" {:type :leaf, :by "root", :at 1517673214730, :text "=", :id "B1brZoUmLf"} - "b" {:type :leaf, :by "root", :at 1517673333692, :text "router-name", :id "HkPXiI7If"} - "j" { - :type :expr, :by "root", :at 1517673240369, :id "BJQe7iLX8z" - :data { - "T" {:type :leaf, :by "root", :at 1517673239940, :text ":name", :id "H1gPbsLQUf"} - "j" {:type :leaf, :by "root", :at 1517673243433, :text "router", :id "rJWQj8XLM"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517673250714, :id "Syo7jUmLG" - :data { - "T" {:type :leaf, :by "root", :at 1517673251444, :text "{}", :id "H1qmoI78M"} - "j" { - :type :expr, :by "root", :at 1517673251790, :id "HkenmjI78z" - :data { - "T" {:type :leaf, :by "root", :at 1517673253669, :text ":color", :id "Sk3moIQ8G"} - "j" {:type :leaf, :by "root", :at 1517673257931, :text ":black", :id "HkZA7sU7UG"} - } - } - } - } - } - } - } - } - } - } - "j" { - :type :expr, :id "BkxztoJgmz", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJVtzcUllCSW", :text ":on-click", :by "root", :at 1514302328636} - "j" { - :type :expr, :by "root", :at 1517200634345, :id "BJbG-HXnHM" - :data { - "T" {:type :leaf, :id "BkSFGqIelRSb", :text "action->", :by "root", :at 1517200636304} - "j" {:type :leaf, :id "H126zqIglRB-", :text ":router/change", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "Sy6pz58llCrW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJRaG9IxlAB-", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BJk0zq8xxCr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJg0MqUxe0r-", :text ":name", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SyWCG5IlgAS-", :text "router-name", :by "root", :at 1517673338178} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :id "rJYKf5Leg0BW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rycKz9UxxABZ", :text "<>", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "Bkhtz5IlxAS-", :text "title", :by "root", :at 1517673340810} - } - } - } - } - } - } - "style-header" { - :type :expr, :id "Byaoz9Ueg0r-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1CsfcIxxABZ", :text "def", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkJnG98xgCHZ", :text "style-header", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "rJlhfqLlxCBW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Byb2zcIlx0SW", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "Byz3z9UxgCBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJQ2f5LglCSb", :text ":height", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SyEnGqLggRSZ", :text "48", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "BJO3GqIex0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJY3GqLxgAHb", :text ":justify-content", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1qhGq8leCSW", :text ":space-between", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "S1s3M5LglCr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sy3nMqLexRBW", :text ":padding", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1a2M5LleAH-", :text "|0 16px", :by "root", :at 1500541010211} - } - } - "y" { - :type :expr, :id "SJR2MqIlx0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkkpfcUxeCHb", :text ":font-size", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SJeazq8llABZ", :text "16", :by "root", :at 1500541010211} - } - } - "yT" { - :type :expr, :by "root", :at 1517199084303, :id "SkElkm3BM" - :data { - "T" {:type :leaf, :by "root", :at 1517199088232, :text ":border-bottom", :id "SkElkm3BMleaf"} - "j" { - :type :expr, :by "root", :at 1517199088690, :id "BJFxJ7nHz" - :data { - "T" {:type :leaf, :by "root", :at 1517199091028, :text "str", :id "SkB_l1m2SM"} - "j" {:type :leaf, :by "root", :at 1517199094996, :text "|1px solid ", :id "rJ3eymnHG"} - "r" { - :type :expr, :by "root", :at 1517199098755, :id "Bklmbk72Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517199098582, :text "hsl", :id "BJGby7nBM"} - "j" {:type :leaf, :by "root", :at 1517199099347, :text "0", :id "BJ-QZJ73SM"} - "r" {:type :leaf, :by "root", :at 1517199099522, :text "0", :id "HymXbJQ3rG"} - "v" {:type :leaf, :by "root", :at 1517675144289, :text "94", :id "SkgNZk7hrG"} - } - } - } - } - } - } - "yj" { - :type :expr, :by "root", :at 1517675107587, :id "rk3wzDX8z" - :data { - "T" {:type :leaf, :by "root", :at 1517675109553, :text ":font-family", :id "rk3wzDX8zleaf"} - "j" {:type :leaf, :by "root", :at 1517675116277, :text "ui/font-fancy", :id "SkxRvfDmUz"} - } - } - } - } - } - } - "style-logo" { - :type :expr, :id "SkVwGcUgx0HW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1rPzcLegCB-", :text "def", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1LPM5IleRHZ", :text "style-logo", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "S1wvz5UglCH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HydPGq8xeRBb", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "B1FvfqIxgAS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJ9wM98lg0B-", :text ":cursor", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rkjwMc8xl0Sb", :text ":pointer", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :by "root", :at 1517673189124, :id "H1W6Ji8X8f" - :data { - "T" {:type :leaf, :by "root", :at 1517673190101, :text ":color", :id "H1W6Ji8X8fleaf"} - "j" { - :type :expr, :by "root", :at 1517673190430, :id "SyS0ksU7Lf" - :data { - "T" {:type :leaf, :by "root", :at 1517673190752, :text "hsl", :id "BJVAyoImLz"} - "j" {:type :leaf, :by "root", :at 1517673192178, :text "0", :id "HyfkejIQLM"} - "r" {:type :leaf, :by "root", :at 1517673192443, :text "0", :id "SJggloLQUG"} - "v" {:type :leaf, :by "root", :at 1517673199126, :text "60", :id "ByblsI7LM"} - } - } - } - } - } - } - } - } - "style-pointer" { - :type :expr, :id "HJSozqLlgCrb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sk8jM9LxxArW", :text "def", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SJPof9UxeRBZ", :text "style-pointer", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "BJujGqUleCH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyYjz9UgxCrZ", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "B1ciG9UlxRrW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJjozqIgl0Sb", :text ":cursor", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BknsM58xxRrW", :text "|pointer", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - :proc { - :type :expr, :id "SJ1Uz9LeeAB-", :by nil, :at 1500541010211 - :data {} - } - } - "app.comp.history" { - :ns { - :type :expr, :by "root", :at 1517503925517, :id "Hyxa2Bag8f" - :data { - "T" {:type :leaf, :by "root", :at 1517503925517, :text "ns", :id "HkWTnS6eLG"} - "j" {:type :leaf, :by "root", :at 1517503925517, :text "app.comp.history", :id "rkChS6xUG"} - "r" { - :type :expr, :id "HkRABaeLG", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547394445} - "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "rJXHzqUxxRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S14rzqLgg0B-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1rHfcUggCr-", :text "respo-ui.colors", :by "root", :at 1516547392332} - "r" {:type :leaf, :id "ByUBz9LleASb", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "BkwSMqLglCBZ", :text "colors", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "SkVQg5h1z", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} - "t" {:type :leaf, :by "root", :at 1517200690109, :text "action->", :id "rJeuVSmhSz"} - "u" {:type :leaf, :by "root", :at 1517504070432, :text "list->", :id "H1xpSUalUf"} - "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517200808252, :id "SJeehS72SM" - :data { - "T" {:type :leaf, :by "root", :at 1517200808677, :text "[]", :id "SJeehS72SMleaf"} - "j" {:type :leaf, :by "root", :at 1517200811145, :text "respo.comp.space", :id "By-Z2H73HM"} - "r" {:type :leaf, :by "root", :at 1517200812912, :text ":refer", :id "rJSX3H72Hf"} - "v" { - :type :expr, :by "root", :at 1517200813134, :id "HkrB2HXnrf" - :data { - "T" {:type :leaf, :by "root", :at 1517200813286, :text "[]", :id "HkEBhBX3Sz"} - "j" {:type :leaf, :by "root", :at 1517200815416, :text "=<", :id "S1_H3S7nSG"} - } - } - } - } - } - } - } - } - :defs { - "comp-history" { - :type :expr, :by "root", :at 1517503930281, :id "SklGTSpgLG" - :data { - "T" {:type :leaf, :by "root", :at 1517503933484, :text "defcomp", :id "rJbMprplUf"} - "j" {:type :leaf, :by "root", :at 1517503930281, :text "comp-history", :id "SkzfTBTxUM"} - "r" { - :type :expr, :by "root", :at 1517503930281, :id "HkQfpB6gLz" - :data { - "T" {:type :leaf, :by "root", :at 1517503936191, :text "histories", :id "H1bLprpl8z"} - } - } - "v" { - :type :expr, :by "root", :at 1517503946369, :id "SJfCHTeLf" - :data { - "T" {:type :leaf, :by "root", :at 1517503947240, :text "div", :id "SJfCHTeLfleaf"} - "j" { - :type :expr, :by "root", :at 1517503947465, :id "B1770BpgUG" - :data { - "T" {:type :leaf, :by "root", :at 1517503947808, :text "{}", :id "H1GmCS6eLM"} - "j" { - :type :expr, :by "root", :at 1517504102662, :id "S1yuI6g8f" - :data { - "T" {:type :leaf, :by "root", :at 1517504103674, :text ":style", :id "Bkg0vIalLf"} - "j" { - :type :expr, :by "root", :at 1517504104064, :id "HyfeuIpl8G" - :data { - "T" {:type :leaf, :by "root", :at 1517504104410, :text "{}", :id "rJZxuUae8z"} - "j" { - :type :expr, :by "root", :at 1517504104634, :id "SJeb_8pg8G" - :data { - "T" {:type :leaf, :by "root", :at 1517504107474, :text ":padding", :id "SkbdLalLM"} - "j" {:type :leaf, :by "root", :at 1517504111735, :text "|0 16px", :id "HJNuLplIG"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517504093142, :id "Bk-rw8aeLM" - :data { - "D" {:type :leaf, :by "root", :at 1517504094588, :text "list->", :id "ByMrPU6eIM"} - "L" { - :type :expr, :by "root", :at 1517504095023, :id "rkZvv8al8M" - :data { - "T" {:type :leaf, :by "root", :at 1517504095569, :text "{}", :id "r1lDPLplIG"} - } - } - "T" { - :type :expr, :by "root", :at 1517504023114, :id "rJxymU6gLf" - :data { - "T" {:type :leaf, :by "root", :at 1517504092622, :text "->>", :id "rJxymU6gLfleaf"} - "j" {:type :leaf, :by "root", :at 1517504031481, :text "histories", :id "Sy8XL6eUG"} - "r" { - :type :expr, :by "root", :at 1517504032593, :id "S1YXIaeIM" - :data { - "T" {:type :leaf, :by "root", :at 1517504045326, :text "map", :id "Hy_QLTl8M"} - "j" { - :type :expr, :by "root", :at 1517504046784, :id "rJwELpgUM" - :data { - "T" {:type :leaf, :by "root", :at 1517504047842, :text "fn", :id "SkVr486x8M"} - "j" { - :type :expr, :by "root", :at 1517504048617, :id "S1KNLTlIz" - :data { - "T" {:type :leaf, :by "root", :at 1517504051645, :text "history", :id "HJl_VUpgLG"} - } - } - "r" { - :type :expr, :by "root", :at 1517504052580, :id "rJT4Iag8z" - :data { - "T" {:type :leaf, :by "root", :at 1517504053674, :text "[]", :id "rJT4Iag8zleaf"} - "j" { - :type :expr, :by "root", :at 1517504054037, :id "SJM04I6l8G" - :data { - "T" {:type :leaf, :by "root", :at 1517504054527, :text ":id", :id "BybRNLTg8G"} - "j" {:type :leaf, :by "root", :at 1517504056513, :text "history", :id "ryxJSIpx8f"} - } - } - "r" { - :type :expr, :by "root", :at 1517504057152, :id "BkxWSL6eIz" - :data { - "T" {:type :leaf, :by "root", :at 1517504058902, :text "div", :id "BkxWSL6eIzleaf"} - "j" { - :type :expr, :by "root", :at 1517504059159, :id "By7XBITg8G" - :data { - "T" {:type :leaf, :by "root", :at 1517504059499, :text "{}", :id "ryMmrUag8f"} - } - } - "r" { - :type :expr, :by "root", :at 1517504061927, :id "HkeUr8pgIM" - :data { - "T" {:type :leaf, :by "root", :at 1517504062998, :text "<>", :id "HkeUr8pgIMleaf"} - "j" { - :type :expr, :by "root", :at 1517504064288, :id "rkedHIpg8z" - :data { - "T" {:type :leaf, :by "root", :at 1517504065497, :text ":command", :id "rkdS8Tx8f"} - "j" {:type :leaf, :by "root", :at 1517504066576, :text "history", :id "SJcrITg8z"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517504129235, :id "H1xtKUTeUM" - :data { - "T" {:type :leaf, :by "root", :at 1517504130419, :text "=<", :id "H1xtKUTeUMleaf"} - "j" {:type :leaf, :by "root", :at 1517504131555, :text "16", :id "HyjKUTxLG"} - "r" {:type :leaf, :by "root", :at 1517504132182, :text "nil", :id "B1l2K8TlLz"} - } - } - "x" { - :type :expr, :by "root", :at 1517504133201, :id "BkeTt8Te8f" - :data { - "T" {:type :leaf, :by "root", :at 1517504133968, :text "<>", :id "BkeTt8Te8fleaf"} - "j" { - :type :expr, :by "root", :at 1517504134271, :id "SJzCYLpg8f" - :data { - "T" {:type :leaf, :by "root", :at 1517504135571, :text ":cwd", :id "HkWCF8pxUf"} - "j" {:type :leaf, :by "root", :at 1517504136879, :text "history", :id "BylgcL6eLz"} - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517504146808, :id "BJejcUTxIM" - :data { - "T" {:type :leaf, :by "root", :at 1517504147880, :text "=<", :id "BJejcUTxIMleaf"} - "j" {:type :leaf, :by "root", :at 1517504149092, :text "16", :id "BJpq8TxUz"} - "r" {:type :leaf, :by "root", :at 1517504149690, :text "nil", :id "SyMT986xLM"} - } - } - "yT" { - :type :expr, :by "root", :at 1517504150475, :id "Sy-RqIpxUf" - :data { - "T" {:type :leaf, :by "root", :at 1517504152432, :text "<>", :id "Sy-RqIpxUfleaf"} - "j" { - :type :expr, :by "root", :at 1517504153081, :id "B1l-iIpe8f" - :data { - "T" {:type :leaf, :by "root", :at 1517504156725, :text ":started-at", :id "B1boU6l8f"} - "j" {:type :leaf, :by "root", :at 1517504160381, :text "history", :id "SJLjI6xLG"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517503925517, :id "r1xR3BTgUM" - :data {} - } - } - "app.comp.home" { - :ns { - :type :expr, :by "root", :at 1517127376630, :id "BklFALZsrz" - :data { - "T" {:type :leaf, :by "root", :at 1517127376630, :text "ns", :id "BkbFRLWjrG"} - "j" {:type :leaf, :by "root", :at 1517127376630, :text "app.comp.home", :id "S1GFRLbiBf"} - "r" { - :type :expr, :id "rydkwbjHz", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547394445} - "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} - } - } - "t" { - :type :expr, :by "root", :at 1517204897786, :id "Syx5orNhSf" - :data { - "T" {:type :leaf, :by "root", :at 1517204898452, :text "[]", :id "Syx5orNhSfleaf"} - "j" {:type :leaf, :by "root", :at 1517204901819, :text "respo.comp.space", :id "rJoorN3BM"} - "r" {:type :leaf, :by "root", :at 1517204902658, :text ":refer", :id "HyfCiHE2HM"} - "v" { - :type :expr, :by "root", :at 1517204902999, :id "S1zk3HEnrf" - :data { - "T" {:type :leaf, :by "root", :at 1517204906287, :text "[]", :id "SJZ1nB43rf"} - "j" {:type :leaf, :by "root", :at 1517204904852, :text "=<", :id "ryGx3rE2SM"} - } - } - } - } - "v" { - :type :expr, :id "rJXHzqUxxRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S14rzqLgg0B-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1rHfcUggCr-", :text "respo-ui.colors", :by "root", :at 1516547392332} - "r" {:type :leaf, :id "ByUBz9LleASb", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "BkwSMqLglCBZ", :text "colors", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "SkVQg5h1z", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} - "n" {:type :leaf, :by "root", :at 1517129312122, :text "cursor->", :id "HJxDPCboHG"} - "p" {:type :leaf, :by "root", :at 1517196487797, :text "action->", :id "Ske0pEM2SM"} - "pT" {:type :leaf, :by "root", :at 1517196790038, :text "list->", :id "Syepx8MhHG"} - "q" {:type :leaf, :by "root", :at 1517196492686, :text "button", :id "S1V0VznHz"} - "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517129255569, :id "BygVC-iHM" - :data { - "T" {:type :leaf, :by "root", :at 1517129256026, :text "[]", :id "BygVC-iHMleaf"} - "j" {:type :leaf, :by "root", :at 1517129260843, :text "app.comp.commander", :id "B1Ml4C-orf"} - "r" {:type :leaf, :by "root", :at 1517129261978, :text ":refer", :id "BJfrVC-oBf"} - "v" { - :type :expr, :by "root", :at 1517129262181, :id "ByBIE0ZjBf" - :data { - "T" {:type :leaf, :by "root", :at 1517129262329, :text "[]", :id "BkVL4RWjHz"} - "j" {:type :leaf, :by "root", :at 1517129264263, :text "comp-commander", :id "BydINA-sBM"} - } - } - } - } - "yT" { - :type :expr, :by "root", :at 1517196762588, :id "SkXkIz2Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517196762951, :text "[]", :id "SkXkIz2Bfleaf"} - "j" {:type :leaf, :by "root", :at 1517196766513, :text "app.comp.process", :id "B1GX1IznHG"} - "r" {:type :leaf, :by "root", :at 1517196767418, :text ":refer", :id "rkvkUf2Hz"} - "v" { - :type :expr, :by "root", :at 1517196767597, :id "ryd1Uz2Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517196768503, :text "[]", :id "BJ8PJUfhrf"} - "j" {:type :leaf, :by "root", :at 1517196770380, :text "comp-process", :id "HkKyIG3Hf"} - } - } - } - } - "yj" { - :type :expr, :by "root", :at 1517415028660, :id "rkaO5vk8M" - :data { - "T" {:type :leaf, :by "root", :at 1517415029375, :text "[]", :id "rkaO5vk8Mleaf"} - "j" {:type :leaf, :by "root", :at 1517415032278, :text "app.util", :id "SJfTd5PyIM"} - "r" {:type :leaf, :by "root", :at 1517415033230, :text ":refer", :id "r1-tqvk8z"} - "v" { - :type :expr, :by "root", :at 1517415033465, :id "HJP-t5w18z" - :data { - "T" {:type :leaf, :by "root", :at 1517415033600, :text "[]", :id "S1IbtqvkUz"} - "j" {:type :leaf, :by "root", :at 1517415036256, :text "join-path", :id "H1WGF5Py8G"} - "r" {:type :leaf, :by "root", :at 1517674144932, :text "map-val", :id "HkdiRUm8M"} - } - } - } - } - "yr" { - :type :expr, :by "root", :at 1517674163001, :id "SJxih0IQ8z" - :data { - "T" {:type :leaf, :by "root", :at 1517674164818, :text "[]", :id "SJxih0IQ8zleaf"} - "j" {:type :leaf, :by "root", :at 1517674166165, :text "app.style", :id "SJMp2RI7UM"} - "r" {:type :leaf, :by "root", :at 1517674166709, :text ":as", :id "HJV0hRUXIf"} - "v" {:type :leaf, :by "root", :at 1517674167525, :text "style", :id "Hy-yaA8QLf"} - } - } - } - } - } - } - :defs { - "comp-home" { - :type :expr, :by "root", :at 1517127380850, :id "HkgTAU-oHz" - :data { - "T" {:type :leaf, :by "root", :at 1517127396845, :text "defcomp", :id "BJWTCLWjHM"} - "j" {:type :leaf, :by "root", :at 1517127380850, :text "comp-home", :id "Syzp0IbiHG"} - "r" { - :type :expr, :by "root", :at 1517127380850, :id "Bk7aCI-oBz" - :data { - "T" {:type :leaf, :by "root", :at 1517503770096, :text "router-data", :id "HkWePbirz"} - "j" {:type :leaf, :by "root", :at 1517129305876, :text "states", :id "S1lWPCZjBG"} - } - } - "v" { - :type :expr, :by "root", :at 1517127402341, :id "BJlflD-jrM" - :data { - "T" {:type :leaf, :by "root", :at 1517127402707, :text "div", :id "BJlflD-jrMleaf"} - "j" { - :type :expr, :by "root", :at 1517127402956, :id "SkfQgvWsSf" - :data { - "T" {:type :leaf, :by "root", :at 1517127403295, :text "{}", :id "BkbQeDbiHM"} - "j" { - :type :expr, :by "root", :at 1517222212941, :id "SJ-6rYdhSG" - :data { - "T" {:type :leaf, :by "root", :at 1517222213767, :text ":style", :id "Syl6SYOnBf"} - "j" { - :type :expr, :by "root", :at 1517222213987, :id "HJfABYdnrG" - :data { - "T" {:type :leaf, :by "root", :at 1517222214877, :text "{}", :id "HJWAHY_nHf"} - "j" { - :type :expr, :by "root", :at 1517222215106, :id "B1XJ8Yd2Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517222216273, :text ":padding", :id "ryGyLFdnBM"} - "j" {:type :leaf, :by "root", :at 1517222216591, :text "8", :id "HyLl8FdhSf"} - } - } - "r" { - :type :expr, :by "root", :at 1517284006284, :id "H1x0sqD6HM" - :data { - "T" {:type :leaf, :by "root", :at 1517284008140, :text ":overflow", :id "H1x0sqD6HMleaf"} - "j" {:type :leaf, :by "root", :at 1517284009538, :text ":auto", :id "SyHx2qwprz"} - } - } - } - } - } - } - } - } - "s" { - :type :expr, :by "root", :at 1517388965712, :id "HJxRjE-JLG" - :data { - "D" {:type :leaf, :by "root", :at 1517388967422, :text "div", :id "rkZ0s4W1Lz"} - "L" { - :type :expr, :by "root", :at 1517388967989, :id "H1xenVZyIG" - :data { - "T" {:type :leaf, :by "root", :at 1517388968911, :text "{}", :id "SJxhEZJLM"} - "j" { - :type :expr, :by "root", :at 1517673958702, :id "B1lke08mLf" - :data { - "T" {:type :leaf, :by "root", :at 1517673960309, :text ":style", :id "HkkgCLQIG"} - "j" { - :type :expr, :by "root", :at 1517674181705, :id "ryRa087Lf" - :data { - "D" {:type :leaf, :by "root", :at 1517674182642, :text "merge", :id "BJlRpAUQUG"} - "T" {:type :leaf, :by "root", :at 1517843154288, :text "ui/row-parted", :id "Sy7egCU7IG"} - "j" { - :type :expr, :by "root", :at 1517674183191, :id "H1XyAA8QLz" - :data { - "T" {:type :leaf, :by "root", :at 1517674183531, :text "{}", :id "rkz10C8QUz"} - "j" { - :type :expr, :by "root", :at 1517674183911, :id "Hy-xRA87LG" - :data { - "T" {:type :leaf, :by "root", :at 1517674216629, :text ":align-items", :id "SyelCCUX8G"} - "j" {:type :leaf, :by "root", :at 1517674188455, :text ":center", :id "SyN00LX8M"} - } - } - } - } - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517365913848, :id "Sygv5VbJUM" - :data { - "T" {:type :leaf, :by "root", :at 1517366031136, :text "list->", :id "Hkgfi9oCSfleaf"} - "j" { - :type :expr, :by "root", :at 1517366031842, :id "B1dGsj0Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517366032306, :text "{}", :id "HyzwzioRrf"} - "j" { - :type :expr, :by "root", :at 1517673950587, :id "Bywy0IQIf" - :data { - "T" {:type :leaf, :by "root", :at 1517673952545, :text ":style", :id "rJxUk08XLz"} - "j" {:type :leaf, :by "root", :at 1517673954128, :text "ui/row", :id "HyxYy0UmLz"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517366033652, :id "rycfssASG" - :data { - "T" {:type :leaf, :by "root", :at 1517366034889, :text "->>", :id "rycfssASGleaf"} - "j" { - :type :expr, :by "root", :at 1517366035579, :id "By3MooArG" - :data { - "T" {:type :leaf, :by "root", :at 1517503805525, :text ":workflows", :id "HJboMoi0Sf"} - "j" {:type :leaf, :by "root", :at 1517503779375, :text "router-data", :id "ByeXjo0HM"} - } - } - "r" { - :type :expr, :by "root", :at 1517366040966, :id "S1eb7sjRrG" - :data { - "T" {:type :leaf, :by "root", :at 1517674129369, :text "map-val", :id "S1eb7sjRrGleaf"} - "j" { - :type :expr, :by "root", :at 1517366047631, :id "BkuQjsAHM" - :data { - "T" {:type :leaf, :by "root", :at 1517366048416, :text "fn", :id "SJZwmoi0rz"} - "j" { - :type :expr, :by "root", :at 1517366048690, :id "SJgK7ssAHf" - :data { - "T" {:type :leaf, :by "root", :at 1517503801142, :text "workflow", :id "Hys7ss0Hz"} - } - } - "r" { - :type :expr, :by "root", :at 1517366055302, :id "Hyes0ImUz" - :data { - "T" {:type :leaf, :by "root", :at 1517366055908, :text "div", :id "HJmRQjiArz"} - "j" { - :type :expr, :by "root", :at 1517366056614, :id "SkZ4os0HG" - :data { - "T" {:type :leaf, :by "root", :at 1517366056989, :text "{}", :id "r1zgVss0rz"} - "j" { - :type :expr, :by "root", :at 1517366068945, :id "S1e6NooArG" - :data { - "T" {:type :leaf, :by "root", :at 1517366069837, :text ":style", :id "H1aNijCSG"} - "j" { - :type :expr, :by "root", :at 1517366072111, :id "BJgHoiCHf" - :data { - "T" {:type :leaf, :by "root", :at 1517366072484, :text "{}", :id "BJbCEosRBM"} - "j" { - :type :expr, :by "root", :at 1517366073644, :id "BJGrosRSf" - :data { - "T" {:type :leaf, :by "root", :at 1517366080065, :text ":background-color", :id "B1WBjj0BG"} - "j" { - :type :expr, :by "root", :at 1517366080635, :id "HyYrjs0Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517366081103, :text "hsl", :id "SyNuSoiRHf"} - "j" {:type :leaf, :by "root", :at 1517366087602, :text "60", :id "ByqSjiRrf"} - "r" {:type :leaf, :by "root", :at 1517366090065, :text "90", :id "HyZIjj0Sz"} - "v" {:type :leaf, :by "root", :at 1517366138611, :text "47", :id "S1Zf8isRHz"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517366092600, :id "BkBUsoRHM" - :data { - "T" {:type :leaf, :by "root", :at 1517366093726, :text ":padding", :id "BkBUsoRHMleaf"} - "j" {:type :leaf, :by "root", :at 1517366098592, :text "|0 8px", :id "ByfIUoj0rG"} - } - } - "v" { - :type :expr, :by "root", :at 1517366102386, :id "H1x0IsoASf" - :data { - "T" {:type :leaf, :by "root", :at 1517366103874, :text ":display", :id "H1x0IsoASfleaf"} - "j" {:type :leaf, :by "root", :at 1517366106170, :text ":inline-block", :id "rJlgPsoCSM"} - } - } - "x" { - :type :expr, :by "root", :at 1517366122090, :id "HJGdoo0rf" - :data { - "T" {:type :leaf, :by "root", :at 1517366123549, :text ":cursor", :id "HJGdoo0rfleaf"} - "j" {:type :leaf, :by "root", :at 1517366124699, :text ":pointer", :id "HkxNOjo0rz"} - } - } - "y" { - :type :expr, :by "root", :at 1517368891407, :id "SkZmHL2RrM" - :data { - "T" {:type :leaf, :by "root", :at 1517368894313, :text ":margin", :id "SkZmHL2RrMleaf"} - "j" {:type :leaf, :by "root", :at 1517368895279, :text "8", :id "HyDrInASG"} - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517366155028, :id "BJxXqooArM" - :data { - "T" {:type :leaf, :by "root", :at 1517366157688, :text ":on-click", :id "BJxXqooArMleaf"} - "j" { - :type :expr, :by "root", :at 1517366157968, :id "r1mUcsjRrM" - :data { - "T" {:type :leaf, :by "root", :at 1517366158324, :text "fn", :id "SyMU5osCrz"} - "j" { - :type :expr, :by "root", :at 1517366158576, :id "HkDqis0Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517366158821, :text "e", :id "Bk8LcssCBM"} - "j" {:type :leaf, :by "root", :at 1517366160159, :text "d!", :id "BkZDqjiArz"} - "r" {:type :leaf, :by "root", :at 1517366160872, :text "m!", :id "ryxdqjsABz"} - } - } - "v" { - :type :expr, :by "root", :at 1517366202928, :id "SkmpooASf" - :data { - "T" {:type :leaf, :by "root", :at 1517366206620, :text "doseq", :id "SkmpooASfleaf"} - "j" { - :type :expr, :by "root", :at 1517366207570, :id "BkOpioArM" - :data { - "T" { - :type :expr, :by "root", :at 1517366207818, :id "r1ldTojRrz" - :data { - "T" {:type :leaf, :by "root", :at 1517366225589, :text "command", :id "H1ePTioASf"} - "j" { - :type :expr, :by "root", :at 1517366264373, :id "rygxZhiCSG" - :data { - "D" {:type :leaf, :by "root", :at 1517366266405, :text "vals", :id "SJbW2oRSM"} - "T" { - :type :expr, :by "root", :at 1517366226114, :id "Hy-cAos0Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517366229990, :text ":commands", :id "rJxqAioCBz"} - "j" {:type :leaf, :by "root", :at 1517366232064, :text "workflow", :id "B1J12jRrf"} - } - } - } - } - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517366551903, :id "HJxX6jRSz" - :data { - "T" {:type :leaf, :by "root", :at 1517366553164, :text "d!", :id "HJxX6jRSzleaf"} - "j" {:type :leaf, :by "root", :at 1517366810936, :text ":effect/run", :id "Skbb76jCHM"} - "r" { - :type :expr, :by "root", :at 1517366557547, :id "SJLmpjCBz" - :data { - "T" {:type :leaf, :by "root", :at 1517366557915, :text "{}", :id "SJNHQ6sRSM"} - "j" { - :type :expr, :by "root", :at 1517366558150, :id "B17I76i0Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517366617613, :text ":command", :id "r1MLmaoRHz"} - "j" { - :type :expr, :by "root", :at 1517366617866, :id "HyWfPTsCHM" - :data { - "T" {:type :leaf, :by "root", :at 1517366619293, :text ":code", :id "rkxfPpoABG"} - "j" {:type :leaf, :by "root", :at 1517366623109, :text "command", :id "ryBXvTi0BG"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517366624114, :id "r1x_DasCHz" - :data { - "T" {:type :leaf, :by "root", :at 1517366626021, :text ":cwd", :id "r1x_DasCHzleaf"} - "j" { - :type :expr, :by "root", :at 1517366627024, :id "rJgjv6sRBG" - :data { - "T" {:type :leaf, :by "root", :at 1517415024897, :text "join-path", :id "rJivToRBM"} - "j" { - :type :expr, :by "root", :at 1517366630154, :id "ByRwaoASG" - :data { - "T" {:type :leaf, :by "root", :at 1517366632295, :text ":base-dir", :id "HJgnD6i0Bz"} - "j" {:type :leaf, :by "root", :at 1517366633354, :text "workflow", :id "SkQxd6oCrz"} - } - } - "r" { - :type :expr, :by "root", :at 1517366634735, :id "Sk7O6jCBz" - :data { - "T" {:type :leaf, :by "root", :at 1517366635327, :text ":path", :id "rJxGdpjABf"} - "j" {:type :leaf, :by "root", :at 1517366640365, :text "command", :id "B14Xd6j0Hz"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517366058227, :id "Bybf4siRHM" - :data { - "T" {:type :leaf, :by "root", :at 1517366059540, :text "<>", :id "Bybf4siRHMleaf"} - "j" { - :type :expr, :by "root", :at 1517366060589, :id "rkHVsoRBG" - :data { - "T" {:type :leaf, :by "root", :at 1517366061402, :text ":name", :id "Hke4VioRrM"} - "j" {:type :leaf, :by "root", :at 1517366062383, :text "workflow", :id "r1HBEjiRSG"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517196457716, :id "SJlW10UQUG" - :data { - "T" {:type :leaf, :by "root", :at 1517196458999, :text "button", :id "HklG3Ez3Hzleaf"} - "j" { - :type :expr, :by "root", :at 1517196459237, :id "B1rm2EGnBM" - :data { - "T" {:type :leaf, :by "root", :at 1517196459587, :text "{}", :id "HkE7h4z2BM"} - "b" { - :type :expr, :by "root", :at 1517196501884, :id "rJgAC4z2rz" - :data { - "T" {:type :leaf, :by "root", :at 1517196503696, :text ":style", :id "rJgAC4z2rzleaf"} - "j" {:type :leaf, :by "root", :at 1517674157840, :text "style/button", :id "HyMyBGhBf"} - } - } - "j" { - :type :expr, :by "root", :at 1517196468681, :id "B163EG3HG" - :data { - "T" {:type :leaf, :by "root", :at 1517196471194, :text ":on-click", :id "B1lnnEf3Bf"} - "j" { - :type :expr, :by "root", :at 1517196472199, :id "BylgpEGnBz" - :data { - "T" {:type :leaf, :by "root", :at 1517196474497, :text "action->", :id "B1eTEzhrf"} - "j" {:type :leaf, :by "root", :at 1517196484034, :text ":process/clear", :id "SJHpEGhHG"} - "r" {:type :leaf, :by "root", :at 1517196479818, :text "nil", :id "S1ewpVGnrf"} - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517196462066, :id "BkbU34G3BG" - :data { - "T" {:type :leaf, :by "root", :at 1517196462856, :text "<>", :id "BkbU34G3BGleaf"} - "j" {:type :leaf, :by "root", :at 1517284035075, :text "|Clear", :id "rJ-D2VznrM"} - } - } - } - } - } - } - "t" { - :type :expr, :by "root", :at 1517204886337, :id "rkxR5SN3Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517204887249, :text "=<", :id "rkxR5SN3Bfleaf"} - "j" {:type :leaf, :by "root", :at 1517204887999, :text "nil", :id "rybyiS43Bf"} - "r" {:type :leaf, :by "root", :at 1517204888716, :text "8", :id "S1zesrE2rG"} - } - } - "v" { - :type :expr, :by "root", :at 1517129174690, :id "By1JCWiHf" - :data { - "T" {:type :leaf, :by "root", :at 1517196725504, :text "list->", :id "By1JCWiHfleaf"} - "j" { - :type :expr, :by "root", :at 1517196729023, :id "BygbTBGhrM" - :data { - "T" {:type :leaf, :by "root", :at 1517196730050, :text "{}", :id "rkW6Bf2rM"} - "j" { - :type :expr, :by "root", :at 1517284164297, :id "Sy-3HowTSf" - :data { - "T" {:type :leaf, :by "root", :at 1517284165401, :text ":style", :id "Syx3SoPTBM"} - "j" { - :type :expr, :by "root", :at 1517284166263, :id "HJlCHoPaHM" - :data { - "T" {:type :leaf, :by "root", :at 1517284170879, :text "merge", :id "rJW8oDTHf"} - "j" {:type :leaf, :by "root", :at 1517284172371, :text "ui/row", :id "ryGQIjPaBz"} - "r" { - :type :expr, :by "root", :at 1517284173532, :id "Bk8IivarM" - :data { - "T" {:type :leaf, :by "root", :at 1517284173917, :text "{}", :id "r1BLsDTBM"} - "b" { - :type :expr, :by "root", :at 1517284246665, :id "Hy1jiPaSz" - :data { - "T" {:type :leaf, :by "root", :at 1517284252503, :text ":align-items", :id "Hy1jiPaSzleaf"} - "j" {:type :leaf, :by "root", :at 1517284256980, :text ":flex-start", :id "HkSjjwTHf"} - } - } - "j" { - :type :expr, :by "root", :at 1517284174151, :id "BJm8LjPTrM" - :data { - "T" {:type :leaf, :by "root", :at 1517284177029, :text ":flex-wrap", :id "B1ML8jvaSM"} - "j" {:type :leaf, :by "root", :at 1517284178390, :text ":wrap", :id "r1QF8ow6rf"} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517196731030, :id "H1gmpHM2Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517196733202, :text "->>", :id "H1gmpHM2Hfleaf"} - "j" { - :type :expr, :by "root", :at 1517196734861, :id "SJD6Bf2Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517196736977, :text ":processes", :id "SkfrpHz3Sz"} - "j" {:type :leaf, :by "root", :at 1517503838427, :text "router-data", :id "SkzYTHf3rG"} - } - } - "n" { - :type :expr, :by "root", :at 1517201637582, :id "H1A1tQ3Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517201678636, :text "sort", :id "H1A1tQ3Hfleaf"} - "j" { - :type :expr, :by "root", :at 1517201642094, :id "S1MgYQ3HG" - :data { - "T" {:type :leaf, :by "root", :at 1517201642416, :text "fn", :id "SybbltX2rf"} - "j" { - :type :expr, :by "root", :at 1517201643966, :id "rye4gY7nSf" - :data { - "T" {:type :leaf, :by "root", :at 1517201644297, :text "x", :id "ByVxKQnrG"} - "j" {:type :leaf, :by "root", :at 1517201647133, :text "y", :id "SkrlFmnHM"} - } - } - "r" { - :type :expr, :by "root", :at 1517201647755, :id "HyOlFX3rG" - :data { - "T" {:type :leaf, :by "root", :at 1517201648445, :text "-", :id "HyOlFX3rGleaf"} - "j" { - :type :expr, :by "root", :at 1517201649353, :id "HkbtgKm2Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517201655889, :text ":started-at", :id "SkKxKm2Sf"} - "j" { - :type :expr, :by "root", :at 1517201774897, :id "Skw_KQnBf" - :data { - "D" {:type :leaf, :by "root", :at 1517201775842, :text "val", :id "B1gwuY7hHG"} - "T" {:type :leaf, :by "root", :at 1517201781146, :text "y", :id "SkWZY7hrf"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517201649353, :id "HymWtX2rf" - :data { - "T" {:type :leaf, :by "root", :at 1517201655889, :text ":started-at", :id "SkKxKm2Sf"} - "j" { - :type :expr, :by "root", :at 1517201777634, :id "H15_tXhSG" - :data { - "D" {:type :leaf, :by "root", :at 1517201778385, :text "val", :id "Hyx9_Fm2BG"} - "T" {:type :leaf, :by "root", :at 1517201782747, :text "x", :id "SkWZY7hrf"} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517196739361, :id "HkjaSM3BM" - :data { - "T" {:type :leaf, :by "root", :at 1517196739758, :text "map", :id "HkjaSM3BMleaf"} - "j" { - :type :expr, :by "root", :at 1517196740034, :id "Bk736rM3Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517196740346, :text "fn", :id "HJMh6BGhBz"} - "j" { - :type :expr, :by "root", :at 1517196742051, :id "HyCaSfhHz" - :data { - "T" { - :type :expr, :by "root", :at 1517196743685, :id "H1lCrMnHM" - :data { - "T" {:type :leaf, :by "root", :at 1517196744015, :text "[]", :id "B1U26rz3Bz"} - "j" {:type :leaf, :by "root", :at 1517196746422, :text "pid", :id "B1-eCBG3Hf"} - "r" {:type :leaf, :by "root", :at 1517196749072, :text "process", :id "HJNf0HzhSG"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517196750643, :id "H1vCSMhrG" - :data { - "T" {:type :leaf, :by "root", :at 1517196751859, :text "[]", :id "H1vCSMhrGleaf"} - "j" {:type :leaf, :by "root", :at 1517196753004, :text "pid", :id "ByZOArfnrM"} - "r" { - :type :expr, :by "root", :at 1517196754170, :id "Syl9RSG3SM" - :data { - "T" {:type :leaf, :by "root", :at 1517196758799, :text "comp-process", :id "S1q0SM2BM"} - "j" {:type :leaf, :by "root", :at 1517196760483, :text "process", :id "ry-1JUz2rM"} - } - } - } - } - } - } - } - } - } - } - } - } - "w" { - :type :expr, :by "root", :at 1517674104120, :id "SJxgK08mIM" - :data { - "T" {:type :leaf, :by "root", :at 1517674105976, :text "=<", :id "SJxgK08mIMleaf"} - "j" {:type :leaf, :by "root", :at 1517674110248, :text "nil", :id "S1bzYAImIG"} - "r" {:type :leaf, :by "root", :at 1517674110929, :text "8", :id "HJbIYRImIM"} - } - } - "x" { - :type :expr, :by "root", :at 1517129171932, :id "ByR_CImIM" - :data { - "T" {:type :leaf, :by "root", :at 1517129172359, :text "div", :id "H1iR6ZjHM"} - "j" { - :type :expr, :by "root", :at 1517129172574, :id "S1pA6-irz" - :data { - "T" {:type :leaf, :by "root", :at 1517129173046, :text "{}", :id "SJEnCa-jBf"} - "j" { - :type :expr, :by "root", :at 1517207567309, :id "rkWvfgS3BM" - :data { - "T" {:type :leaf, :by "root", :at 1517207568899, :text ":style", :id "BkgPGgShBG"} - "j" {:type :leaf, :by "root", :at 1517207572875, :text "ui/row-parted", :id "HyMYGgr3BM"} - } - } - } - } - "n" { - :type :expr, :by "root", :at 1517674287245, :id "ryWD41DXLz" - :data { - "T" {:type :leaf, :by "root", :at 1517674288877, :text "span", :id "ryWD41DXLzleaf"} - "j" { - :type :expr, :by "root", :at 1517674289207, :id "H1NYEJPQLM" - :data { - "T" {:type :leaf, :by "root", :at 1517674289533, :text "{}", :id "rkQt4kwmLG"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517129314897, :id "HJsPAbsSM" - :data { - "T" {:type :leaf, :by "root", :at 1517129317014, :text "cursor->", :id "HJsPAbsSMleaf"} - "j" {:type :leaf, :by "root", :at 1517129320541, :text ":commander", :id "rkRwCWsBG"} - "r" {:type :leaf, :by "root", :at 1517129324487, :text "comp-commander", :id "Byx-dRWiBf"} - "v" {:type :leaf, :by "root", :at 1517129369962, :text "states", :id "H1xliAbsrz"} - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517127376630, :id "rJXFC8bsSM" - :data {} - } - } - "app.comp.login" { - :ns { - :type :expr, :id "Hys_eqLgeAH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hk3Ox5LleArW", :text "ns", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ry6_xqLxgCS-", :text "app.comp.login", :by "root", :at 1510936619134} - "v" { - :type :expr, :id "SJ3YeqUlxABZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "By6Fe5LlgRr-", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rJxw4e52kz", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1-Yg5UelCSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HyfFecIgxCSZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "rkQKx5Lxg0rZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "B1VFg98ex0Sb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1HtxqIelASb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJLFecUle0S-", :text "defcomp", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "r1Dtg9Igg0rW", :text "<>", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "SydYe98xe0BW", :text "div", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "HJttec8elRrW", :text "input", :by "root", :at 1500541010211} - "y" {:type :leaf, :id "HJ9tl98xxAHb", :text "button", :by "root", :at 1500541010211} - "yT" {:type :leaf, :id "SyoYl9LelCBW", :text "span", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "rkBqe58el0HZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S189lq8leAHW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1DcxqUexABZ", :text "respo.comp.space", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "r1dcgc8xg0HZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyF5x98llCSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJc9g58xg0HZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1j9g98ggCB-", :text "=<", :by "root", :at 1500541010211} - } - } - } - } - "v" { - :type :expr, :id "S129ecIxeAHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "By6cgq8llCr-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJ09lqUxeRBb", :text "respo.comp.inspect", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkJoxqUeg0r-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJxigqIex0Sb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkWslq8eeCH-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1Gsg98geRrb", :text "comp-inspect", :by "root", :at 1500541010211} - } - } - } - } - "x" { - :type :expr, :id "rk7ol9IxxABZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry4ie5IgeArW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1Bjgc8gxRrW", :text "respo-ui.core", :by "root", :at 1516547410331} - "r" {:type :leaf, :id "BkIjeq8xxCBZ", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "r1vixqLll0SZ", :text "ui", :by "root", :at 1500541010211} - } - } - "y" { - :type :expr, :id "ry_sxqUeeAHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1Kie58xlAHb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJ9sgqLxxABW", :text "app.schema", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SkjsgcIxeCHZ", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "r1niecUxlCrZ", :text "schema", :by "root", :at 1500541010211} - } - } - "yT" { - :type :expr, :by "root", :at 1517842884423, :id "rygh6Zl8Lf" - :data { - "T" {:type :leaf, :by "root", :at 1517842884830, :text "[]", :id "rygh6Zl8Lfleaf"} - "j" {:type :leaf, :by "root", :at 1517842886318, :text "app.style", :id "HkZaTZgL8z"} - "r" {:type :leaf, :by "root", :at 1517842886782, :text ":as", :id "BkICTblULz"} - "v" {:type :leaf, :by "root", :at 1517842887748, :text "style", :id "BkGkAWxIUM"} - } - } - } - } - } - } - :defs { - "comp-login" { - :type :expr, :id "HkN1-cUxxRB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJBy-qUle0SW", :text "defcomp", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1LyWcUxe0rZ", :text "comp-login", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "HkPy-qLxlRHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sy_yZ5LxlCBZ", :text "states", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "ryK1bqLeg0rZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry9JbqLlgRHb", :text "let", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "H1j1WcUxxRSb", :by nil, :at 1500541010211 - :data { - "T" { - :type :expr, :id "HynkWcIee0Hb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkT1bqUxlASZ", :text "state", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "Hy0yb98gxABW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkJxWc8lxCBW", :text "or", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BJllZ5Lle0Sb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hy-eb9Uxx0HZ", :text ":data", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1GeZq8glCrW", :text "states", :by "root", :at 1500541010211} - } - } - "r" {:type :leaf, :id "B1Xeb9UleCrW", :text "initial-state", :by "root", :at 1500541010211} - } - } - } - } - } - } - "r" { - :type :expr, :id "ryEx-5IxlRSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJrgZ5Llg0Sb", :text "div", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BJIg-9Ule0rZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJvxZcIxlASZ", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :by "root", :at 1517842785514, :id "BJGFwbg8UG" - :data { - "T" {:type :leaf, :by "root", :at 1517842786700, :text ":style", :id "BybYvbg8Iz"} - "j" { - :type :expr, :by "root", :at 1517842796902, :id "BJxSu-lLLz" - :data { - "D" {:type :leaf, :by "root", :at 1517842798428, :text "merge", :id "HkWSuWe8LM"} - "L" {:type :leaf, :by "root", :at 1517842803047, :text "ui/flex", :id "S1PuWeI8f"} - "T" {:type :leaf, :by "root", :at 1517842788073, :text "ui/center", :id "B1ZiDZe8Uz"} - } - } - } - } - } - } - "r" { - :type :expr, :id "BJOg-5Igx0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1Fx-cUegRrb", :text "div", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "ry5gWc8exRSZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BkixZ9LxgRBZ", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SJhlW5Ugl0rb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1Te-58xeAHb", :text ":style", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "H1AgbqLleRrW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk1WZq8lgCS-", :text "{}", :by "root", :at 1500541010211} - } - } - } - } - } - } - "r" { - :type :expr, :id "BkxZZ98xeCH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJWb-5UlxRrZ", :text "div", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "H1M-WcUggRHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hym-ZqLleAS-", :text "{}", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "SJNWb9UexCSZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1H-WqIle0rZ", :text "input", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rkU-bcUleASZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1wbZqLeeASW", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rJObbc8leRS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJYWWcLxx0rW", :text ":placeholder", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H15Wb9Ugg0r-", :text "|Username", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "SyoWb5UleCSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hy2bWqIlg0rW", :text ":value", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HJpWZc8ggRH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BkRZ-cIle0H-", :text ":username", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HyyM-9UglArZ", :text "state", :by "root", :at 1500541010211} - } - } - } - } - "v" { - :type :expr, :id "rklGb9LxlRSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sy-fW58glCSZ", :text ":style", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SJGf-5Llx0SW", :text "style/input", :by "root", :at 1517842891112} - } - } - "x" { - :type :expr, :id "rJFis1lQM", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1_f-5UlxAr-", :text ":on-input", :by "root", :at 1514302367311} - "j" { - :type :expr, :id "S1KMWqIleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S15MZ9UllCH-", :text "on-input", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1sG-98gxArZ", :text "state", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "rk2fW9IeeRSW", :text ":username", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - } - } - "v" { - :type :expr, :id "rJ6MW9IxgAH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1RzbqIxl0Sb", :text "=<", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Sy17-5Iex0SW", :text "nil", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "B1gQWqUxe0rZ", :text "8", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "rybQZcLeeABW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkfm-5IxgASW", :text "div", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SJX7ZqIeeCB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hk4mZ5IxgASW", :text "{}", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "rJHQb58xxRBW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJU7Zc8xlCSW", :text "input", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SyPX-qIxxRBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry_XZ5UglRrZ", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HyK7bcIexCS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk9XZqLglArZ", :text ":placeholder", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkomWcUlxCBb", :text "|Password", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "S1hmb98glRSZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H16XZc8ee0rb", :text ":value", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "r1C7bcLel0BZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BykV-cLlgAHW", :text ":password", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rylNWcLelArZ", :text "state", :by "root", :at 1500541010211} - } - } - } - } - "v" { - :type :expr, :id "rkb4Zq8le0BW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1zEb9Leg0H-", :text ":style", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r174W9LllRB-", :text "style/input", :by "root", :at 1517842907901} - } - } - "x" { - :type :expr, :id "S1Znooygmf", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkYEbqUleRr-", :text ":on-input", :by "root", :at 1514302370752} - "j" { - :type :expr, :id "rJ54-5LegAHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HysEZcIglRHZ", :text "on-input", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Sy24ZcUggArb", :text "state", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "rJaVb9UglCrb", :text ":password", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - } - } - } - } - "v" { - :type :expr, :id "HkCEZcIegCSb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJyBZc8xgCSZ", :text "=<", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJlHZ98eg0SZ", :text "nil", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "B1WSZ58lxArb", :text "8", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "rJfHW98egCSb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ByXH-cLlx0S-", :text "div", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "r1NBZ5Uxg0BZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyHSb58leCHb", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BJLSb9LxeASZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkDrZqUlxRBb", :text ":style", :by "root", :at 1500541010211} - "j" { - :type :expr, :by "root", :at 1517842831814, :id "S1Oq-gIIf" - :data { - "T" {:type :leaf, :id "rkuHZqIlgRBW", :text "{}", :by "root", :at 1517842832175} - } - } - } - } - } - } - "r" { - :type :expr, :id "BJtHWq8llRSb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJ9BZcIeeCSb", :text "button", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "H1sBZ98geRSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkhSb5UleABb", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rJTH-9UlgCHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJ0SZ5Ilx0SW", :text ":inner-text", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJyIZqUleAH-", :text "|Sign up", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "rJeIW5Ugx0HZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1bIZ9IxxAHb", :text ":style", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SkfLZ5UglArZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H178Wq8exCSb", :text "merge", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJVIb58xe0B-", :text "style/button", :by "root", :at 1517842956913} - } - } - } - } - "v" { - :type :expr, :id "Syxb3iJg7G", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkMP-cIgl0rb", :text ":on-click", :by "root", :at 1514302375364} - "j" { - :type :expr, :id "rJ7wZ9Lxx0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sy4PbcUxgRHZ", :text "on-submit", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "ryBvWcUgeCBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkLPZ9Lgx0rW", :text ":username", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ryPv-5UgxAHZ", :text "state", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "Byuw-cLxgCBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyFvW5LglAH-", :text ":password", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1qDZ98geRSW", :text "state", :by "root", :at 1500541010211} - } - } - "v" {:type :leaf, :id "HkjwbqLxlAHb", :text "true", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - "v" { - :type :expr, :id "B13wW9IgxCrb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJTPZc8xxAHW", :text "=<", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ryCvbqIxlCHZ", :text "8", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "HyyO-q8glAS-", :text "nil", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "Skg_WqIxx0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkWu-qIgeRrW", :text "button", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HkfdZ9IelABZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S17d-5UgxCr-", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "Sk4_bq8leCHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkB_W98xxABZ", :text ":inner-text", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Sk8OW5LexRrW", :text "|Log in", :by "root", :at 1517843001103} - } - } - "r" { - :type :expr, :id "HywdZ9LeeRHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJ_OZc8lx0Bb", :text ":style", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SJY_-5LllAB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkcdZ5IxlASW", :text "merge", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Hkod-cLel0B-", :text "style/button", :by "root", :at 1517842960487} - } - } - } - } - "v" { - :type :expr, :id "HJlw3skxQM", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJYF-5Uxe0S-", :text ":on-click", :by "root", :at 1514302381488} - "j" { - :type :expr, :id "rk9F-cUex0H-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyoKb98elRr-", :text "on-submit", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "B1hYZcIxxASb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Skptbq8xeCBb", :text ":username", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJRFWc8eeRr-", :text "state", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "Sk15Z9LleCS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bkl9-5IlxRB-", :text ":password", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SJWq-58llAHW", :text "state", :by "root", :at 1500541010211} - } - } - "v" {:type :leaf, :id "rJfq-9Lge0B-", :text "false", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "initial-state" { - :type :expr, :id "BkQcW5IlxCrb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJN9bcIlg0rW", :text "def", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1B9-9Uel0Hb", :text "initial-state", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "H1IqZcLgg0BW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hyvq-qIllRrZ", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "Hkd9b5UxgCBW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryF5b9IgxRB-", :text ":username", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SJq5-qUll0rb", :text "|", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "SJs5-qLel0H-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyhcbqUggRHb", :text ":password", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S16cbc8lx0Bb", :text "|", :by "root", :at 1500541010211} - } - } - } - } - } - } - "on-input" { - :type :expr, :id "r1JRxcIleCS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJlAg5Iee0B-", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1bAg5Ilg0B-", :text "on-input", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "H1M0e9UxgRBW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sk7Aeq8ge0rZ", :text "state", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJVReqLlgRB-", :text "k", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "BJHRe5LlgCSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hy8Cx58glAH-", :text "fn", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "B1vAx5LexRBW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkuAx5IxlRSZ", :text "e", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1Y0x58xeRHb", :text "dispatch!", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "r190g9LleRSZ", :text "mutate!", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "SkiRl9Lgl0SW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sy2CxqLegCHZ", :text "mutate!", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "ByaRe5UleRrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyCAlq8xx0SW", :text "assoc", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkJ1Z5UlxRSZ", :text "state", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "HyeyZq8ge0BZ", :text "k", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "S1bkZ5UxxAHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJMk-qIggRBZ", :text ":value", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Bk7kb98eeCBW", :text "e", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - } - } - "on-submit" { - :type :expr, :id "ryRox98ggCBW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1k3e58glCr-", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SylnxqLgg0H-", :text "on-submit", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "Hk-2e9IglCrW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkG2lqIxe0SW", :text "username", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r172xqLexCr-", :text "password", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SkEhlqIegRB-", :text "signup?", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "SyB2gqIleArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJLhecIxg0rb", :text "fn", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HJDne5LgxASZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJOnxqUxx0Sb", :text "e", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJK2xcLglCHZ", :text "dispatch!", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "BJ93x98gg0rW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkshx5Lgx0HZ", :text "dispatch!", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "By22eqIxxRB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkT3gqIlgArb", :text "if", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SJR3gqLegCr-", :text "signup?", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "r11Te5UxgABZ", :text ":user/sign-up", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "r1l6e5IgxCBb", :text ":user/log-in", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "By-Tx58xgRSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1GTxcIleAHb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Hy7ax5LexRHb", :text "username", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1E6l9Lle0r-", :text "password", :by "root", :at 1500541010211} - } - } - } - } - "v" { - :type :expr, :id "BySax58xgRBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJ8Te9IgeABZ", :text ".setItem", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rkPpe9IglASZ", :text "js/localStorage", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "ryO6eq8ex0r-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1Kal58gl0HZ", :text ":storage-key", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ry5alqLglAr-", :text "schema/configs", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "Hyj6eqIle0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkhaecLxlRBW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Hk6al98leAHZ", :text "username", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BJ0Te9LexCHZ", :text "password", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :id "Bkajg9LggCH-", :by nil, :at 1500541010211 - :data {} - } - } - "app.comp.missing" { - :ns { - :type :expr, :by "B1y7Rc-Zz", :at 1517127081517, :id "BJgbhS-iHz" - :data { - "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127081517, :text "ns", :id "BkW-nrWiBf"} - "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127081517, :text "app.comp.missing", :id "HJfbnHZirG"} - "r" { - :type :expr, :id "HJedCH-jBf", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547394445} - "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "SkVQg5h1z", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - :defs { - "comp-missing" { - :type :expr, :by "B1y7Rc-Zz", :at 1517127087462, :id "HyeD2r-iHM" - :data { - "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127090643, :text "defcomp", :id "rJ-DhBZsrf"} - "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127087462, :text "comp-missing", :id "SkGvhH-jBM"} - "r" { - :type :expr, :by "B1y7Rc-Zz", :at 1517127087462, :id "ryXwnr-sBf" - :data { - "T" {:type :leaf, :by "root", :at 1517671416545, :text "router", :id "S1e-NLXIz"} - } - } - "v" { - :type :expr, :by "root", :at 1517671427637, :id "BJ3W4U7IG" - :data { - "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127093517, :text "div", :id "ryZ32S-jSGleaf"} - "j" { - :type :expr, :by "B1y7Rc-Zz", :at 1517127093726, :id "Bye0nrbjBM" - :data { - "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127095254, :text "{}", :id "Sy0hSWsSG"} - } - } - "r" { - :type :expr, :by "B1y7Rc-Zz", :at 1517127096073, :id "HkxepSWjrf" - :data { - "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127096962, :text "<>", :id "HkxepSWjrfleaf"} - "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1517127105387, :text "|Page missing", :id "SJ--TBWsSf"} - } - } - "v" { - :type :expr, :by "root", :at 1517671431472, :id "SyM1M48QUM" - :data { - "D" {:type :leaf, :by "root", :at 1517671432148, :text "div", :id "rJgfNIQ8z"} - "L" { - :type :expr, :by "root", :at 1517671432355, :id "ryVgGE87IM" - :data { - "T" {:type :leaf, :by "root", :at 1517671432711, :text "{}", :id "H1QlzVLQ8M"} - "j" { - :type :expr, :by "root", :at 1517671434043, :id "Bkeff48mUz" - :data { - "T" {:type :leaf, :by "root", :at 1517671438967, :text ":style", :id "rJzMVUQ8G"} - "j" { - :type :expr, :by "root", :at 1517671439570, :id "S1Of4UQ8z" - :data { - "T" {:type :leaf, :by "root", :at 1517671440144, :text "{}", :id "H1bwfNUQLf"} - "j" { - :type :expr, :by "root", :at 1517671443949, :id "SknG4I7Iz" - :data { - "T" {:type :leaf, :by "root", :at 1517671447302, :text ":font-family", :id "BJ-cG4UQ8z"} - "j" {:type :leaf, :by "root", :at 1517671451831, :text "ui/font-code", :id "Hk7y7EIXUf"} - } - } - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517671420058, :id "HJxNZEIm8f" - :data { - "T" {:type :leaf, :by "root", :at 1517671420567, :text "<>", :id "HJxNZEIm8fleaf"} - "j" {:type :leaf, :by "root", :at 1517671422559, :text "router", :id "SkWHbNImIM"} - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :by "B1y7Rc-Zz", :at 1517127081517, :id "BJf3rWiSf" - :data {} - } - } - "app.comp.process" { - :ns { - :type :expr, :by "root", :at 1517196681088, :id "B1lW5HG3SG" - :data { - "T" {:type :leaf, :by "root", :at 1517196681088, :text "ns", :id "SkWZcBMhrf"} - "j" {:type :leaf, :by "root", :at 1517196681088, :text "app.comp.process", :id "B1zWcrznSG"} - "r" { - :type :expr, :id "SJxysSG2rG", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547394445} - "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "rJXHzqUxxRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S14rzqLgg0B-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1rHfcUggCr-", :text "respo-ui.colors", :by "root", :at 1516547392332} - "r" {:type :leaf, :id "ByUBz9LleASb", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "BkwSMqLglCBZ", :text "colors", :by "root", :at 1500541010211} - } - } - "w" { - :type :expr, :by "root", :at 1517196882694, :id "r1oLUz3SM" - :data { - "T" {:type :leaf, :by "root", :at 1517196883253, :text "[]", :id "r1oLUz3SMleaf"} - "j" {:type :leaf, :by "root", :at 1517196887102, :text "respo.comp.space", :id "S1GsUUG3Bf"} - "r" {:type :leaf, :by "root", :at 1517196887805, :text ":refer", :id "S1BkP8G3SG"} - "v" { - :type :expr, :by "root", :at 1517196887977, :id "rymgvIGhBM" - :data { - "T" {:type :leaf, :by "root", :at 1517196888150, :text "[]", :id "SkzeDLGhrM"} - "j" {:type :leaf, :by "root", :at 1517196888948, :text "=<", :id "SyLlwLMnrf"} - } - } - } - } - "x" { - :type :expr, :id "SkVQg5h1z", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} - "n" {:type :leaf, :by "root", :at 1517201527679, :text "list->", :id "S1eJK_m3Bf"} - "p" {:type :leaf, :by "root", :at 1517204712456, :text "action->", :id "BJeCJBV3rG"} - "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} - "y" {:type :leaf, :by "root", :at 1517204647437, :text "button", :id "B1khENhSG"} - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517286497454, :id "SJZYDN_TBG" - :data { - "T" {:type :leaf, :by "root", :at 1517286497797, :text "[]", :id "SJZYDN_TBGleaf"} - "j" {:type :leaf, :by "root", :at 1517286583080, :text "app.style", :id "B1-9DEdpHf"} - "r" {:type :leaf, :by "root", :at 1517286507350, :text ":as", :id "HkZm_4u6rf"} - "v" {:type :leaf, :by "root", :at 1517286509638, :text "style", :id "B1HXdEOTrz"} - } - } - "yT" { - :type :expr, :by "root", :at 1517559580626, :id "HyBmkoZLG" - :data { - "T" {:type :leaf, :by "root", :at 1517559581025, :text "[]", :id "HyBmkoZLGleaf"} - "j" {:type :leaf, :by "root", :at 1517559582507, :text "app.util", :id "BkfrXkiZLf"} - "r" {:type :leaf, :by "root", :at 1517559583391, :text ":refer", :id "r1DQJobIf"} - "v" { - :type :expr, :by "root", :at 1517559583603, :id "SJuQysWLG" - :data { - "T" {:type :leaf, :by "root", :at 1517559583727, :text "[]", :id "BkLvmJiZLf"} - "j" {:type :leaf, :by "root", :at 1517559896115, :text "map-with-index", :id "S1MOm1oZ8z"} - } - } - } - } - } - } - } - } - :defs { - "comp-process" { - :type :expr, :by "root", :at 1517196685684, :id "HygLqrMhSz" - :data { - "T" {:type :leaf, :by "root", :at 1517196698666, :text "defcomp", :id "rkZ8qSG2Bf"} - "j" {:type :leaf, :by "root", :at 1517196685684, :text "comp-process", :id "ByML9Sf2rz"} - "r" { - :type :expr, :by "root", :at 1517196685684, :id "BJ7I9HGhrz" - :data { - "T" {:type :leaf, :by "root", :at 1517196700602, :text "process", :id "rJz7oSMhHf"} - } - } - "v" { - :type :expr, :by "root", :at 1517196703427, :id "SkPjBf2Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517196704248, :text "div", :id "SkPjBf2Bzleaf"} - "j" { - :type :expr, :by "root", :at 1517196704479, :id "BJQOsHf3Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517196705410, :text "{}", :id "rJfdjrM2Bz"} - "j" { - :type :expr, :by "root", :at 1517200042096, :id "HyWMhG72Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517200042886, :text ":style", :id "S1efnzm3HG"} - "j" { - :type :expr, :by "root", :at 1517200043351, :id "rymQhMm2rz" - :data { - "T" {:type :leaf, :by "root", :at 1517200043685, :text "{}", :id "BkzQhG7nSz"} - "r" { - :type :expr, :by "root", :at 1517200069977, :id "H1gC6f73BG" - :data { - "T" {:type :leaf, :by "root", :at 1517200071467, :text ":padding", :id "H1gC6f73BGleaf"} - "j" {:type :leaf, :by "root", :at 1517673513899, :text "8", :id "B1eRfQhrz"} - } - } - "t" { - :type :expr, :by "root", :at 1517200165882, :id "ry-VmDNhHG" - :data { - "T" {:type :leaf, :by "root", :at 1517200167281, :text ":margin", :id "ryA77X2rGleaf"} - "j" {:type :leaf, :by "root", :at 1517200170881, :text "8", :id "BJxE7X3rG"} - } - } - "u" { - :type :expr, :by "root", :at 1517205277189, :id "ryB7DEnSz" - :data { - "T" {:type :leaf, :by "root", :at 1517205279982, :text ":font-family", :id "ryB7DEnSzleaf"} - "j" {:type :leaf, :by "root", :at 1517205283179, :text "ui/font-code", :id "r1MdmDN2Hf"} - } - } - "v" { - :type :expr, :by "root", :at 1517200080419, :id "rkgORfX3rz" - :data { - "T" {:type :leaf, :by "root", :at 1517200084871, :text ":background-color", :id "rkgORfX3rzleaf"} - "j" { - :type :expr, :by "root", :at 1517200111335, :id "ByeDlmQ2Hz" - :data { - "D" {:type :leaf, :by "root", :at 1517200112648, :text "if", :id "HJugXX3rM"} - "L" { - :type :expr, :by "root", :at 1517200113339, :id "Sk-YlXXhrz" - :data { - "T" {:type :leaf, :by "root", :at 1517200116226, :text ":alive? process", :id "BkgtgQm3HG"} - } - } - "T" { - :type :expr, :by "root", :at 1517200085127, :id "BJEpRfXhBf" - :data { - "T" {:type :leaf, :by "root", :at 1517200085409, :text "hsl", :id "SJ7T0GXnSf"} - "j" {:type :leaf, :by "root", :at 1517673592801, :text "120", :id "HJJJXm3rM"} - "r" {:type :leaf, :by "root", :at 1517673597368, :text "100", :id "H1MFym72Bf"} - "v" {:type :leaf, :by "root", :at 1517673595949, :text "90", :id "SJG9ymQ3rf"} - } - } - "j" { - :type :expr, :by "root", :at 1517200085127, :id "SyJWmX2Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517200085409, :text "hsl", :id "SJ7T0GXnSf"} - "j" {:type :leaf, :by "root", :at 1517200096984, :text "240", :id "HJJJXm3rM"} - "r" {:type :leaf, :by "root", :at 1517200135937, :text "50", :id "H1MFym72Bf"} - "v" {:type :leaf, :by "root", :at 1517286788453, :text "98", :id "SJG9ymQ3rf"} - } - } - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517207775756, :id "HJmgV_6Sz" - :data { - "D" {:type :leaf, :by "root", :at 1517207776545, :text "div", :id "H1bdkbH2Bf"} - "L" { - :type :expr, :by "root", :at 1517207776798, :id "r1Wt1WrhSf" - :data { - "T" {:type :leaf, :by "root", :at 1517207777718, :text "{}", :id "rylYkZr3BM"} - "j" { - :type :expr, :by "root", :at 1517207778372, :id "S1zcJ-H3rf" - :data { - "T" {:type :leaf, :by "root", :at 1517207779811, :text ":style", :id "Hk-5ybS3SM"} - "j" { - :type :expr, :by "root", :at 1517286726339, :id "SJ0rB_aHf" - :data { - "D" {:type :leaf, :by "root", :at 1517286729502, :text "merge", :id "HygLHdTHf"} - "T" {:type :leaf, :by "root", :at 1517286721119, :text "ui/row", :id "ByZn1WS2Sf"} - "j" { - :type :expr, :by "root", :at 1517286730153, :id "BkWz8BuaBz" - :data { - "T" {:type :leaf, :by "root", :at 1517286730494, :text "{}", :id "S1lMIS_pBM"} - "j" { - :type :expr, :by "root", :at 1517286731510, :id "rkfXUSO6rz" - :data { - "T" {:type :leaf, :by "root", :at 1517286735414, :text ":align-items", :id "rJmUSdpSG"} - "j" {:type :leaf, :by "root", :at 1517286736636, :text ":center", :id "ByOLru6Sf"} - } - } - } - } - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517196819167, :id "SkeozIf2Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517196820079, :text "<>", :id "SkeozIf2Bfleaf"} - "j" { - :type :expr, :by "root", :at 1517196822048, :id "By0MIf3rG" - :data { - "T" {:type :leaf, :by "root", :at 1517196822986, :text ":command", :id "ryZ2GLznBM"} - "j" {:type :leaf, :by "root", :at 1517196824132, :text "process", :id "HyEyX8MhHM"} - } - } - } - } - "b" { - :type :expr, :by "root", :at 1517670817510, :id "S1lri58XIz" - :data { - "T" {:type :leaf, :by "root", :at 1517670911527, :text "span", :id "Hy4tiWI78Mleaf"} - "j" { - :type :expr, :by "root", :at 1517670818747, :id "Syss-8mIf" - :data { - "T" {:type :leaf, :by "root", :at 1517670819098, :text "{}", :id "ByM9oZImUG"} - "j" { - :type :expr, :by "root", :at 1517670943267, :id "Hk-wmMUmIG" - :data { - "T" {:type :leaf, :by "root", :at 1517670946018, :text ":on-click", :id "HJevXzUmIz"} - "j" { - :type :expr, :by "root", :at 1517670946299, :id "rkU97z8mIG" - :data { - "T" {:type :leaf, :by "root", :at 1517670948080, :text "action->", :id "BJB9mGIQUM"} - "j" {:type :leaf, :by "root", :at 1517670957873, :text ":router/change", :id "B1pQzUXIz"} - "r" { - :type :expr, :by "root", :at 1517670958108, :id "BJHU4f8QLz" - :data { - "T" {:type :leaf, :by "root", :at 1517670958524, :text "{}", :id "SyNIEfLm8G"} - "j" { - :type :expr, :by "root", :at 1517670958711, :id "SJbw4GIXUf" - :data { - "T" {:type :leaf, :by "root", :at 1517670959468, :text ":name", :id "rkxDVMU7IG"} - "j" {:type :leaf, :by "root", :at 1517671147678, :text ":process", :id "Byd4z8mLM"} - } - } - "r" { - :type :expr, :by "root", :at 1517671087612, :id "B1d3z8QIf" - :data { - "T" {:type :leaf, :by "root", :at 1517671090594, :text ":params", :id "B1d3z8QIfleaf"} - "j" { - :type :expr, :by "root", :at 1517671090938, :id "HkZonfLX8M" - :data { - "T" {:type :leaf, :by "root", :at 1517671093660, :text "{}", :id "HyxshMLXUM"} - "j" { - :type :expr, :by "root", :at 1517671094034, :id "HJMAnMLmIM" - :data { - "T" {:type :leaf, :by "root", :at 1517671138591, :text ":id", :id "r1bRnf878G"} - "j" { - :type :expr, :by "root", :at 1517671150144, :id "S1eUgm8QIz" - :data { - "T" {:type :leaf, :by "root", :at 1517671525487, :text ":pid", :id "SJgikXU78G"} - "j" {:type :leaf, :by "root", :at 1517671153627, :text "process", :id "ry7dlmLQUM"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517670850483, :id "BJZ5pWLQIM" - :data { - "T" {:type :leaf, :by "root", :at 1517670851369, :text "<>", :id "BJZ5pWLQIMleaf"} - "j" {:type :leaf, :by "root", :at 1517670882443, :text "|view", :id "r1-sTbU7UM"} - "r" {:type :leaf, :by "root", :at 1517671080545, :text "style/link", :id "Bko1G8QIG"} - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517204615862, :id "B1-aLqUXIz" - :data { - "T" {:type :leaf, :by "root", :at 1517204616304, :text "if", :id "rke5V42BMleaf"} - "j" { - :type :expr, :by "root", :at 1517204618296, :id "SJlGq4E2Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517204619810, :text ":alive?", :id "rJM54VnBG"} - "j" {:type :leaf, :by "root", :at 1517204621327, :text "process", :id "S1lVcVVhBf"} - } - } - "r" { - :type :expr, :by "root", :at 1517204621860, :id "r1l8c4VhSf" - :data { - "T" {:type :leaf, :by "root", :at 1517204626345, :text "button", :id "r1l8c4VhSfleaf"} - "j" { - :type :expr, :by "root", :at 1517204626809, :id "BJj9VN2Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517204627150, :text "{}", :id "r1gq944nHM"} - "j" { - :type :expr, :by "root", :at 1517204630140, :id "B1gA9N4hSM" - :data { - "T" {:type :leaf, :by "root", :at 1517204632714, :text ":style", :id "ByA9EE3HG"} - "j" {:type :leaf, :by "root", :at 1517286487678, :text "style/button", :id "HJ--sVNnrz"} - } - } - "r" { - :type :expr, :by "root", :at 1517204689313, :id "r1btRENhrz" - :data { - "T" {:type :leaf, :by "root", :at 1517204691695, :text ":on-click", :id "r1btRENhrzleaf"} - "j" { - :type :expr, :by "root", :at 1517204692442, :id "HkH3REE3Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517204696032, :text "action->", :id "Syfh0EV2rG"} - "j" {:type :leaf, :by "root", :at 1517204699974, :text ":effect/kill", :id "B1ZxJrN2SG"} - "r" { - :type :expr, :by "root", :at 1517204701505, :id "SyeSkH4nSM" - :data { - "T" {:type :leaf, :by "root", :at 1517204703192, :text ":pid", :id "rJSkHE2Sf"} - "j" {:type :leaf, :by "root", :at 1517204704465, :text "process", :id "B17DJHEnHf"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517204636522, :id "HJSi4E3rG" - :data { - "T" {:type :leaf, :by "root", :at 1517204637680, :text "<>", :id "HJSi4E3rGleaf"} - "j" {:type :leaf, :by "root", :at 1517204640539, :text "|Kill", :id "SkbIoVVhHG"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517204621860, :id "Bk4wH_2Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517204626345, :text "button", :id "r1l8c4VhSfleaf"} - "j" { - :type :expr, :by "root", :at 1517204626809, :id "BJj9VN2Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517204627150, :text "{}", :id "r1gq944nHM"} - "j" { - :type :expr, :by "root", :at 1517204630140, :id "B1gA9N4hSM" - :data { - "T" {:type :leaf, :by "root", :at 1517204632714, :text ":style", :id "ByA9EE3HG"} - "j" {:type :leaf, :by "root", :at 1517286490047, :text "style/button", :id "HJ--sVNnrz"} - } - } - "r" { - :type :expr, :by "root", :at 1517204689313, :id "r1btRENhrz" - :data { - "T" {:type :leaf, :by "root", :at 1517204691695, :text ":on-click", :id "r1btRENhrzleaf"} - "j" { - :type :expr, :by "root", :at 1517204692442, :id "HkH3REE3Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517204696032, :text "action->", :id "Syfh0EV2rG"} - "j" {:type :leaf, :by "root", :at 1517221222512, :text ":effect/run", :id "B1ZxJrN2SG"} - "r" { - :type :expr, :by "root", :at 1517221226902, :id "Byg7OHOnSz" - :data { - "T" {:type :leaf, :by "root", :at 1517221227316, :text "{}", :id "ryQuBOhBM"} - "j" { - :type :expr, :by "root", :at 1517221227502, :id "rJEXuBuhSz" - :data { - "T" {:type :leaf, :by "root", :at 1517221230631, :text ":cwd", :id "ry77dru2Sz"} - "j" { - :type :expr, :by "root", :at 1517221232579, :id "SkY_Hu3SM" - :data { - "T" {:type :leaf, :by "root", :at 1517221235451, :text ":cwd", :id "S1_OrdnHf"} - "j" {:type :leaf, :by "root", :at 1517221236657, :text "process", :id "H1n_r_2BG"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517221237455, :id "rJmTdSOnrG" - :data { - "T" {:type :leaf, :by "root", :at 1517221239271, :text ":command", :id "rJmTdSOnrGleaf"} - "j" { - :type :expr, :by "root", :at 1517221239556, :id "r1eFSu3Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517221240515, :text ":command", :id "Hkr1trOnHf"} - "j" {:type :leaf, :by "root", :at 1517221242106, :text "process", :id "HJWYBO2Hz"} - } - } - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517204636522, :id "HJSi4E3rG" - :data { - "T" {:type :leaf, :by "root", :at 1517204637680, :text "<>", :id "HJSi4E3rGleaf"} - "j" {:type :leaf, :by "root", :at 1517221215695, :text "|Redo", :id "SkbIoVVhHG"} - } - } - } - } - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517196825676, :id "Hyz7UfhSM" - :data { - "T" {:type :leaf, :by "root", :at 1517201524915, :text "list->", :id "Hyz7UfhSMleaf"} - "j" { - :type :expr, :by "root", :at 1517196826468, :id "SJNfmIz2BG" - :data { - "T" {:type :leaf, :by "root", :at 1517196826766, :text "{}", :id "S1Xf7UGhBM"} - "j" { - :type :expr, :by "root", :at 1517201852021, :id "SyxNTKm2Hf" - :data { - "D" {:type :leaf, :by "root", :at 1517201853336, :text ":style", :id "Byb4pKQ3HM"} - "T" { - :type :expr, :by "root", :at 1517201853780, :id "rJe8TYQ2rM" - :data { - "D" {:type :leaf, :by "root", :at 1517201854471, :text "{}", :id "SJZU6FQ3Sf"} - "T" { - :type :expr, :by "root", :at 1517201832908, :id "rkZW2Y7hSf" - :data { - "T" {:type :leaf, :by "root", :at 1517201836034, :text ":font-family", :id "rJxb2t73SG"} - "j" {:type :leaf, :by "root", :at 1517201841300, :text "ui/font-code", :id "S1ZEhtXhBG"} - } - } - "j" { - :type :expr, :by "root", :at 1517201864476, :id "rkxeAY72SG" - :data { - "T" {:type :leaf, :by "root", :at 1517201867273, :text ":white-space", :id "rkxeAY72SGleaf"} - "j" {:type :leaf, :by "root", :at 1517201870696, :text ":pre", :id "rJN0tXhrM"} - } - } - "r" { - :type :expr, :by "root", :at 1517201877804, :id "HJlARYXnSM" - :data { - "T" {:type :leaf, :by "root", :at 1517201879982, :text ":font-size", :id "HJlARYXnSMleaf"} - "j" {:type :leaf, :by "root", :at 1517201880690, :text "12", :id "ByWlk9XhSf"} - } - } - "v" { - :type :expr, :by "root", :at 1517201881469, :id "ByQWycmhSM" - :data { - "T" {:type :leaf, :by "root", :at 1517201884622, :text ":line-height", :id "ByQWycmhSMleaf"} - "j" {:type :leaf, :by "root", :at 1517201893246, :text "|1.5em", :id "HkxHycQ3HM"} - } - } - "x" { - :type :expr, :by "root", :at 1517284199597, :id "r1euswTBG" - :data { - "T" {:type :leaf, :by "root", :at 1517284203311, :text ":max-height", :id "r1euswTBGleaf"} - "j" {:type :leaf, :by "root", :at 1517284204242, :text "400", :id "B1N_iPprM"} - } - } - "y" { - :type :expr, :by "root", :at 1517284205232, :id "SyeBdiv6Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517284209485, :text ":max-width", :id "SyeBdiv6Bfleaf"} - "j" {:type :leaf, :by "root", :at 1517284224804, :text "800", :id "By5OoDTSf"} - } - } - "yT" { - :type :expr, :by "root", :at 1517284212379, :id "B1-h_ovarz" - :data { - "T" {:type :leaf, :by "root", :at 1517284214759, :text ":overflow", :id "B1-h_ovarzleaf"} - "j" {:type :leaf, :by "root", :at 1517284216447, :text ":auto", :id "BkfyFjPTBz"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517201533487, :id "BJHFO7nrG" - :data { - "D" {:type :leaf, :by "root", :at 1517201534555, :text "->>", :id "S1Lt_QhSG"} - "T" { - :type :expr, :by "root", :at 1517196833574, :id "Sk9XLG2BG" - :data { - "T" {:type :leaf, :by "root", :at 1517196834442, :text ":content", :id "B1bKXUG3Hf"} - "j" {:type :leaf, :by "root", :at 1517196836384, :text "process", :id "HyjmLMnHf"} - } - } - "b" { - :type :expr, :by "root", :at 1517303918696, :id "r1wuu3aHz" - :data { - "T" {:type :leaf, :by "root", :at 1517303922117, :text "take-last", :id "r1wuu3aHzleaf"} - "j" {:type :leaf, :by "root", :at 1517303922460, :text "4", :id "HymqudhprM"} - } - } - "r" { - :type :expr, :by "root", :at 1517559589000, :id "By6Qyo-LG" - :data { - "T" {:type :leaf, :by "root", :at 1517559879803, :text "map-with-index", :id "By6Qyo-LGleaf"} - "j" { - :type :expr, :by "root", :at 1517559591983, :id "BkexN1oW8z" - :data { - "D" {:type :leaf, :by "root", :at 1517559596433, :text "fn", :id "HkeENJi-8G"} - "T" { - :type :expr, :by "root", :at 1517559594533, :id "HkmVkoWUf" - :data { - "T" {:type :leaf, :by "root", :at 1517559592707, :text "chunk", :id "HJgNkjZLG"} - } - } - "j" { - :type :expr, :by "root", :at 1517201578784, :id "Syl78xjWUf" - :data { - "T" {:type :leaf, :by "root", :at 1517201580030, :text "<>", :id "r1Qh_7nrG"} - "j" { - :type :expr, :by "root", :at 1517201598588, :id "B1Pau73Sz" - :data { - "D" {:type :leaf, :by "root", :at 1517201600950, :text ":data", :id "BklDa_m2BM"} - "T" {:type :leaf, :by "root", :at 1517201580837, :text "chunk", :id "S1743O7nHf"} - } - } - "r" { - :type :expr, :by "root", :at 1517283561093, :id "ryZlFwTBG" - :data { - "T" {:type :leaf, :by "root", :at 1517283561566, :text "{}", :id "SkgltDTrf"} - "j" { - :type :expr, :by "root", :at 1517283563308, :id "rJeQeFDTHG" - :data { - "T" {:type :leaf, :by "root", :at 1517283565194, :text ":color", :id "ryXxtD6SG"} - "r" { - :type :expr, :by "root", :at 1517559496182, :id "r1lgCRq-Iz" - :data { - "T" {:type :leaf, :by "root", :at 1517559497041, :text "case", :id "r1lgCRq-Izleaf"} - "j" { - :type :expr, :by "root", :at 1517559500947, :id "rkbHACcbLz" - :data { - "T" {:type :leaf, :by "root", :at 1517559498715, :text ":type", :id "B17Z0AqWLG"} - "j" {:type :leaf, :by "root", :at 1517559502893, :text "chunk", :id "BkzBCC9ZUz"} - } - } - "r" { - :type :expr, :by "root", :at 1517559504498, :id "ryxOAC9bLz" - :data { - "T" {:type :leaf, :by "root", :at 1517559508713, :text ":stderr", :id "ryxOAC9bLzleaf"} - "j" { - :type :expr, :by "root", :at 1517559522309, :id "SyiISe88M" - :data { - "T" {:type :leaf, :by "root", :at 1517559522801, :text "hsl", :id "SkWqkkiW8M"} - "j" {:type :leaf, :by "root", :at 1517843772415, :text "60", :id "Hyfjk1ibLG"} - "r" {:type :leaf, :by "root", :at 1517559524236, :text "80", :id "r1nyyoZUG"} - "v" {:type :leaf, :by "root", :at 1517843789514, :text "36", :id "r1M3kysb8M"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517559520403, :id "HJZ_1JsWIf" - :data { - "T" {:type :leaf, :by "root", :at 1517559521998, :text ":error", :id "HJZ_1JsWIfleaf"} - "j" { - :type :expr, :by "root", :at 1517559522309, :id "Skfqk1ib8M" - :data { - "T" {:type :leaf, :by "root", :at 1517559522801, :text "hsl", :id "SkWqkkiW8M"} - "j" {:type :leaf, :by "root", :at 1517559523458, :text "0", :id "Hyfjk1ibLG"} - "r" {:type :leaf, :by "root", :at 1517559524236, :text "80", :id "r1nyyoZUG"} - "v" {:type :leaf, :by "root", :at 1517843778283, :text "50", :id "r1M3kysb8M"} - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517559522309, :id "B1lF4HgIIz" - :data { - "T" {:type :leaf, :by "root", :at 1517559522801, :text "hsl", :id "SkWqkkiW8M"} - "j" {:type :leaf, :by "root", :at 1517843772415, :text "60", :id "Hyfjk1ibLG"} - "r" {:type :leaf, :by "root", :at 1517843802241, :text "0", :id "r1nyyoZUG"} - "v" {:type :leaf, :by "root", :at 1517843800359, :text "0", :id "r1M3kysb8M"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517196681088, :id "Hym-9rf3Bz" - :data {} - } - } - "app.comp.process-detail" { - :ns { - :type :expr, :by "root", :at 1517671589913, :id "B1xCi48X8G" - :data { - "T" {:type :leaf, :by "root", :at 1517671589913, :text "ns", :id "rJZRjV87LG"} - "j" {:type :leaf, :by "root", :at 1517671589913, :text "app.comp.process-detail", :id "ryGAo4L7LG"} - "r" { - :type :expr, :id "rkZHaEIQIG", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547394445} - "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "rJXHzqUxxRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S14rzqLgg0B-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1rHfcUggCr-", :text "respo-ui.colors", :by "root", :at 1516547392332} - "r" {:type :leaf, :id "ByUBz9LleASb", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "BkwSMqLglCBZ", :text "colors", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "SkVQg5h1z", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} - "t" {:type :leaf, :by "root", :at 1517200690109, :text "action->", :id "rJeuVSmhSz"} - "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} - "y" {:type :leaf, :by "root", :at 1517671761978, :text "pre", :id "rylt8rIQ8z"} - "yT" {:type :leaf, :by "root", :at 1517671841194, :text "list->", :id "S1gvsrIXLM"} - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517200808252, :id "SJeehS72SM" - :data { - "T" {:type :leaf, :by "root", :at 1517200808677, :text "[]", :id "SJeehS72SMleaf"} - "j" {:type :leaf, :by "root", :at 1517200811145, :text "respo.comp.space", :id "By-Z2H73HM"} - "r" {:type :leaf, :by "root", :at 1517200812912, :text ":refer", :id "rJSX3H72Hf"} - "v" { - :type :expr, :by "root", :at 1517200813134, :id "HkrB2HXnrf" - :data { - "T" {:type :leaf, :by "root", :at 1517200813286, :text "[]", :id "HkEBhBX3Sz"} - "j" {:type :leaf, :by "root", :at 1517200815416, :text "=<", :id "S1_H3S7nSG"} - } - } - } - } - "yT" { - :type :expr, :by "root", :at 1517671855602, :id "BydnSL7UG" - :data { - "T" {:type :leaf, :by "root", :at 1517671856351, :text "[]", :id "BydnSL7UGleaf"} - "j" {:type :leaf, :by "root", :at 1517671861081, :text "app.util", :id "rkMd2H8QUz"} - "r" {:type :leaf, :by "root", :at 1517671862143, :text ":refer", :id "Bk4T2SUX8f"} - "v" { - :type :expr, :by "root", :at 1517671862418, :id "HJSR3rL7IM" - :data { - "T" {:type :leaf, :by "root", :at 1517671862609, :text "[]", :id "B1VR3S8QIf"} - "j" {:type :leaf, :by "root", :at 1517671865245, :text "map-with-index", :id "rkWJ6SLQIz"} - } - } - } - } - "yj" { - :type :expr, :by "root", :at 1517672292048, :id "HyghPPUQIf" - :data { - "T" {:type :leaf, :by "root", :at 1517672292743, :text "[]", :id "HyghPPUQIfleaf"} - "j" {:type :leaf, :by "root", :at 1517672294691, :text "app.style", :id "HyZawvI7LM"} - "r" {:type :leaf, :by "root", :at 1517672295088, :text ":as", :id "ByZydD8mUf"} - "v" {:type :leaf, :by "root", :at 1517672296035, :text "style", :id "ByBkOPU7Uf"} - } - } - } - } - } - } - :defs { - "comp-process-detail" { - :type :expr, :by "root", :at 1517671596598, :id "Hygr24IXLG" - :data { - "T" {:type :leaf, :by "root", :at 1517671599070, :text "defcomp", :id "H1bSh4LXLG"} - "j" {:type :leaf, :by "root", :at 1517671596598, :text "comp-process-detail", :id "SkzrnVIQUM"} - "r" { - :type :expr, :by "root", :at 1517671596598, :id "rJXBnNUQUG" - :data { - "T" {:type :leaf, :by "root", :at 1517671601581, :text "process", :id "S1ed2NLmLG"} - } - } - "v" { - :type :expr, :by "root", :at 1517671602330, :id "rkW92VL7LM" - :data { - "T" {:type :leaf, :by "root", :at 1517671602744, :text "div", :id "rkW92VL7LMleaf"} - "j" { - :type :expr, :by "root", :at 1517671602991, :id "HkQi2N8X8z" - :data { - "T" {:type :leaf, :by "root", :at 1517671604471, :text "{}", :id "r1MonEL7IM"} - "j" { - :type :expr, :by "root", :at 1517671678911, :id "H1-w-B8mLz" - :data { - "T" {:type :leaf, :by "root", :at 1517671679910, :text ":style", :id "BJgvbHUXUG"} - "j" { - :type :expr, :by "root", :at 1517671680455, :id "SJNdbS878G" - :data { - "T" {:type :leaf, :by "root", :at 1517671680858, :text "{}", :id "Hy7dbrImUf"} - "j" { - :type :expr, :by "root", :at 1517671681105, :id "B1GtWrIXUG" - :data { - "T" {:type :leaf, :by "root", :at 1517671682104, :text ":padding", :id "ByZFZrIQUf"} - "j" {:type :leaf, :by "root", :at 1517671694753, :text "|8px 16px", :id "rJB9ZHUQUM"} - } - } - "r" { - :type :expr, :by "root", :at 1517672389177, :id "rJl6pDL78M" - :data { - "T" {:type :leaf, :by "root", :at 1517672391302, :text ":overflow", :id "rJl6pDL78Mleaf"} - "j" {:type :leaf, :by "root", :at 1517672392923, :text ":auto", :id "SkvkRwIQ8G"} - } - } - "v" { - :type :expr, :by "root", :at 1517672398879, :id "HJwAwL7UG" - :data { - "T" {:type :leaf, :by "root", :at 1517672399686, :text ":flex", :id "HJwAwL7UGleaf"} - "j" {:type :leaf, :by "root", :at 1517672400034, :text "1", :id "SylOCP8QLM"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517671700279, :id "HJgnzB8QUG" - :data { - "D" {:type :leaf, :by "root", :at 1517671700941, :text "div", :id "rk6GBLQLG"} - "L" { - :type :expr, :by "root", :at 1517671701765, :id "B1AMrI7UM" - :data { - "T" {:type :leaf, :by "root", :at 1517671705213, :text "{}", :id "Hye-7BIQUG"} - } - } - "T" { - :type :expr, :by "root", :at 1517671604899, :id "S1eT3V87Uf" - :data { - "T" {:type :leaf, :by "root", :at 1517671605307, :text "<>", :id "S1eT3V87Ufleaf"} - "j" { - :type :expr, :by "root", :at 1517671721581, :id "SJzEBLQUf" - :data { - "T" {:type :leaf, :by "root", :at 1517671726653, :text ":command", :id "r1Z-NBLXLM"} - "j" {:type :leaf, :by "root", :at 1517671723550, :text "process", :id "S1BM4H8X8z"} - } - } - } - } - "b" { - :type :expr, :by "root", :at 1517672172428, :id "HJl4lwUmUz" - :data { - "T" {:type :leaf, :by "root", :at 1517672173239, :text "=<", :id "HJl4lwUmUzleaf"} - "j" {:type :leaf, :by "root", :at 1517672173737, :text "8", :id "rJZrewImIG"} - "r" {:type :leaf, :by "root", :at 1517672174213, :text "nil", :id "S1gIgDI7Uf"} - } - } - "j" { - :type :expr, :by "root", :at 1517671729807, :id "Hy-7ev8mLG" - :data { - "T" {:type :leaf, :by "root", :at 1517671731168, :text "<>", :id "HJe9ErImIfleaf"} - "j" { - :type :expr, :by "root", :at 1517671732063, :id "rJ3VBLXLz" - :data { - "T" {:type :leaf, :by "root", :at 1517671736819, :text ":cwd", :id "ry-jNr8Q8f"} - "j" {:type :leaf, :by "root", :at 1517671738047, :text "process", :id "rkb-HSI7LM"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517672175383, :id "HyZDlwIQIM" - :data { - "T" {:type :leaf, :by "root", :at 1517672178293, :text "=<", :id "HyZDlwIQIMleaf"} - "j" {:type :leaf, :by "root", :at 1517672179588, :text "8", :id "SJl5evImUf"} - "r" {:type :leaf, :by "root", :at 1517672181093, :text "nil", :id "SkagwLXIf"} - } - } - "v" { - :type :expr, :by "root", :at 1517672182397, :id "H1G0gDUXLG" - :data { - "T" {:type :leaf, :by "root", :at 1517672183374, :text "<>", :id "H1G0gDUXLGleaf"} - "j" { - :type :expr, :by "root", :at 1517672183644, :id "Sylbv8QLz" - :data { - "T" {:type :leaf, :by "root", :at 1517672185116, :text ":pid", :id "Skby-vLmLM"} - "j" {:type :leaf, :by "root", :at 1517672187187, :text "process", :id "B1f-wL7UM"} - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517672282118, :id "SJlMwwL78M" - :data { - "T" {:type :leaf, :by "root", :at 1517672283515, :text "=<", :id "SJlMwwL78Mleaf"} - "j" {:type :leaf, :by "root", :at 1517672283890, :text "8", :id "r1NvvImIG"} - "r" {:type :leaf, :by "root", :at 1517672284362, :text "nil", :id "By-EDP87UG"} - } - } - "y" { - :type :expr, :by "root", :at 1517207589371, :id "SkgLwwUmUf" - :data { - "T" {:type :leaf, :by "root", :at 1517207590522, :text "if", :id "HJepXxB2rzleaf"} - "j" { - :type :expr, :by "root", :at 1517207593928, :id "S1xfNeB2Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517207597437, :text "not", :id "BkfVxBhHG"} - "j" { - :type :expr, :by "root", :at 1517207598912, :id "ByxP4xr3SG" - :data { - "T" {:type :leaf, :by "root", :at 1517207600149, :text "empty?", :id "BJwNgS2Sf"} - "j" { - :type :expr, :by "root", :at 1517207602814, :id "B1sElB3rM" - :data { - "T" {:type :leaf, :by "root", :at 1517207603559, :text ":content", :id "HJzdElrnrf"} - "j" {:type :leaf, :by "root", :at 1517207605977, :text "process", :id "B1pVgS2SG"} - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517207607827, :id "r1xHxBnrM" - :data { - "T" {:type :leaf, :by "root", :at 1517207608778, :text "div", :id "r1xHxBnrMleaf"} - "j" { - :type :expr, :by "root", :at 1517207609949, :id "SkeMrxH2rf" - :data { - "T" {:type :leaf, :by "root", :at 1517207610318, :text "{}", :id "ryzHeH3Bz"} - } - } - "y" { - :type :expr, :by "root", :at 1517207610998, :id "rk5MV_THM" - :data { - "T" {:type :leaf, :by "root", :at 1517670918205, :text "span", :id "BJgXreB3HGleaf"} - "j" { - :type :expr, :by "root", :at 1517207616464, :id "SkUuSlHnrf" - :data { - "T" {:type :leaf, :by "root", :at 1517207616786, :text "{}", :id "ryS_HlBnBG"} - "r" { - :type :expr, :by "root", :at 1517207633194, :id "BJtLgHhHz" - :data { - "T" {:type :leaf, :by "root", :at 1517207635518, :text ":on-click", :id "BJtLgHhHzleaf"} - "j" { - :type :expr, :by "root", :at 1517207636891, :id "Hy68eH2rz" - :data { - "T" {:type :leaf, :by "root", :at 1517207638173, :text "action->", :id "r1hLgBnHf"} - "j" {:type :leaf, :by "root", :at 1517207656824, :text ":process/shorten-content", :id "S1kPlrnBM"} - "r" { - :type :expr, :by "root", :at 1517207648242, :id "B1_PxrnSG" - :data { - "T" {:type :leaf, :by "root", :at 1517207650485, :text ":pid", :id "rkwDlBnrM"} - "j" {:type :leaf, :by "root", :at 1517207651513, :text "process", :id "HJoDgrhrM"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517207617569, :id "ByqHeHnHz" - :data { - "T" {:type :leaf, :by "root", :at 1517207618342, :text "<>", :id "ByqHeHnHzleaf"} - "j" {:type :leaf, :by "root", :at 1517207624271, :text "|Shorten", :id "SJoHxH3Sf"} - "r" {:type :leaf, :by "root", :at 1517671083528, :text "style/link", :id "rye-zz87UG"} - } - } - } - } - } - } - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517671728309, :id "BJl_Vr87Lf" - :data { - "T" {:type :leaf, :by "root", :at 1517671728788, :text "div", :id "BJl_Vr87Lfleaf"} - "j" { - :type :expr, :by "root", :at 1517671728976, :id "HJ7F4SI7Iz" - :data { - "T" {:type :leaf, :by "root", :at 1517671729358, :text "{}", :id "SJGKVrUQUz"} - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517671832650, :id "ryWorUmIf" - :data { - "T" {:type :leaf, :by "root", :at 1517671834239, :text "list->", :id "ryWorUmIfleaf"} - "j" { - :type :expr, :by "root", :at 1517671835184, :id "BklmirLX8G" - :data { - "T" {:type :leaf, :by "root", :at 1517671837724, :text "{}", :id "S17iBIQIf"} - } - } - "r" { - :type :expr, :by "root", :at 1517671845118, :id "SkgTiHIQIM" - :data { - "D" {:type :leaf, :by "root", :at 1517671873857, :text "->>", :id "r1_prL78M"} - "L" { - :type :expr, :by "root", :at 1517671875469, :id "r1eoaHLmLM" - :data { - "T" {:type :leaf, :by "root", :at 1517671877064, :text ":content", :id "r1sTrIQIG"} - "j" {:type :leaf, :by "root", :at 1517671878217, :text "process", :id "rJIppSLXIM"} - } - } - "T" { - :type :expr, :by "root", :at 1517671879041, :id "ryeJAHIm8z" - :data { - "T" {:type :leaf, :by "root", :at 1517671852456, :text "map-with-index", :id "SkgTiHIQIMleaf"} - "j" { - :type :expr, :by "root", :at 1517671881778, :id "SkM0SLmLf" - :data { - "T" {:type :leaf, :by "root", :at 1517671882186, :text "fn", :id "Hy-ArL7Uz"} - "j" { - :type :expr, :by "root", :at 1517671882427, :id "HkmzCHLXUf" - :data { - "T" {:type :leaf, :by "root", :at 1517671884803, :text "chunk", :id "H1fMASIXIM"} - } - } - "r" { - :type :expr, :by "root", :at 1517671885794, :id "r1x8RSL7Lf" - :data { - "T" {:type :leaf, :by "root", :at 1517671887508, :text "div", :id "r1x8RSL7Lfleaf"} - "j" { - :type :expr, :by "root", :at 1517671887720, :id "rJxO0B8QIG" - :data { - "T" {:type :leaf, :by "root", :at 1517671888076, :text "{}", :id "HkdRSLmIM"} - "j" { - :type :expr, :by "root", :at 1517671931190, :id "rJZmZLUmUM" - :data { - "T" {:type :leaf, :by "root", :at 1517671931923, :text ":style", :id "S1e7WL8mUz"} - "j" { - :type :expr, :by "root", :at 1517671932179, :id "BJSE-IL7LM" - :data { - "T" {:type :leaf, :by "root", :at 1517671935159, :text "{}", :id "BJDbILQLz"} - "j" { - :type :expr, :by "root", :at 1517671935439, :id "BkmwbI8XIz" - :data { - "T" {:type :leaf, :by "root", :at 1517671938384, :text ":border", :id "BkfwZ8Um8f"} - "j" { - :type :expr, :by "root", :at 1517671940230, :id "HJhbI8mUG" - :data { - "T" {:type :leaf, :by "root", :at 1517671941262, :text "str", :id "rJBcW88QLM"} - "j" {:type :leaf, :by "root", :at 1517671944840, :text "|1px solid ", :id "HyCWLIXLz"} - "r" { - :type :expr, :by "root", :at 1517671946283, :id "B1lGGILXLz" - :data { - "T" {:type :leaf, :by "root", :at 1517671946674, :text "hsl", :id "Byfz8Lm8z"} - "j" {:type :leaf, :by "root", :at 1517671947313, :text "0", :id "Hkb7z8I7LG"} - "r" {:type :leaf, :by "root", :at 1517671947495, :text "0", :id "HJ77G8L7If"} - "v" {:type :leaf, :by "root", :at 1517671947826, :text "80", :id "r1EfII7UG"} - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517671952390, :id "SyZOGLU78M" - :data { - "T" {:type :leaf, :by "root", :at 1517671955506, :text ":padding", :id "SyZOGLU78Mleaf"} - "j" {:type :leaf, :by "root", :at 1517671955733, :text "8", :id "r12MLIm8z"} - } - } - } - } - } - } - } - } - "n" { - :type :expr, :by "root", :at 1517672134932, :id "rkk0U878f" - :data { - "D" {:type :leaf, :by "root", :at 1517672136984, :text "div", :id "BJxx0UI78f"} - "L" { - :type :expr, :by "root", :at 1517672137267, :id "SkQ-RLUmUM" - :data { - "T" {:type :leaf, :by "root", :at 1517672138677, :text "{}", :id "H1fZAL8mLf"} - } - } - "T" { - :type :expr, :by "root", :at 1517671916558, :id "HJSe8IX8f" - :data { - "T" {:type :leaf, :by "root", :at 1517671918349, :text "<>", :id "HJSe8IX8fleaf"} - "j" { - :type :expr, :by "root", :at 1517671918676, :id "rJgDeULmIz" - :data { - "T" {:type :leaf, :by "root", :at 1517671919571, :text ":type", :id "rJwlU8m8f"} - "j" {:type :leaf, :by "root", :at 1517671921860, :text "chunk", :id "r1KlU8XUz"} - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517671889695, :id "HJcAr8QLG" - :data { - "T" {:type :leaf, :by "root", :at 1517671900818, :text "pre", :id "HJcAr8QLGleaf"} - "j" { - :type :expr, :by "root", :at 1517671901860, :id "Skg8J8IXUM" - :data { - "T" {:type :leaf, :by "root", :at 1517671903922, :text "{}", :id "BkL1LLXIf"} - "b" { - :type :expr, :by "root", :at 1517671960831, :id "ByZQI87IG" - :data { - "T" {:type :leaf, :by "root", :at 1517671961724, :text ":style", :id "ByZQI87IGleaf"} - "j" { - :type :expr, :by "root", :at 1517671961969, :id "HyMGmL8XIz" - :data { - "T" {:type :leaf, :by "root", :at 1517671962898, :text "{}", :id "rkZMmIUXUz"} - "j" { - :type :expr, :by "root", :at 1517671963095, :id "r1XXQL8QUG" - :data { - "T" {:type :leaf, :by "root", :at 1517671966153, :text ":line-height", :id "SkGXm8UXUM"} - "j" {:type :leaf, :by "root", :at 1517671966859, :text "1.4", :id "S1rL78U7Iz"} - } - } - "r" { - :type :expr, :by "root", :at 1517671967670, :id "B1_mII78f" - :data { - "T" {:type :leaf, :by "root", :at 1517671969784, :text ":font-size", :id "B1_mII78fleaf"} - "j" {:type :leaf, :by "root", :at 1517671970177, :text "12", :id "S1GqXUIm8f"} - } - } - "v" { - :type :expr, :by "root", :at 1517671986078, :id "Hkg54IU78M" - :data { - "T" {:type :leaf, :by "root", :at 1517671999353, :text ":margin-top", :id "Hkg54IU78Mleaf"} - "j" {:type :leaf, :by "root", :at 1517671990810, :text "0", :id "r1WTVI8XIz"} - } - } - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517671904204, :id "S1zOkI87LM" - :data { - "T" {:type :leaf, :by "root", :at 1517671907717, :text ":inner-text", :id "r1WOkLIXUM"} - "j" { - :type :expr, :by "root", :at 1517671909902, :id "rk0y8Im8G" - :data { - "T" {:type :leaf, :by "root", :at 1517671910554, :text ":data", :id "ryg2yLIX8G"} - "j" {:type :leaf, :by "root", :at 1517671914528, :text "chunk", :id "rJeeIImIz"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517671589913, :id "SkQRsE8X8z" - :data {} - } - } - "app.comp.profile" { - :ns { - :type :expr, :id "ByC9-5Lee0rW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk1s-qLxlAH-", :text "ns", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ryljZqUglCrZ", :text "app.comp.profile", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HkCj-9IxgABb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyknZqIgxCBW", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "Bkx3W5LxeRHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkWhZ9Lgg0HZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ryz2-98ggCrW", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "H1X3W58egRrZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "BJVhZcUelRrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJHhWqLleAS-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Sk8h-5LgxRBW", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "Byw3Z9IexAB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1OhbcUeg0SW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1F2b98glCBb", :text "app.schema", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "rJq3Zc8xxCBb", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "HyjhZ9UeeRrb", :text "schema", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "HJ33Z9Ill0rW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bkp3ZcLxeABW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1R2Z58eeCBZ", :text "respo-ui.core", :by "root", :at 1516547419785} - "r" {:type :leaf, :id "HyyaWqUee0rZ", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "SklpZqLgg0HZ", :text "ui", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "H1-abcIllRSb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Syz6b9Uxg0SZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1QpZ98egCB-", :text "respo-ui.colors", :by "root", :at 1516547421136} - "r" {:type :leaf, :id "ByV6ZcUel0S-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "ByrpZcLxgASW", :text "colors", :by "root", :at 1500541010211} - } - } - "y" { - :type :expr, :id "HyxIgc3JG", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkNib9LxeAH-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJHi-5UxxCSZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "B1LsWcIeeArW", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HkvjWqUlgRS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkuiZ5Lgl0BZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1FjW9UegCSW", :text "defcomp", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "ryqiZqUel0B-", :text "<>", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "SkooW9UgxRrb", :text "span", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "HJ2obqIlgCB-", :text "div", :by "root", :at 1500541010211} - "y" {:type :leaf, :id "HyaiWqIgxCrZ", :text "a", :by "root", :at 1500541010211} - } - } - } - } - "yT" { - :type :expr, :id "ryTT-cLgxABZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1RTZ9Uxl0Sb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJJRW5UegRrW", :text "respo.comp.space", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "H1gAZc8llRrW", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "Hy-0b58xxCrW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryMAZ58eeCH-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1XCWcIxlRS-", :text "=<", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - :defs { - "comp-profile" { - :type :expr, :id "HJHJG58xgASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyIkf9Uxx0Bb", :text "defcomp", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1vkzqLgl0H-", :text "comp-profile", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "rkOyMqUexRSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1KyfcUggCrb", :text "user", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "r19kz5Uxx0B-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyskGcUlxRSb", :text "div", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HJn1fqUgxABb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Skpkzc8xgAH-", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "Bk0yG5IleRHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkJeG5UxlASW", :text ":style", :by "root", :at 1500541010211} - "j" { - :type :expr, :by "root", :at 1517842751037, :id "HJgPBZxU8f" - :data { - "D" {:type :leaf, :by "root", :at 1517842752757, :text "merge", :id "ry-PBWe8UG"} - "T" {:type :leaf, :id "HyleG58xgCBb", :text "ui/flex", :by "root", :at 1500541010211} - "j" { - :type :expr, :by "root", :at 1517842753487, :id "SkQtrWxUUf" - :data { - "T" {:type :leaf, :by "root", :at 1517842755309, :text "{}", :id "H1ztH-eIIf"} - "j" { - :type :expr, :by "root", :at 1517842757404, :id "HJHprWx88f" - :data { - "T" {:type :leaf, :by "root", :at 1517842757202, :text ":padding", :id "Sk-jSZl88M"} - "j" {:type :leaf, :by "root", :at 1517842761313, :text "|8px 16px", :id "SkASWeU8G"} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :id "r1bxMcIleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkflGc8leCHW", :text "<>", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ryXlM98xl0Bb", :text "span", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "Hk4xfc8ex0BZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Syrxf9Uex0S-", :text "str", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Bk8ef9UggCH-", :text "|Hello! ", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "SyvgGc8ge0Hb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkdlMqIleCBZ", :text ":name", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ryteG9Lgg0Bb", :text "user", :by "root", :at 1500541010211} - } - } - } - } - "v" {:type :leaf, :id "rJqxM98lg0Hb", :text "nil", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "BkseG9Lxx0SW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkhlz5IglRr-", :text "=<", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1alzq8lx0rZ", :text "8", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "rkAefcIlgRrZ", :text "nil", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "SyJ-M5IggAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1gbfqIgl0Sb", :text "a", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HyWWz9UeeArW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkMWGqUxlRHb", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SkmbM98xl0SZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1NbM9UllABW", :text ":style", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1r-f9IeeRr-", :text "style-trigger", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "B1edqskgQf", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1i-McLxeArW", :text ":on-click", :by "root", :at 1514302350497} - "j" {:type :leaf, :id "Bk2bfcIeeRSb", :text "on-log-out", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "Hy6bM58lg0r-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyC-MqUgeRHW", :text "<>", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkJGz58eeAHW", :text "span", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BylzzcUllAHZ", :text "|Log out", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "B1ZzfqUegRSZ", :text "nil", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - "on-log-out" { - :type :expr, :id "HyBRZcUgxCrb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkICb9UgeRSb", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Skw0Z9Lge0SW", :text "on-log-out", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "HJ_C-q8llCSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkK0W98geAHb", :text "e", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "By5CZ5Uxx0BZ", :text "dispatch!", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "Sks0Z9Ulg0rW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkhRb5LllArW", :text "dispatch!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJaAW9UelCHb", :text ":user/log-out", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SyARWqLegRrW", :text "nil", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "HkJJfc8glCHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJlJGqIggAHb", :text ".removeItem", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkWyM9Uxx0BZ", :text "js/localStorage", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "BJGJG5UxgCBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SymJG5IelASb", :text ":storage-key", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HyNJG5LegRrb", :text "schema/configs", :by "root", :at 1500541010211} - } - } - } - } - } - } - "style-trigger" { - :type :expr, :id "B1GGMcLxgAHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BkXMzcIgeRBW", :text "def", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkNMGqUlxRS-", :text "style-trigger", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "rkBMzcLeeRSb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryUMfc8xx0rb", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BkDfG9UexCB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1OMfcIgxRB-", :text ":font-size", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rytMGqUllRr-", :text "14", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "ByqzG98xg0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJszMcUgg0SW", :text ":cursor", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJhzMqLgg0BW", :text ":pointer", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "rJpGM9IlxCrb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry0GzcLle0B-", :text ":background-color", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rykQGqUelArZ", :text "colors/motif-light", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "r1gQzc8xe0SZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkbQfq8geCBb", :text ":color", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1fmf5IgxRr-", :text ":white", :by "root", :at 1500541010211} - } - } - "y" { - :type :expr, :id "B17XGqLegAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1V7f5IxeCSW", :text ":padding", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJHQMc8geRBb", :text "|0 8px", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - :proc { - :type :expr, :id "rJ4RbcUxeCBZ", :by nil, :at 1500541010211 - :data {} - } - } - "app.comp.reel" { - :ns { - :type :expr, :id "Bkl3FQ7a3W", :by "root", :at 1507828612052 - :data { - "T" {:type :leaf, :text "ns", :id "B1bnKQ763Z", :by "root", :at 1507828612052} - "j" {:type :leaf, :text "app.comp.reel", :id "ByG2tQQa2Z", :by "root", :at 1507828612052} - "v" { - :type :expr, :id "S1HVf5UxlRHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547434475} - "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "rJXHzqUxxRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S14rzqLgg0B-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1rHfcUggCr-", :text "respo-ui.colors", :by "root", :at 1516547432521} - "r" {:type :leaf, :id "ByUBz9LleASb", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "BkwSMqLglCBZ", :text "colors", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "rJyPgqhJM", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} - "w" {:type :leaf, :text "button", :id "SJkM4X63-", :by "root", :at 1507828743963} - "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} - } - } - } - } - "y" { - :type :expr, :id "BJDMV7T3b", :by "root", :at 1507828750778 - :data { - "T" {:type :leaf, :text "[]", :id "BJDMV7T3bleaf", :by "root", :at 1507828751150} - "j" {:type :leaf, :text "respo.comp.space", :id "BkMDMNmT2-", :by "root", :at 1507828759087} - "r" {:type :leaf, :text ":refer", :id "HyQyXVmp2Z", :by "root", :at 1507828759839} - "v" { - :type :expr, :id "BymgX4Q63-", :by "root", :at 1507828760096 - :data { - "T" {:type :leaf, :text "[]", :id "SkfxmEQp2b", :by "root", :at 1507828761062} - "j" {:type :leaf, :text "=<", :id "HJZZX47T2-", :by "root", :at 1507828761860} - } - } - } - } - } - } - } - } - :defs { - "comp-reel" { - :type :expr, :id "Bklx97QThZ", :by "root", :at 1507828615828 - :data { - "T" {:type :leaf, :text "defcomp", :id "ByZg5mmpn-", :by "root", :at 1507828638117} - "j" {:type :leaf, :text "comp-reel", :id "BkzxqXma2b", :by "root", :at 1507828615828} - "r" { - :type :expr, :id "HyXl9XXa2W", :by "root", :at 1507828615828 - :data { - "T" {:type :leaf, :text "count", :id "Bkevjm7ahb", :by "root", :at 1507828641358} - "j" {:type :leaf, :text "addional-styles", :id "SyxAH4m6hZ", :by "root", :at 1507828806687} - } - } - "v" { - :type :expr, :id "rkgcjQm6hW", :by "root", :at 1507828642014 - :data { - "T" {:type :leaf, :text "div", :id "rkgcjQm6hWleaf", :by "root", :at 1507828644047} - "j" { - :type :expr, :id "B1m3oXXpnb", :by "root", :at 1507828644307 - :data { - "T" {:type :leaf, :text "{}", :id "rJz2sm76hb", :by "root", :at 1507828645447} - "j" { - :type :expr, :id "rJh4E76hW", :by "root", :at 1507828787656 - :data { - "T" {:type :leaf, :text ":style", :id "HyxiEV7T2-", :by "root", :at 1507828788612} - "j" { - :type :expr, :id "BkxR44Xa3b", :by "root", :at 1507828790325 - :data { - "T" {:type :leaf, :text "merge", :id "B1xaE4mpn-", :by "root", :at 1507828791173} - "j" { - :type :expr, :id "ByzSEQTnW", :by "root", :at 1507828794124 - :data { - "T" {:type :leaf, :text "{}", :id "S1gSEXTn-", :by "root", :at 1507828794453} - "j" { - :type :expr, :id "rJl7SEQpn-", :by "root", :at 1507828794919 - :data { - "T" {:type :leaf, :text ":padding", :id "H1QrEQp2W", :by "root", :at 1507828796652} - "j" {:type :leaf, :text "8", :id "B1bHrE7ph-", :by "root", :at 1507828798787} - } - } - "r" { - :type :expr, :id "SyxkvNQ6h-", :by "root", :at 1507828823179 - :data { - "T" {:type :leaf, :text ":position", :id "SyxkvNQ6h-leaf", :by "root", :at 1507828826081} - "j" {:type :leaf, :text ":absolute", :id "H17w4QpnZ", :by "root", :at 1507828828058} - } - } - "v" { - :type :expr, :id "HkSEP4m63W", :by "root", :at 1507828828452 - :data { - "T" {:type :leaf, :text ":bottom", :id "HkSEP4m63Wleaf", :by "root", :at 1507828829763} - "j" {:type :leaf, :text "8", :id "rJvDVXT2b", :by "root", :at 1507828830754} - } - } - "x" { - :type :expr, :id "H1g_DNmT3W", :by "root", :at 1507828832222 - :data { - "T" {:type :leaf, :text ":right", :id "H1g_DNmT3Wleaf", :by "root", :at 1507828836248} - "j" {:type :leaf, :text "8", :id "Hkfnw4mp2W", :by "root", :at 1507828836603} - } - } - "y" { - :type :expr, :id "rkVzjQ6nZ", :by "root", :at 1507830539553 - :data { - "T" {:type :leaf, :text ":font-size", :id "rkVzjQ6nZleaf", :by "root", :at 1507830540932} - "j" {:type :leaf, :text "12", :id "r1QHzjmp3-", :by "root", :at 1507830541576} - } - } - "yT" { - :type :expr, :id "Hkhfo7p2-", :by "root", :at 1507830547659 - :data { - "T" {:type :leaf, :text ":color", :id "Hkhfo7p2-leaf", :by "root", :at 1507830548620} - "j" { - :type :expr, :id "SJWTMj7T2Z", :by "root", :at 1507830548948 - :data { - "T" {:type :leaf, :text "hsl", :id "S1xpMoQT2W", :by "root", :at 1507830549886} - "j" {:type :leaf, :text "0", :id "BkzRzimanb", :by "root", :at 1507830551482} - "r" {:type :leaf, :text "0", :id "r1lXoXThb", :by "root", :at 1507830551738} - "v" {:type :leaf, :text "60", :id "HJZxmima3Z", :by "root", :at 1507830554684} - } - } - } - } - } - } - "r" {:type :leaf, :text "addional-styles", :id "SyxnLEmphW", :by "root", :at 1507828820509} - } - } - } - } - } - } - "r" { - :type :expr, :id "Hke0sXXahZ", :by "root", :at 1507828646137 - :data { - "T" {:type :leaf, :text "<>", :id "Hke0sXXahZleaf", :by "root", :at 1507828647130} - "j" {:type :leaf, :text "span", :id "rJ-Jhm7p2b", :by "root", :at 1507828648385} - "r" { - :type :expr, :id "Syg1jQp2-", :by "root", :at 1507830487639 - :data { - "D" {:type :leaf, :text "str", :id "rygxkjQTh-", :by "root", :at 1507830489506} - "L" {:type :leaf, :text "|Length:", :id "B1MJsXa2Z", :by "root", :at 1507830563403} - "T" {:type :leaf, :text "count", :id "rJ-2mQp2b", :by "root", :at 1507828650527} - } - } - "v" {:type :leaf, :text "nil", :id "S1xQ3XQThW", :by "root", :at 1507828651981} - } - } - "v" { - :type :expr, :id "rkS3QQpnZ", :by "root", :at 1507828652616 - :data { - "T" {:type :leaf, :text "=<", :id "rkS3QQpnZleaf", :by "root", :at 1507828654134} - "j" {:type :leaf, :text "8", :id "ryWU277ahb", :by "root", :at 1507828656265} - "r" {:type :leaf, :text "nil", :id "SJ-d2Q7p3b", :by "root", :at 1507828656797} - } - } - "x" { - :type :expr, :id "B19hX76hW", :by "root", :at 1507828657608 - :data { - "T" {:type :leaf, :text "span", :id "B19hX76hWleaf", :by "root", :at 1507830450172} - "j" { - :type :expr, :id "ByQhn77a3Z", :by "root", :at 1507828660058 - :data { - "T" {:type :leaf, :text "{}", :id "H1z327Qph-", :by "root", :at 1507828660406} - "j" { - :type :expr, :id "ByxpnmQa2-", :by "root", :at 1507828660655 - :data { - "T" {:type :leaf, :text ":inner-text", :id "BJpnQX6nb", :by "root", :at 1507828662301} - "j" {:type :leaf, :text "|Reset", :id "HkVCnX7T2Z", :by "root", :at 1507828665664} - } - } - "n" { - :type :expr, :id "HyxnXN763W", :by "root", :at 1507828771973 - :data { - "T" {:type :leaf, :text ":style", :id "HyxnXN763Wleaf", :by "root", :at 1507828774891} - "j" {:type :leaf, :text "style-click", :id "S1O4C9XT2-", :by "root", :at 1507830476140} - } - } - "r" { - :type :expr, :id "H1QTXXanZ", :by "root", :at 1507828666635 - :data { - "T" {:type :leaf, :text ":on", :id "H1QTXXanZleaf", :by "root", :at 1507828667298} - "j" { - :type :expr, :id "rJx4a7Qa3W", :by "root", :at 1507828668492 - :data { - "T" {:type :leaf, :text "{}", :id "B1VTQXah-", :by "root", :at 1507828669523} - "j" { - :type :expr, :id "HkWUpQ76hW", :by "root", :at 1507828670352 - :data { - "T" {:type :leaf, :text ":click", :id "ryeLp7m6hW", :by "root", :at 1507828671772} - "j" { - :type :expr, :id "HyVdTQmanW", :by "root", :at 1507828672178 - :data { - "T" {:type :leaf, :text "fn", :id "SymOamm62Z", :by "root", :at 1507828672472} - "j" { - :type :expr, :id "rkeF6mQTnb", :by "root", :at 1507828673101 - :data { - "T" {:type :leaf, :text "e", :id "B1tpQQT2W", :by "root", :at 1507828673612} - "j" {:type :leaf, :text "d!", :id "H1g9T7Q63Z", :by "root", :at 1507828674547} - "r" {:type :leaf, :text "m!", :id "BygoaX763-", :by "root", :at 1507828675326} - } - } - "r" { - :type :expr, :id "HygnamXpnb", :by "root", :at 1507828675771 - :data { - "T" {:type :leaf, :text "d!", :id "HygnamXpnbleaf", :by "root", :at 1507828676567} - "j" {:type :leaf, :text ":reel/reset", :id "rklppQQpn-", :by "root", :at 1507828680117} - "r" {:type :leaf, :text "nil", :id "r14l0m7ph-", :by "root", :at 1507828680980} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "xT" { - :type :expr, :id "B1go07QThW", :by "root", :at 1507828690995 - :data { - "T" {:type :leaf, :text "=<", :id "B1go07QThWleaf", :by "root", :at 1507828691717} - "j" {:type :leaf, :text "8", :id "Syg2AXmT2-", :by "root", :at 1507828692530} - "r" {:type :leaf, :text "nil", :id "Byl6CXXahZ", :by "root", :at 1507828693029} - } - } - "y" { - :type :expr, :id "Syxm07XpnZ", :by "root", :at 1507828657608 - :data { - "T" {:type :leaf, :text "span", :id "B19hX76hWleaf", :by "root", :at 1507830455176} - "j" { - :type :expr, :id "ByQhn77a3Z", :by "root", :at 1507828660058 - :data { - "T" {:type :leaf, :text "{}", :id "H1z327Qph-", :by "root", :at 1507828660406} - "j" { - :type :expr, :id "ByxpnmQa2-", :by "root", :at 1507828660655 - :data { - "T" {:type :leaf, :text ":inner-text", :id "BJpnQX6nb", :by "root", :at 1507828662301} - "j" {:type :leaf, :text "|Merge", :id "HkVCnX7T2Z", :by "root", :at 1507828686464} - } - } - "n" { - :type :expr, :id "B1SN4mp2b", :by "root", :at 1507828771973 - :data { - "T" {:type :leaf, :text ":style", :id "HyxnXN763Wleaf", :by "root", :at 1507828774891} - "j" {:type :leaf, :text "style-click", :id "S1f14EX6hZ", :by "root", :at 1507830481223} - } - } - "r" { - :type :expr, :id "H1QTXXanZ", :by "root", :at 1507828666635 - :data { - "T" {:type :leaf, :text ":on", :id "H1QTXXanZleaf", :by "root", :at 1507828667298} - "j" { - :type :expr, :id "rJx4a7Qa3W", :by "root", :at 1507828668492 - :data { - "T" {:type :leaf, :text "{}", :id "B1VTQXah-", :by "root", :at 1507828669523} - "j" { - :type :expr, :id "HkWUpQ76hW", :by "root", :at 1507828670352 - :data { - "T" {:type :leaf, :text ":click", :id "ryeLp7m6hW", :by "root", :at 1507828671772} - "j" { - :type :expr, :id "HyVdTQmanW", :by "root", :at 1507828672178 - :data { - "T" {:type :leaf, :text "fn", :id "SymOamm62Z", :by "root", :at 1507828672472} - "j" { - :type :expr, :id "rkeF6mQTnb", :by "root", :at 1507828673101 - :data { - "T" {:type :leaf, :text "e", :id "B1tpQQT2W", :by "root", :at 1507828673612} - "j" {:type :leaf, :text "d!", :id "H1g9T7Q63Z", :by "root", :at 1507828674547} - "r" {:type :leaf, :text "m!", :id "BygoaX763-", :by "root", :at 1507828675326} - } - } - "r" { - :type :expr, :id "HygnamXpnb", :by "root", :at 1507828675771 - :data { - "T" {:type :leaf, :text "d!", :id "HygnamXpnbleaf", :by "root", :at 1507828676567} - "j" {:type :leaf, :text ":reel/merge", :id "rklppQQpn-", :by "root", :at 1507828689327} - "r" {:type :leaf, :text "nil", :id "r14l0m7ph-", :by "root", :at 1507828680980} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "style-click" { - :type :expr, :id "r1gE05762-", :by "root", :at 1507830476140 - :data { - "T" {:type :leaf, :text "def", :id "BybEAq762b", :by "root", :at 1507830476140} - "j" {:type :leaf, :text "style-click", :id "SkfN05mp2Z", :by "root", :at 1507830476140} - "r" { - :type :expr, :id "rkQ4R5XT3b", :by "root", :at 1507830476140 - :data { - "T" {:type :leaf, :text "{}", :id "HyVNA9Q63b", :by "root", :at 1507830476140} - "j" { - :type :expr, :id "HJrNCcXan-", :by "root", :at 1507830476140 - :data { - "T" {:type :leaf, :text ":cursor", :id "HkIE0qQp3-", :by "root", :at 1507830476140} - "j" {:type :leaf, :text ":pointer", :id "ryPVCc7p3W", :by "root", :at 1507830476140} - } - } - "r" { - :type :expr, :id "B1x1loQpnW", :by "root", :at 1507830503241 - :data { - "T" {:type :leaf, :text ":color", :id "B1x1loQpnWleaf", :by "root", :at 1507830504703} - "j" { - :type :expr, :id "Bkz-xi7T2W", :by "root", :at 1507830505262 - :data { - "T" {:type :leaf, :text "hsl", :id "Bybbli7anZ", :by "root", :at 1507830505953} - "j" {:type :leaf, :text "200", :id "HkzMgjQT2-", :by "root", :at 1507830508223} - "r" {:type :leaf, :text "80", :id "SJZVeima3b", :by "root", :at 1507830508713} - "v" {:type :leaf, :text "80", :id "Bk-HljQahZ", :by "root", :at 1507830514472} - } - } - } - } - "v" { - :type :expr, :id "rJbixo7T3W", :by "root", :at 1507830515446 - :data { - "T" {:type :leaf, :text ":font-size", :id "rJbixo7T3Wleaf", :by "root", :at 1507830517136} - "j" {:type :leaf, :text ":12", :id "SJmpxiXT2W", :by "root", :at 1507830534305} - } - } - "x" { - :type :expr, :id "rJbZbjXa3-", :by "root", :at 1507830521076 - :data { - "T" {:type :leaf, :text ":text-decoration", :id "rJbZbjXa3-leaf", :by "root", :at 1507830524822} - "j" {:type :leaf, :text ":underline", :id "rkMrbjm6hZ", :by "root", :at 1507830529129} - } - } - } - } - } - } - } - :proc { - :type :expr, :id "H172KQ7T3-", :by "root", :at 1507828612052 - :data {} - } - } - "app.comp.workflow" { - :ns { - :type :expr, :by "root", :at 1517233251072, :id "BJxsvNo2HM" - :data { - "T" {:type :leaf, :by "root", :at 1517233251072, :text "ns", :id "SkWsPEo2SG"} - "j" {:type :leaf, :by "root", :at 1517233251072, :text "app.comp.workflow", :id "HkzovVs2Bz"} - "r" { - :type :expr, :id "SyVc4i3Bz", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547394445} - "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "rJXHzqUxxRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S14rzqLgg0B-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1rHfcUggCr-", :text "respo-ui.colors", :by "root", :at 1516547392332} - "r" {:type :leaf, :id "ByUBz9LleASb", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "BkwSMqLglCBZ", :text "colors", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "SkVQg5h1z", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} - "t" {:type :leaf, :by "root", :at 1517200690109, :text "action->", :id "rJeuVSmhSz"} - "tD" {:type :leaf, :by "root", :at 1517325980477, :text "cursor->", :id "BJyi0bArf"} - "tT" {:type :leaf, :by "root", :at 1517237048425, :text "mutation->", :id "SkeANm33Bf"} - "u" {:type :leaf, :by "root", :at 1517236826520, :text "list->", :id "rJx-PGh2rz"} - "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} - "y" {:type :leaf, :by "root", :at 1517236896579, :text "input", :id "r1eOof33rz"} - "yT" {:type :leaf, :by "root", :at 1517292350720, :text "button", :id "BJgLriKpSG"} - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517200808252, :id "SJeehS72SM" - :data { - "T" {:type :leaf, :by "root", :at 1517200808677, :text "[]", :id "SJeehS72SMleaf"} - "j" {:type :leaf, :by "root", :at 1517200811145, :text "respo.comp.space", :id "By-Z2H73HM"} - "r" {:type :leaf, :by "root", :at 1517200812912, :text ":refer", :id "rJSX3H72Hf"} - "v" { - :type :expr, :by "root", :at 1517200813134, :id "HkrB2HXnrf" - :data { - "T" {:type :leaf, :by "root", :at 1517200813286, :text "[]", :id "HkEBhBX3Sz"} - "j" {:type :leaf, :by "root", :at 1517200815416, :text "=<", :id "S1_H3S7nSG"} - } - } - } - } - "yT" { - :type :expr, :by "root", :at 1517237103251, :id "r1evdQhhBG" - :data { - "T" {:type :leaf, :by "root", :at 1517237103625, :text "[]", :id "r1evdQhhBGleaf"} - "j" {:type :leaf, :by "root", :at 1517237113612, :text "clojure.string", :id "SJWdO732rG"} - "r" {:type :leaf, :by "root", :at 1517237114194, :text ":as", :id "rkgGFXnnHz"} - "v" {:type :leaf, :by "root", :at 1517237115133, :text "string", :id "By4fKX3hHf"} - } - } - "yr" { - :type :expr, :by "root", :at 1517292335307, :id "H1xwEsFTHz" - :data { - "T" {:type :leaf, :by "root", :at 1517292336458, :text "[]", :id "H1xwEsFTHzleaf"} - "j" {:type :leaf, :by "root", :at 1517292337857, :text "app.style", :id "rytVjFaHM"} - "r" {:type :leaf, :by "root", :at 1517292338526, :text ":as", :id "S1W5NjKarz"} - "v" {:type :leaf, :by "root", :at 1517292339900, :text "style", :id "rklsEjtaSG"} - } - } - "yv" { - :type :expr, :by "root", :at 1517292532816, :id "ryxpehFTSM" - :data { - "T" {:type :leaf, :by "root", :at 1517292534677, :text "[]", :id "ryxpehFTSMleaf"} - "j" {:type :leaf, :by "root", :at 1517292537672, :text "app.comp.dialog", :id "Hy-kZ3YpBG"} - "r" {:type :leaf, :by "root", :at 1517292538569, :text ":refer", :id "rJeGW3taBM"} - "v" { - :type :expr, :by "root", :at 1517292539592, :id "BJNZ2YprM" - :data { - "T" {:type :leaf, :by "root", :at 1517292539808, :text "[]", :id "SJe7-nKaSM"} - "j" {:type :leaf, :by "root", :at 1517292542046, :text "comp-dialog", :id "Bkf4-3tTHM"} - } - } - } - } - "yx" { - :type :expr, :by "root", :at 1517585085675, :id "ByITfZzIG" - :data { - "T" {:type :leaf, :by "root", :at 1517585086437, :text "[]", :id "ByITfZzIGleaf"} - "j" {:type :leaf, :by "root", :at 1517585088175, :text "app.util", :id "SyD6GZG8z"} - "r" {:type :leaf, :by "root", :at 1517585089265, :text ":refer", :id "rk7u6Mbf8z"} - "v" { - :type :expr, :by "root", :at 1517585089636, :id "Sy56fZzLz" - :data { - "T" {:type :leaf, :by "root", :at 1517585089816, :text "[]", :id "HkBK6zWMIM"} - "j" {:type :leaf, :by "root", :at 1517585091205, :text "map-val", :id "rJG5pfZz8M"} - } - } - } - } - } - } - } - } - :defs { - "comp-command-editor" { - :type :expr, :by "root", :at 1517327396590, :id "SJlaQNfAHM" - :data { - "T" {:type :leaf, :by "root", :at 1517327398470, :text "defcomp", :id "HkbTm4MRSG"} - "j" {:type :leaf, :by "root", :at 1517327396590, :text "comp-command-editor", :id "rJzaQNz0Sf"} - "r" { - :type :expr, :by "root", :at 1517327396590, :id "SkmT7VMRSM" - :data { - "T" {:type :leaf, :by "root", :at 1517327401283, :text "states", :id "Sk-JV4GCHz"} - "j" {:type :leaf, :by "root", :at 1517327404155, :text "on-close!", :id "rJGVNf0Bf"} - "r" {:type :leaf, :by "root", :at 1517327639392, :text "workflow-id", :id "SJe1XrfRSf"} - "v" {:type :leaf, :by "root", :at 1517414003781, :text "base-command", :id "SJxYuLPy8G"} - } - } - "v" { - :type :expr, :by "root", :at 1517327421423, :id "Sy-SrNM0BM" - :data { - "D" {:type :leaf, :by "root", :at 1517327422361, :text "let", :id "H18SVzArz"} - "L" { - :type :expr, :by "root", :at 1517327422658, :id "BJevrEM0SG" - :data { - "T" { - :type :expr, :by "root", :at 1517327422813, :id "HJWPBEzArM" - :data { - "T" {:type :leaf, :by "root", :at 1517327423445, :text "state", :id "HJDrNz0HM"} - "j" { - :type :expr, :by "root", :at 1517327423935, :id "BJeurEMRBM" - :data { - "T" {:type :leaf, :by "root", :at 1517327424498, :text "or", :id "r1_BEf0BG"} - "j" { - :type :expr, :by "root", :at 1517327425442, :id "BkWFBVGRSz" - :data { - "T" {:type :leaf, :by "root", :at 1517327426553, :text ":data", :id "rytSEGASM"} - "j" {:type :leaf, :by "root", :at 1517327427380, :text "states", :id "HyloHNzRSz"} - } - } - "r" { - :type :expr, :by "root", :at 1517414006155, :id "H1lCuLDJLG" - :data { - "D" {:type :leaf, :by "root", :at 1517414007241, :text "if", :id "BJb0OUw1Uz"} - "L" { - :type :expr, :by "root", :at 1517414007596, :id "S1gYLwJUM" - :data { - "T" {:type :leaf, :by "root", :at 1517414008873, :text "some?", :id "SyW1tIP1If"} - "j" {:type :leaf, :by "root", :at 1517414010781, :text "base-command", :id "HJxbYUvyUz"} - } - } - "P" { - :type :expr, :by "root", :at 1517414011418, :id "BJ7XKIP1IM" - :data { - "T" {:type :leaf, :by "root", :at 1517414013989, :text "select-keys", :id "BJ7XKIP1IMleaf"} - "j" {:type :leaf, :by "root", :at 1517414037715, :text "base-command", :id "Bkm8FUvJ8G"} - "r" { - :type :expr, :by "root", :at 1517414020471, :id "rk2KUv1Lf" - :data { - "T" {:type :leaf, :by "root", :at 1517414020729, :text "[]", :id "BJestLP1LM"} - "j" {:type :leaf, :by "root", :at 1517414021430, :text ":code", :id "HJZTtIDkLG"} - "r" {:type :leaf, :by "root", :at 1517414026067, :text ":path", :id "SJRt8D18z"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517327428292, :id "Hkb3HEz0Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517327428773, :text "{}", :id "SJl2BVGRrf"} - "j" { - :type :expr, :by "root", :at 1517327428988, :id "HyGarVGRHM" - :data { - "T" {:type :leaf, :by "root", :at 1517327473463, :text ":code", :id "rkWaB4zRSM"} - "j" {:type :leaf, :by "root", :at 1517327431205, :text "|", :id "HJ-yUEf0rM"} - } - } - "r" { - :type :expr, :by "root", :at 1517327431885, :id "S1lxUVG0Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517327433933, :text ":path", :id "S1lxUVG0Sfleaf"} - "j" {:type :leaf, :by "root", :at 1517674708173, :text "|./", :id "H1eMIVMCHf"} - } - } - } - } - } - } - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517327404612, :id "HkrE4GRBM" - :data { - "T" {:type :leaf, :by "root", :at 1517327405171, :text "div", :id "HkrE4GRBMleaf"} - "j" { - :type :expr, :by "root", :at 1517327405824, :id "BkL4EMRHM" - :data { - "T" {:type :leaf, :by "root", :at 1517327406685, :text "{}", :id "H1mrNEGASz"} - } - } - "n" { - :type :expr, :by "root", :at 1517413744996, :id "ryFuSvJUG" - :data { - "T" {:type :leaf, :by "root", :at 1517413746633, :text "div", :id "ryFuSvJUGleaf"} - "j" { - :type :expr, :by "root", :at 1517413746874, :id "SJWj_HDyLf" - :data { - "T" {:type :leaf, :by "root", :at 1517413747255, :text "{}", :id "SkgjOBP1UM"} - } - } - "r" { - :type :expr, :by "root", :at 1517413747717, :id "Hkx2dHDk8M" - :data { - "T" {:type :leaf, :by "root", :at 1517413749209, :text "<>", :id "Hkx2dHDk8Mleaf"} - "j" {:type :leaf, :by "root", :at 1517413754238, :text "|Command", :id "B10dBP1Lf"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517327444032, :id "H12I4zAHz" - :data { - "T" {:type :leaf, :by "root", :at 1517327445477, :text "div", :id "H12I4zAHzleaf"} - "j" { - :type :expr, :by "root", :at 1517327445666, :id "HklRINM0HM" - :data { - "T" {:type :leaf, :by "root", :at 1517327446010, :text "{}", :id "BJCIEz0Bf"} - } - } - "r" { - :type :expr, :by "root", :at 1517327446469, :id "H1ER8NfArf" - :data { - "T" {:type :leaf, :by "root", :at 1517327447254, :text "input", :id "H1ER8NfArfleaf"} - "j" { - :type :expr, :by "root", :at 1517327447563, :id "B1eDEzCrf" - :data { - "T" {:type :leaf, :by "root", :at 1517327447938, :text "{}", :id "SJVyvEfArM"} - "j" { - :type :expr, :by "root", :at 1517327449783, :id "HyzPVzRHM" - :data { - "T" {:type :leaf, :by "root", :at 1517327450524, :text ":style", :id "HkGev4MCBf"} - "j" { - :type :expr, :by "root", :at 1517413714418, :id "r1lqIBPJIG" - :data { - "D" {:type :leaf, :by "root", :at 1517413716133, :text "merge", :id "HkoIHwyIM"} - "T" {:type :leaf, :by "root", :at 1517327451875, :text "ui/input", :id "SJxQD4GRHf"} - "j" { - :type :expr, :by "root", :at 1517413716719, :id "r1e68HDyLf" - :data { - "T" {:type :leaf, :by "root", :at 1517413717060, :text "{}", :id "SkpUSwJLz"} - "j" { - :type :expr, :by "root", :at 1517415060670, :id "ry6ccvyIG" - :data { - "T" {:type :leaf, :by "root", :at 1517415063439, :text ":width", :id "Hklh95DJLG"} - "j" {:type :leaf, :by "root", :at 1517674694555, :text "320", :id "H1goqw1IG"} - } - } - "r" { - :type :expr, :by "root", :at 1517415076586, :id "ryao9DyUM" - :data { - "T" {:type :leaf, :by "root", :at 1517415083615, :text ":font-family", :id "rkl3j5vyUz"} - "j" {:type :leaf, :by "root", :at 1517415087429, :text "ui/font-code", :id "Bye4nqDy8f"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517327453514, :id "S1xHvNG0Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517327455838, :text ":value", :id "S1xHvNG0Hfleaf"} - "j" { - :type :expr, :by "root", :at 1517327457949, :id "H1g9DVfRSM" - :data { - "T" {:type :leaf, :by "root", :at 1517327515711, :text ":code", :id "rk7uP4MRSz"} - "j" {:type :leaf, :by "root", :at 1517327459271, :text "state", :id "rJeivNGRrf"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517327461760, :id "r1CvVGCrf" - :data { - "T" {:type :leaf, :by "root", :at 1517327464741, :text ":placeholder", :id "r1CvVGCrfleaf"} - "j" {:type :leaf, :by "root", :at 1517327471188, :text "|Command code", :id "ryG-u4f0Hf"} - } - } - "x" { - :type :expr, :by "root", :at 1517327477978, :id "HJxA_NzCBM" - :data { - "T" {:type :leaf, :by "root", :at 1517327481500, :text ":on-input", :id "HJxA_NzCBMleaf"} - "j" { - :type :expr, :by "root", :at 1517327482481, :id "HyeMKEzCSM" - :data { - "T" {:type :leaf, :by "root", :at 1517327485160, :text "mutation->", :id "ByzFEzRBM"} - "j" { - :type :expr, :by "root", :at 1517327485595, :id "HkIFEGCHz" - :data { - "T" {:type :leaf, :by "root", :at 1517327486758, :text "assoc", :id "rybStEzRBf"} - "j" {:type :leaf, :by "root", :at 1517327488469, :text "state", :id "Bk_FEf0Sz"} - "r" {:type :leaf, :by "root", :at 1517327489244, :text ":code", :id "SyFYVMCSz"} - "v" { - :type :expr, :by "root", :at 1517327489831, :id "Hk5YVM0HG" - :data { - "T" {:type :leaf, :by "root", :at 1517327490655, :text ":value", :id "S1rKYNGCrf"} - "j" {:type :leaf, :by "root", :at 1517327492135, :text "%e", :id "HJljYVf0rz"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "t" { - :type :expr, :by "root", :at 1517327499850, :id "H1lNcNf0rM" - :data { - "T" {:type :leaf, :by "root", :at 1517327500549, :text "=<", :id "H1lNcNf0rMleaf"} - "b" {:type :leaf, :by "root", :at 1517327503767, :text "nil", :id "rJPqNzRSM"} - "j" {:type :leaf, :by "root", :at 1517327501281, :text "16", :id "r1gS9Vz0Sz"} - } - } - "v" { - :type :expr, :by "root", :at 1517327444032, :id "ByGqEGArz" - :data { - "T" {:type :leaf, :by "root", :at 1517327445477, :text "div", :id "H12I4zAHzleaf"} - "j" { - :type :expr, :by "root", :at 1517327445666, :id "HklRINM0HM" - :data { - "T" {:type :leaf, :by "root", :at 1517327446010, :text "{}", :id "BJCIEz0Bf"} - } - } - "r" { - :type :expr, :by "root", :at 1517327446469, :id "H1ER8NfArf" - :data { - "T" {:type :leaf, :by "root", :at 1517327447254, :text "input", :id "H1ER8NfArfleaf"} - "j" { - :type :expr, :by "root", :at 1517327447563, :id "B1eDEzCrf" - :data { - "T" {:type :leaf, :by "root", :at 1517327447938, :text "{}", :id "SJVyvEfArM"} - "j" { - :type :expr, :by "root", :at 1517327449783, :id "HyzPVzRHM" - :data { - "T" {:type :leaf, :by "root", :at 1517327450524, :text ":style", :id "HkGev4MCBf"} - "j" { - :type :expr, :by "root", :at 1517413722708, :id "SyXDrP1Uf" - :data { - "D" {:type :leaf, :by "root", :at 1517413723954, :text "merge", :id "BkeXwrv18G"} - "T" {:type :leaf, :by "root", :at 1517327451875, :text "ui/input", :id "SJxQD4GRHf"} - "j" { - :type :expr, :by "root", :at 1517413724919, :id "BJerDHwJLz" - :data { - "T" {:type :leaf, :by "root", :at 1517413725317, :text "{}", :id "HJrvrDJ8M"} - "j" { - :type :expr, :by "root", :at 1517413728048, :id "rJWOvSwkIz" - :data { - "T" {:type :leaf, :by "root", :at 1517413727971, :text ":width", :id "Hk7BvrPy8G"} - "j" {:type :leaf, :by "root", :at 1517674696586, :text "320", :id "S1zdwBPk8G"} - } - } - "r" { - :type :expr, :by "root", :at 1517415076586, :id "ryj2cDkIG" - :data { - "T" {:type :leaf, :by "root", :at 1517415083615, :text ":font-family", :id "rkl3j5vyUz"} - "j" {:type :leaf, :by "root", :at 1517415087429, :text "ui/font-code", :id "Bye4nqDy8f"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517327453514, :id "S1xHvNG0Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517327455838, :text ":value", :id "S1xHvNG0Hfleaf"} - "j" { - :type :expr, :by "root", :at 1517327457949, :id "H1g9DVfRSM" - :data { - "T" {:type :leaf, :by "root", :at 1517327513777, :text ":path", :id "rk7uP4MRSz"} - "j" {:type :leaf, :by "root", :at 1517327459271, :text "state", :id "rJeivNGRrf"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517327461760, :id "r1CvVGCrf" - :data { - "T" {:type :leaf, :by "root", :at 1517327464741, :text ":placeholder", :id "r1CvVGCrfleaf"} - "j" {:type :leaf, :by "root", :at 1517327509239, :text "|Command path", :id "ryG-u4f0Hf"} - } - } - "x" { - :type :expr, :by "root", :at 1517327477978, :id "HJxA_NzCBM" - :data { - "T" {:type :leaf, :by "root", :at 1517327481500, :text ":on-input", :id "HJxA_NzCBMleaf"} - "j" { - :type :expr, :by "root", :at 1517327482481, :id "HyeMKEzCSM" - :data { - "T" {:type :leaf, :by "root", :at 1517327485160, :text "mutation->", :id "ByzFEzRBM"} - "j" { - :type :expr, :by "root", :at 1517327485595, :id "HkIFEGCHz" - :data { - "T" {:type :leaf, :by "root", :at 1517327486758, :text "assoc", :id "rybStEzRBf"} - "j" {:type :leaf, :by "root", :at 1517327488469, :text "state", :id "Bk_FEf0Sz"} - "r" {:type :leaf, :by "root", :at 1517327517491, :text ":path", :id "SyFYVMCSz"} - "v" { - :type :expr, :by "root", :at 1517327489831, :id "Hk5YVM0HG" - :data { - "T" {:type :leaf, :by "root", :at 1517327490655, :text ":value", :id "S1rKYNGCrf"} - "j" {:type :leaf, :by "root", :at 1517327492135, :text "%e", :id "HJljYVf0rz"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517327518939, :id "HkePjEfASM" - :data { - "T" {:type :leaf, :by "root", :at 1517327519807, :text "=<", :id "HkePjEfASMleaf"} - "j" {:type :leaf, :by "root", :at 1517327521164, :text "nil", :id "S1buoVzRSz"} - "r" {:type :leaf, :by "root", :at 1517327522012, :text "16", :id "rJ7tsVGCHf"} - } - } - "y" { - :type :expr, :by "root", :at 1517327522410, :id "BkMqiEGASG" - :data { - "T" {:type :leaf, :by "root", :at 1517327523010, :text "div", :id "BkMqiEGASGleaf"} - "j" { - :type :expr, :by "root", :at 1517327523212, :id "Sy7ij4M0Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517327523546, :text "{}", :id "BkGisEfRrf"} - "j" { - :type :expr, :by "root", :at 1517327523759, :id "H1-3sNf0SM" - :data { - "T" {:type :leaf, :by "root", :at 1517327524469, :text ":style", :id "ryx2s4GRSG"} - "j" {:type :leaf, :by "root", :at 1517327528544, :text "ui/row-parted", :id "HkTjNfCrG"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517327529673, :id "HJz2EfRrz" - :data { - "T" {:type :leaf, :by "root", :at 1517327530946, :text "span", :id "HJz2EfRrzleaf"} - "j" { - :type :expr, :by "root", :at 1517327531656, :id "SJVhEGRrf" - :data { - "T" {:type :leaf, :by "root", :at 1517327532042, :text "{}", :id "Sk7Qn4G0rz"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517327532946, :id "ryeSh4MRBG" - :data { - "T" {:type :leaf, :by "root", :at 1517327534919, :text "button", :id "ryeSh4MRBGleaf"} - "j" { - :type :expr, :by "root", :at 1517327535300, :id "ByEDn4GRBf" - :data { - "T" {:type :leaf, :by "root", :at 1517327535644, :text "{}", :id "HkQvhEM0rG"} - "j" { - :type :expr, :by "root", :at 1517327535845, :id "HJzu2NMRrf" - :data { - "T" {:type :leaf, :by "root", :at 1517327536576, :text ":style", :id "r1-Oh4f0Bz"} - "j" {:type :leaf, :by "root", :at 1517327539429, :text "style/button", :id "H1eYh4MRBM"} - } - } - "r" { - :type :expr, :by "root", :at 1517327546536, :id "rJma4zASM" - :data { - "T" {:type :leaf, :by "root", :at 1517327548925, :text ":on-click", :id "rJma4zASMleaf"} - "j" { - :type :expr, :by "root", :at 1517327549181, :id "BJBHaVfCrf" - :data { - "T" {:type :leaf, :by "root", :at 1517327549636, :text "fn", :id "ByNra4MArG"} - "j" { - :type :expr, :by "root", :at 1517327550429, :id "S1-UpVz0rG" - :data { - "T" {:type :leaf, :by "root", :at 1517327550789, :text "e", :id "HkgLp4GCBz"} - "j" {:type :leaf, :by "root", :at 1517327551612, :text "d!", :id "BJxPpEGCrf"} - "r" {:type :leaf, :by "root", :at 1517327552741, :text "m!", :id "ByxO6NfCSf"} - } - } - "r" { - :type :expr, :by "root", :at 1517414056936, :id "ry-3UvJLz" - :data { - "D" {:type :leaf, :by "root", :at 1517414057718, :text "if", :id "H1xb28vJUG"} - "L" { - :type :expr, :by "root", :at 1517414058451, :id "Syzf3UwkUf" - :data { - "T" {:type :leaf, :by "root", :at 1517414060053, :text "some?", :id "rJWf2LPJIM"} - "j" {:type :leaf, :by "root", :at 1517414061850, :text "base-command", :id "SyNN28DJLz"} - } - } - "P" { - :type :expr, :by "root", :at 1517414062552, :id "ryv2IDkLz" - :data { - "T" {:type :leaf, :by "root", :at 1517414063824, :text "d!", :id "ryv2IDkLzleaf"} - "j" {:type :leaf, :by "root", :at 1517414067545, :text ":workflow/edit-command", :id "SkWd2IP18f"} - "r" { - :type :expr, :by "root", :at 1517414068531, :id "BJan8vJ8G" - :data { - "T" {:type :leaf, :by "root", :at 1517414089837, :text "[]", :id "r1g22ID1LG"} - "j" {:type :leaf, :by "root", :at 1517414091577, :text "workflow-id", :id "ByGfRUwkUf"} - "r" { - :type :expr, :by "root", :at 1517414094255, :id "ryeLALwJLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414094864, :text ":id", :id "HyxNAUP1Uf"} - "j" {:type :leaf, :by "root", :at 1517414099117, :text "base-command", :id "B1bPR8wJ8G"} - } - } - "v" {:type :leaf, :by "root", :at 1517414102099, :text "state", :id "rJl2AUwk8f"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517327553136, :id "ryZtaEfRHz" - :data { - "T" {:type :leaf, :by "root", :at 1517327582766, :text "d!", :id "ryZtaEfRHzleaf"} - "j" {:type :leaf, :by "root", :at 1517327598816, :text ":workflow/add-command", :id "HklwkBMCrz"} - "r" { - :type :expr, :by "root", :at 1517327599757, :id "H1OlSM0Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517327600163, :text "{}", :id "SkeDlBMRrz"} - "b" { - :type :expr, :by "root", :at 1517327627500, :id "ryzXfrMRHG" - :data { - "T" {:type :leaf, :by "root", :at 1517327630058, :text ":workflow-id", :id "ryzXfrMRHGleaf"} - "j" {:type :leaf, :by "root", :at 1517327635555, :text "workflow-id", :id "ByOMrzArM"} - } - } - "j" { - :type :expr, :by "root", :at 1517327600427, :id "HyXdgBf0Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517327607183, :text ":code", :id "SyzuerGRBG"} - "j" { - :type :expr, :by "root", :at 1517327612255, :id "ryVZHMCBz" - :data { - "T" {:type :leaf, :by "root", :at 1517327613036, :text ":code", :id "r1XJbBzCSM"} - "j" {:type :leaf, :by "root", :at 1517327613614, :text "state", :id "BJQBWBzASz"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517327614526, :id "SJPZHGCSf" - :data { - "T" {:type :leaf, :by "root", :at 1517327618839, :text ":path", :id "SJPZHGCSfleaf"} - "j" { - :type :expr, :by "root", :at 1517327619217, :id "rkEjZrM0Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517327620603, :text ":path", :id "r1XobSMABG"} - "j" {:type :leaf, :by "root", :at 1517327622671, :text "state", :id "SkgpWHMABz"} - } - } - } - } - } - } - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517327567486, :id "r1eDR4MRBG" - :data { - "T" {:type :leaf, :by "root", :at 1517327568747, :text "m!", :id "r1eDR4MRBGleaf"} - "r" {:type :leaf, :by "root", :at 1517327571207, :text "nil", :id "S1jAEMRSG"} - } - } - "x" { - :type :expr, :by "root", :at 1517327572161, :id "B1e30NMAHf" - :data { - "T" {:type :leaf, :by "root", :at 1517327576107, :text "on-close!", :id "B1e30NMAHfleaf"} - "j" {:type :leaf, :by "root", :at 1517327577010, :text "m!", :id "r1elJBzRHG"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517327540620, :id "HkahEz0Hz" - :data { - "T" {:type :leaf, :by "root", :at 1517327541590, :text "<>", :id "HkahEz0Hzleaf"} - "j" {:type :leaf, :by "root", :at 1517327544277, :text "|add", :id "B1WAnVfCBG"} - } - } - } - } - } - } - } - } - } - } - } - } - "comp-workflow-container" { - :type :expr, :by "root", :at 1517233275856, :id "B1eEtVinBM" - :data { - "T" {:type :leaf, :by "root", :at 1517233278479, :text "defcomp", :id "S1b4K4jhBM"} - "j" {:type :leaf, :by "root", :at 1517233275856, :text "comp-workflow-container", :id "r1G4tVonBz"} - "r" { - :type :expr, :by "root", :at 1517233275856, :id "SJm4FNi2HM" - :data { - "D" {:type :leaf, :by "root", :at 1517236986322, :text "states", :id "H1elbX23Bf"} - "T" {:type :leaf, :by "root", :at 1517236567190, :text "workflows", :id "ryqcNohrz"} - } - } - "v" { - :type :expr, :by "root", :at 1517236990588, :id "ByDbQ3hBM" - :data { - "D" {:type :leaf, :by "root", :at 1517236991218, :text "let", :id "Bklv-XhnBz"} - "L" { - :type :expr, :by "root", :at 1517236991461, :id "r1Hw-Qh3HG" - :data { - "T" { - :type :expr, :by "root", :at 1517236991586, :id "S1dZ73hSG" - :data { - "T" {:type :leaf, :by "root", :at 1517236992354, :text "state", :id "rJVvWQ3hrz"} - "j" { - :type :expr, :by "root", :at 1517236997121, :id "HyeT-Xn2BM" - :data { - "D" {:type :leaf, :by "root", :at 1517236997659, :text "or", :id "Bybpbmh2Bf"} - "T" { - :type :expr, :by "root", :at 1517236993119, :id "rJgFZX33Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517236993757, :text ":data", :id "Syt-7hnrM"} - "j" {:type :leaf, :by "root", :at 1517236994604, :text "states", :id "HkfqZQh2Bf"} - } - } - "j" { - :type :expr, :by "root", :at 1517236998848, :id "SkJMmnhrM" - :data { - "T" {:type :leaf, :by "root", :at 1517236999202, :text "{}", :id "BkzCZ722SG"} - "r" { - :type :expr, :by "root", :at 1517239711008, :id "Bkvi63hrf" - :data { - "T" {:type :leaf, :by "root", :at 1517239723873, :text ":focused-id", :id "Bkvi63hrfleaf"} - "j" {:type :leaf, :by "root", :at 1517239725689, :text "nil", :id "S1HnpnnHG"} - } - } - "v" { - :type :expr, :by "root", :at 1517292547009, :id "S1goZ2YpHM" - :data { - "T" {:type :leaf, :by "root", :at 1517292575956, :text ":edit-workflow?", :id "S1goZ2YpHMleaf"} - "j" {:type :leaf, :by "root", :at 1517292568012, :text "false", :id "BykQhYpBG"} - } - } - "x" { - :type :expr, :by "root", :at 1517412973123, :id "S1-SOMv1Lz" - :data { - "T" {:type :leaf, :by "root", :at 1517412977082, :text ":base-workflow", :id "S1-SOMv1Lzleaf"} - "j" {:type :leaf, :by "root", :at 1517412979490, :text "nil", :id "rkEYdGD1UM"} - } - } - } - } - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517233301508, :id "HJHT5Vi2BM" - :data { - "T" {:type :leaf, :by "root", :at 1517233301936, :text "div", :id "HJHT5Vi2BMleaf"} - "j" { - :type :expr, :by "root", :at 1517233302168, :id "BymRq4i3BG" - :data { - "T" {:type :leaf, :by "root", :at 1517233302725, :text "{}", :id "Skf094i3SM"} - "r" { - :type :expr, :by "root", :at 1517233354701, :id "ryxmAEonrz" - :data { - "T" {:type :leaf, :by "root", :at 1517233372471, :text ":style", :id "HkX04s2Hz"} - "j" { - :type :expr, :by "root", :at 1517236516060, :id "rJl3mWnhHM" - :data { - "D" {:type :leaf, :by "root", :at 1517236517717, :text "merge", :id "Sk-27b32Bf"} - "L" {:type :leaf, :by "root", :at 1517236519642, :text "ui/row", :id "HkZRmbhhHf"} - "T" { - :type :expr, :by "root", :at 1517233359838, :id "ryeu0VsnrM" - :data { - "T" {:type :leaf, :by "root", :at 1517233361247, :text "{}", :id "HkdA4j2Hf"} - "j" { - :type :expr, :by "root", :at 1517233361471, :id "ByzFANonBf" - :data { - "T" {:type :leaf, :by "root", :at 1517233364727, :text ":padding", :id "r1bYREi2SG"} - "j" {:type :leaf, :by "root", :at 1517233376677, :text "16", :id "rkMTRNihHG"} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517236522875, :id "H1m4Z23Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517236523389, :text "div", :id "H1m4Z23Bfleaf"} - "j" { - :type :expr, :by "root", :at 1517236523638, :id "ryV4-2nSM" - :data { - "T" {:type :leaf, :by "root", :at 1517236525254, :text "{}", :id "B1mmNbh2SG"} - "j" { - :type :expr, :by "root", :at 1517236682400, :id "SkbfCb33BG" - :data { - "T" {:type :leaf, :by "root", :at 1517236686820, :text ":style", :id "H1lG0b32rG"} - "j" { - :type :expr, :by "root", :at 1517236687039, :id "HJ7D0W3hHM" - :data { - "T" {:type :leaf, :by "root", :at 1517236687377, :text "{}", :id "HkzwA-2nHf"} - "j" { - :type :expr, :by "root", :at 1517236687622, :id "Bked0b2hSG" - :data { - "T" {:type :leaf, :by "root", :at 1517236688433, :text ":width", :id "SJd0W22SM"} - "j" {:type :leaf, :by "root", :at 1517843500428, :text "200", :id "S1tAWhhBG"} - } - } - } - } - } - } - } - } - "n" { - :type :expr, :by "root", :at 1517236806726, :id "Sky8Mn2rz" - :data { - "T" {:type :leaf, :by "root", :at 1517236808425, :text "div", :id "Sky8Mn2rzleaf"} - "j" { - :type :expr, :by "root", :at 1517236808651, :id "Byg-8Mn2SM" - :data { - "T" {:type :leaf, :by "root", :at 1517236809490, :text "{}", :id "r1WUG3nHz"} - "j" { - :type :expr, :by "root", :at 1517292299719, :id "rJNGoKTBf" - :data { - "T" {:type :leaf, :by "root", :at 1517292300448, :text ":style", :id "ryZQMot6Hf"} - "j" {:type :leaf, :by "root", :at 1517674389772, :text "ui/row", :id "rkrMiK6HG"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517292292688, :id "r1TWsKprG" - :data { - "T" {:type :leaf, :by "root", :at 1517292293621, :text "<>", :id "r1TWsKprGleaf"} - "j" {:type :leaf, :by "root", :at 1517292314825, :text "|Workflows", :id "HJRGiYaBM"} - "r" { - :type :expr, :by "root", :at 1517843214913, :id "SyDG7xU8z" - :data { - "T" {:type :leaf, :by "root", :at 1517843215317, :text "{}", :id "B1lLzmeIIM"} - "j" { - :type :expr, :by "root", :at 1517843215497, :id "SkXvf7x8IG" - :data { - "T" {:type :leaf, :by "root", :at 1517843217374, :text ":font-family", :id "Skzvz7eI8M"} - "j" {:type :leaf, :by "root", :at 1517843223351, :text "ui/font-fancy", :id "rycGQgIIG"} - } - } - } - } - } - } - } - } - "t" { - :type :expr, :by "root", :at 1517236817115, :id "ByxtUfn3HM" - :data { - "T" {:type :leaf, :by "root", :at 1517236821056, :text "list->", :id "ByxtUfn3HMleaf"} - "j" { - :type :expr, :by "root", :at 1517236822242, :id "HyZALGn2Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517236821839, :text "{}", :id "Hk7aIznnHf"} - } - } - "r" { - :type :expr, :by "root", :at 1517236835938, :id "BynPGhnHz" - :data { - "T" {:type :leaf, :by "root", :at 1517236837996, :text "->>", :id "BynPGhnHzleaf"} - "j" {:type :leaf, :by "root", :at 1517236841790, :text "workflows", :id "SyMCPfnnHf"} - "r" { - :type :expr, :by "root", :at 1517236842272, :id "BybGufnnBz" - :data { - "T" {:type :leaf, :by "root", :at 1517585163814, :text "map-val", :id "BJgMuMn3HG"} - "j" { - :type :expr, :by "root", :at 1517236843470, :id "HyQXdzn2rG" - :data { - "T" {:type :leaf, :by "root", :at 1517236845636, :text "fn", :id "HJzmOMnnBf"} - "j" { - :type :expr, :by "root", :at 1517236847242, :id "SJlDdzh2Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517236854595, :text "workflow", :id "Bk6uG3nSf"} - } - } - "r" { - :type :expr, :by "root", :at 1517236866658, :id "SysYMhnrz" - :data { - "T" {:type :leaf, :by "root", :at 1517237759971, :text "div", :id "SJ7KFz22Hf"} - "b" { - :type :expr, :by "root", :at 1517237760209, :id "HyNdWIn2Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517237760545, :text "{}", :id "HkXO-Lhhrf"} - "b" { - :type :expr, :by "root", :at 1517239857925, :id "Hy9N033Hz" - :data { - "T" {:type :leaf, :by "root", :at 1517239858879, :text ":style", :id "Hy9N033Hzleaf"} - "j" { - :type :expr, :by "root", :at 1517239859143, :id "HkEj402hrM" - :data { - "T" {:type :leaf, :by "root", :at 1517239859500, :text "{}", :id "S1QoEA32HM"} - "j" { - :type :expr, :by "root", :at 1517239859730, :id "Hyx2V0h2rz" - :data { - "T" {:type :leaf, :by "root", :at 1517239861463, :text ":cursor", :id "HJh4C2nBM"} - "j" {:type :leaf, :by "root", :at 1517239862515, :text ":pointer", :id "H1AE02hSM"} - } - } - "x" { - :type :expr, :by "root", :at 1517326616153, :id "SJlg7ZfRHM" - :data { - "T" {:type :leaf, :by "root", :at 1517326618145, :text ":padding", :id "SJlg7ZfRHMleaf"} - "j" {:type :leaf, :by "root", :at 1517326621370, :text "|0 8px", :id "Hk-GQ-fCHM"} - } - } - "xD" { - :type :expr, :by "root", :at 1517843298452, :id "rJWqDXeL8G" - :data { - "T" {:type :leaf, :by "root", :at 1517843301283, :text ":margin-bottom", :id "rJWqDXeL8Gleaf"} - "j" {:type :leaf, :by "root", :at 1517843304839, :text "8", :id "SyLpwXx8If"} - } - } - "xT" { - :type :expr, :by "root", :at 1517410752232, :id "ryldTtIy8f" - :data { - "T" {:type :leaf, :by "root", :at 1517410756024, :text ":min-width", :id "ryldTtIy8fleaf"} - "j" {:type :leaf, :by "root", :at 1517410756540, :text "40", :id "S1e2aKL1LM"} - } - } - "xj" { - :type :expr, :by "root", :at 1517410757660, :id "ryApK81UG" - :data { - "T" {:type :leaf, :by "root", :at 1517410761799, :text ":min-height", :id "ryApK81UGleaf"} - "j" {:type :leaf, :by "root", :at 1517410790780, :text "20", :id "HkXAtUyUG"} - } - } - "yT" { - :type :expr, :by "root", :at 1517843269393, :id "B1gTrXeLUM" - :data { - "T" {:type :leaf, :by "root", :at 1517843271576, :text ":border-bottom", :id "B1gTrXeLUMleaf"} - "j" { - :type :expr, :by "root", :at 1517843271961, :id "ryZxI7eLUG" - :data { - "T" {:type :leaf, :by "root", :at 1517843272514, :text "str", :id "SkleUmlILf"} - "j" {:type :leaf, :by "root", :at 1517843275702, :text "|1px solid ", :id "H1WUmx88z"} - "r" { - :type :expr, :by "root", :at 1517843277046, :id "HJfHLQlL8f" - :data { - "T" {:type :leaf, :by "root", :at 1517843276901, :text "hsl", :id "Hyx4LQx88G"} - "j" {:type :leaf, :by "root", :at 1517843277731, :text "0", :id "r1I8Qe8IG"} - "r" {:type :leaf, :by "root", :at 1517843277952, :text "0", :id "HJ-L8mlIIM"} - "v" {:type :leaf, :by "root", :at 1517843278311, :text "90", :id "S178UQxLUf"} - } - } - } - } - } - } - "yj" { - :type :expr, :by "root", :at 1517843433240, :id "SkZxNxUIz" - :data { - "T" {:type :leaf, :by "root", :at 1517843435391, :text ":border-color", :id "SkZxNxUIzleaf"} - "j" { - :type :expr, :by "root", :at 1517843323050, :id "ryZ8l4xI8M" - :data { - "T" {:type :leaf, :by "root", :at 1517843324900, :text "if", :id "Syx7tQx8IMleaf"} - "j" { - :type :expr, :by "root", :at 1517843325112, :id "SyQSYXlULG" - :data { - "T" {:type :leaf, :by "root", :at 1517843326028, :text "=", :id "SJzrKmxLLf"} - "j" { - :type :expr, :by "root", :at 1517843327585, :id "HkuK7lU8f" - :data { - "T" {:type :leaf, :by "root", :at 1517843333385, :text ":id", :id "HylLF7eL8M"} - "j" {:type :leaf, :by "root", :at 1517843334483, :text "workflow", :id "rJQ6t7gL8f"} - } - } - "r" { - :type :expr, :by "root", :at 1517843336833, :id "Sy-qQlI8f" - :data { - "T" {:type :leaf, :by "root", :at 1517843339071, :text ":focused-id", :id "rkZe5QgL8f"} - "j" {:type :leaf, :by "root", :at 1517843346143, :text "state", :id "B1UqmgILz"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517843391314, :id "HylteNeLUf" - :data { - "T" {:type :leaf, :by "root", :at 1517843391778, :text "hsl", :id "ry-imeL8G"} - "j" {:type :leaf, :by "root", :at 1517843392409, :text "0", :id "rJzdpXgLIM"} - "r" {:type :leaf, :by "root", :at 1517843392609, :text "0", :id "B1Y6QeI8f"} - "v" {:type :leaf, :by "root", :at 1517843474893, :text "80", :id "SJ-KpQlLLf"} - } - } - "v" { - :type :expr, :by "root", :at 1517843277046, :id "Syejl4lIIz" - :data { - "T" {:type :leaf, :by "root", :at 1517843276901, :text "hsl", :id "Hyx4LQx88G"} - "j" {:type :leaf, :by "root", :at 1517843277731, :text "0", :id "r1I8Qe8IG"} - "r" {:type :leaf, :by "root", :at 1517843277952, :text "0", :id "HJ-L8mlIIM"} - "v" {:type :leaf, :by "root", :at 1517843468875, :text "94", :id "S178UQxLUf"} - } - } - } - } - } - } - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517239692842, :id "SygBq6hnrG" - :data { - "T" {:type :leaf, :by "root", :at 1517239694719, :text ":on-click", :id "BkN5622HG"} - "j" { - :type :expr, :by "root", :at 1517239695128, :id "rkXDqp22Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517239733657, :text "mutation->", :id "ByMwc632HM"} - "j" { - :type :expr, :by "root", :at 1517239734037, :id "SyWA3633SG" - :data { - "T" {:type :leaf, :by "root", :at 1517239734933, :text "assoc", :id "B1gC2T23rz"} - "j" {:type :leaf, :by "root", :at 1517239736226, :text "state", :id "SJeTTh3Hf"} - "r" {:type :leaf, :by "root", :at 1517239738491, :text ":focused-id", :id "HkHg6TnhBf"} - "v" { - :type :expr, :by "root", :at 1517585189401, :id "ryla77WfLG" - :data { - "T" {:type :leaf, :by "root", :at 1517585193019, :text ":id", :id "HJlSp62nrM"} - "j" {:type :leaf, :by "root", :at 1517585195362, :text "workflow", :id "BkmZVmZMIM"} - } - } - } - } - } - } - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517237777053, :id "r1tMI22rG" - :data { - "D" {:type :leaf, :by "root", :at 1517237778311, :text "<>", :id "S1cfU23Hz"} - "T" { - :type :expr, :by "root", :at 1517237752087, :id "SklZ8n3BG" - :data { - "D" {:type :leaf, :by "root", :at 1517237753257, :text ":name", :id "SyexWU32rf"} - "T" {:type :leaf, :by "root", :at 1517236870166, :text "workflow", :id "Syb3YG3nrG"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "w" { - :type :expr, :by "root", :at 1517674396275, :id "HJxVjJvQIG" - :data { - "T" {:type :leaf, :by "root", :at 1517674397070, :text "div", :id "HJxVjJvQIGleaf"} - "j" { - :type :expr, :by "root", :at 1517674397468, :id "r1QHiJvQLM" - :data { - "T" {:type :leaf, :by "root", :at 1517674397840, :text "{}", :id "HyfHjywX8M"} - } - } - "r" { - :type :expr, :by "root", :at 1517292315657, :id "rkgDjyvQUz" - :data { - "T" {:type :leaf, :by "root", :at 1517292317222, :text "button", :id "HJN7jF6rGleaf"} - "j" { - :type :expr, :by "root", :at 1517292317714, :id "BJ8moFprG" - :data { - "T" {:type :leaf, :by "root", :at 1517292318047, :text "{}", :id "HJSSQiY6Hf"} - "j" { - :type :expr, :by "root", :at 1517292323198, :id "HyWjQoYpHz" - :data { - "T" {:type :leaf, :by "root", :at 1517292324060, :text ":style", :id "ByeoXjF6Hz"} - "j" {:type :leaf, :by "root", :at 1517292332411, :text "style/button", :id "HJ427iYTHz"} - } - } - "r" { - :type :expr, :by "root", :at 1517326078297, :id "SyZLb1fRrz" - :data { - "T" {:type :leaf, :by "root", :at 1517326080772, :text ":on-click", :id "SyZLb1fRrzleaf"} - "j" { - :type :expr, :by "root", :at 1517326081117, :id "rJVFb1M0BG" - :data { - "T" {:type :leaf, :by "root", :at 1517326081485, :text "fn", :id "Hy7K-JGABG"} - "j" { - :type :expr, :by "root", :at 1517326082314, :id "Byx5-kMRSG" - :data { - "T" {:type :leaf, :by "root", :at 1517326082567, :text "e", :id "rk5WyM0Bz"} - "j" {:type :leaf, :by "root", :at 1517326083266, :text "d!", :id "SJgiWyMRSG"} - "r" {:type :leaf, :by "root", :at 1517326084408, :text "m!", :id "Hk7jbyfRBM"} - } - } - "r" { - :type :expr, :by "root", :at 1517326085554, :id "HJCWkGArz" - :data { - "T" {:type :leaf, :by "root", :at 1517326087353, :text "m!", :id "HJCWkGArzleaf"} - "j" { - :type :expr, :by "root", :at 1517326088551, :id "SJZMkMRHG" - :data { - "T" {:type :leaf, :by "root", :at 1517326089476, :text "assoc", :id "S1gM1M0rG"} - "j" {:type :leaf, :by "root", :at 1517326090387, :text "state", :id "r1fMkf0SG"} - "r" {:type :leaf, :by "root", :at 1517326093749, :text ":edit-workflow?", :id "SkmGJzASG"} - "v" {:type :leaf, :by "root", :at 1517326094464, :text "true", :id "r1xUGyzCrz"} - "x" {:type :leaf, :by "root", :at 1517412969383, :text ":base-workflow", :id "ryKwzvJ8G"} - "y" {:type :leaf, :by "root", :at 1517412970638, :text "nil", :id "B1fufD1Uz"} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517292318615, :id "HkvXoKpBf" - :data { - "T" {:type :leaf, :by "root", :at 1517292319259, :text "<>", :id "HkvXoKpBfleaf"} - "j" {:type :leaf, :by "root", :at 1517292320824, :text "|add", :id "B1O7oFpBM"} - } - } - } - } - } - } - } - } - "t" { - :type :expr, :by "root", :at 1517236931895, :id "SJhTG23HM" - :data { - "T" {:type :leaf, :by "root", :at 1517236932612, :text "=<", :id "SJhTG23HMleaf"} - "j" {:type :leaf, :by "root", :at 1517843491380, :text "32", :id "HyeT6fhnBz"} - "r" {:type :leaf, :by "root", :at 1517236936802, :text "nil", :id "r1Gl0Gn3Sz"} - } - } - "v" { - :type :expr, :by "root", :at 1517236526446, :id "SyZIEZ22Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517236527584, :text "div", :id "SyZIEZ22Bfleaf"} - "j" { - :type :expr, :by "root", :at 1517236527850, :id "HkWO4-3nSz" - :data { - "T" {:type :leaf, :by "root", :at 1517236528797, :text "{}", :id "r1edN-2nSM"} - "j" { - :type :expr, :by "root", :at 1517236695432, :id "SJZ11z23BG" - :data { - "T" {:type :leaf, :by "root", :at 1517236717845, :text ":style", :id "ByxkyGn2HG"} - "j" {:type :leaf, :by "root", :at 1517236719073, :text "ui/flex", :id "S1M8xG2nSM"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517239759279, :id "rygvATnhrz" - :data { - "T" {:type :leaf, :by "root", :at 1517239760123, :text "let", :id "rygvATnhrzleaf"} - "j" { - :type :expr, :by "root", :at 1517239762214, :id "rkcR6n2Bz" - :data { - "D" { - :type :expr, :by "root", :at 1517239770934, :id "SyX1R3hSG" - :data { - "T" {:type :leaf, :by "root", :at 1517239773317, :text "focused-id", :id "SyX1R3hSGleaf"} - "j" { - :type :expr, :by "root", :at 1517239773568, :id "SkIyC32rM" - :data { - "T" {:type :leaf, :by "root", :at 1517239779050, :text ":focused-id", :id "ByMSJ0nhrG"} - "j" {:type :leaf, :by "root", :at 1517239780483, :text "state", :id "HyMjJA3hBM"} - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517239785601, :id "H1GeAn2Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517239786140, :text "if", :id "H1GeAn2Hfleaf"} - "j" { - :type :expr, :by "root", :at 1517239786994, :id "rk7xR23SG" - :data { - "T" {:type :leaf, :by "root", :at 1517239787507, :text "and", :id "r1MfxRnnHM"} - "j" { - :type :expr, :by "root", :at 1517239788670, :id "BJBgCh3Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517239789368, :text "some?", :id "B1VeRnhHz"} - "j" {:type :leaf, :by "root", :at 1517239793730, :text "focused-id", :id "SkLlR32Bz"} - } - } - "r" { - :type :expr, :by "root", :at 1517239796431, :id "Sye3lC23BM" - :data { - "T" {:type :leaf, :by "root", :at 1517239797670, :text "some?", :id "Sye3lC23BMleaf"} - "j" { - :type :expr, :by "root", :at 1517239798061, :id "BkbReC22rz" - :data { - "T" {:type :leaf, :by "root", :at 1517239798556, :text "get", :id "rJg0xChnrz"} - "j" {:type :leaf, :by "root", :at 1517239802343, :text "workflows", :id "Hye-CnhHf"} - "r" {:type :leaf, :by "root", :at 1517239809110, :text "focused-id", :id "S1NZ0h2BM"} - } - } - } - } - } - } - "t" { - :type :expr, :by "root", :at 1517412995408, :id "SJWiYzDy8G" - :data { - "D" {:type :leaf, :by "root", :at 1517412996115, :text "let", :id "B12YMDk8z"} - "L" { - :type :expr, :by "root", :at 1517412996302, :id "Hy4nKGwJ8z" - :data { - "D" { - :type :expr, :by "root", :at 1517413028616, :id "SypizwJIG" - :data { - "T" {:type :leaf, :by "root", :at 1517413040534, :text "workflow", :id "SypizwJIGleaf"} - "j" { - :type :expr, :by "root", :at 1517239798061, :id "SJ5hfD1LM" - :data { - "T" {:type :leaf, :by "root", :at 1517239798556, :text "get", :id "rJg0xChnrz"} - "j" {:type :leaf, :by "root", :at 1517239802343, :text "workflows", :id "Hye-CnhHf"} - "r" {:type :leaf, :by "root", :at 1517239809110, :text "focused-id", :id "S1NZ0h2BM"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517412996445, :id "rJr3FGv18M" - :data { - "T" {:type :leaf, :by "root", :at 1517412999352, :text "on-edit!", :id "rkXnKMDy8M"} - "j" { - :type :expr, :by "root", :at 1517412999836, :id "ryglqMD1LG" - :data { - "T" {:type :leaf, :by "root", :at 1517413002388, :text "fn", :id "rJlqGPJIM"} - "j" { - :type :expr, :by "root", :at 1517413002686, :id "BygQ5MP1Lf" - :data { - "T" {:type :leaf, :by "root", :at 1517413004042, :text "m!", :id "ByX9MPkLf"} - } - } - "r" { - :type :expr, :by "root", :at 1517413004744, :id "SyrcGvJLz" - :data { - "T" {:type :leaf, :by "root", :at 1517413006587, :text "m!", :id "SyrcGvJLzleaf"} - "j" {:type :leaf, :by "root", :at 1517413010464, :text "%cursor", :id "ryKcGwk8f"} - "r" { - :type :expr, :by "root", :at 1517413014896, :id "BJJiMDyIz" - :data { - "T" {:type :leaf, :by "root", :at 1517413016083, :text "assoc", :id "S10czD1Uf"} - "j" {:type :leaf, :by "root", :at 1517413017103, :text "state", :id "SkXlozPkLM"} - "r" {:type :leaf, :by "root", :at 1517413021734, :text ":edit-workflow?", :id "rkNZjGwy8M"} - "v" {:type :leaf, :by "root", :at 1517413022401, :text "true", :id "Byg8sfPkIf"} - "x" {:type :leaf, :by "root", :at 1517413050761, :text ":base-workflow", :id "ryPoMPJIz"} - "y" {:type :leaf, :by "root", :at 1517413053280, :text "workflow", :id "B14pzD1IM"} - } - } - } - } - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517326702739, :id "rkDubMCSf" - :data { - "D" {:type :leaf, :by "root", :at 1517327291486, :text "cursor->", :id "rkMTQfArG"} - "L" {:type :leaf, :by "root", :at 1517327293888, :text ":detail", :id "BkVTmzArf"} - "T" {:type :leaf, :by "root", :at 1517674525728, :text "comp-workflow-detail", :id "rkDubMCSfleaf"} - "b" {:type :leaf, :by "root", :at 1517327185965, :text "states", :id "HJW_IQfArG"} - "j" {:type :leaf, :by "root", :at 1517413037387, :text "workflow", :id "Skx4hfvkUz"} - "r" {:type :leaf, :by "root", :at 1517412991857, :text "on-edit!", :id "SkertMDyIM"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517239827046, :id "HJeiMC32HM" - :data { - "T" {:type :leaf, :by "root", :at 1517239827882, :text "div", :id "HJeiMC32HMleaf"} - "j" { - :type :expr, :by "root", :at 1517239828098, :id "BkQnzAh2Hz" - :data { - "T" {:type :leaf, :by "root", :at 1517239828476, :text "{}", :id "rkf3MC3nBf"} - } - } - "r" { - :type :expr, :by "root", :at 1517239829726, :id "S1AGR32Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517239830409, :text "<>", :id "S1AGR32Szleaf"} - "j" {:type :leaf, :by "root", :at 1517843244947, :text "|Nothing", :id "B1km03hrf"} - "r" { - :type :expr, :by "root", :at 1517843231887, :id "H1l_Q7lLLG" - :data { - "T" {:type :leaf, :by "root", :at 1517843232550, :text "{}", :id "SJ_7QeUIz"} - "j" { - :type :expr, :by "root", :at 1517843232746, :id "BJWtmmlIUz" - :data { - "T" {:type :leaf, :by "root", :at 1517843236743, :text ":font-family", :id "BJeYQ7l88M"} - "j" {:type :leaf, :by "root", :at 1517843239698, :text "ui/font-fancy", :id "B1xaQ7lLUz"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517325668305, :id "BJg3w6-Rrz" - :data { - "T" {:type :leaf, :by "root", :at 1517325668700, :text "if", :id "BJg3w6-Rrzleaf"} - "j" { - :type :expr, :by "root", :at 1517325669306, :id "S1GaP6ZCBM" - :data { - "T" {:type :leaf, :by "root", :at 1517325677227, :text ":edit-workflow?", :id "ryWpwTb0SG"} - "j" {:type :leaf, :by "root", :at 1517325678395, :text "state", :id "ryEHOabCHf"} - } - } - "r" { - :type :expr, :by "root", :at 1517325698226, :id "HJx5YabRBM" - :data { - "D" {:type :leaf, :by "root", :at 1517325699000, :text "let", :id "B1jtpWCSz"} - "L" { - :type :expr, :by "root", :at 1517325699219, :id "SyEiY6WABM" - :data { - "T" { - :type :expr, :by "root", :at 1517325699378, :id "BJBst6-0Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517325701908, :text "on-close!", :id "BkmjYabRSf"} - "j" { - :type :expr, :by "root", :at 1517325704678, :id "HJbqaZ0BG" - :data { - "T" {:type :leaf, :by "root", :at 1517325705093, :text "fn", :id "SJgAtTb0Bf"} - "j" { - :type :expr, :by "root", :at 1517325705393, :id "Hk7b9TbRSz" - :data { - "T" {:type :leaf, :by "root", :at 1517325706211, :text "m!", :id "ryGWc6W0SG"} - } - } - "r" { - :type :expr, :by "root", :at 1517325706881, :id "SkeQ9pWRSz" - :data { - "T" {:type :leaf, :by "root", :at 1517325708191, :text "m!", :id "SkeQ9pWRSzleaf"} - "j" {:type :leaf, :by "root", :at 1517325710960, :text "%cursor", :id "rJ-E56ZCrG"} - "r" { - :type :expr, :by "root", :at 1517325713317, :id "H1YcaW0Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517325715143, :text "assoc", :id "H1d9pb0SM"} - "j" {:type :leaf, :by "root", :at 1517325716317, :text "state", :id "HJ25TZCHM"} - "r" {:type :leaf, :by "root", :at 1517325720646, :text ":edit-workflow?", :id "HySnqpbCSz"} - "v" {:type :leaf, :by "root", :at 1517325721993, :text "false", :id "B1eWopb0rM"} - } - } - } - } - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517325679152, :id "rJev_T-RHz" - :data { - "T" {:type :leaf, :by "root", :at 1517325685605, :text "comp-dialog", :id "rJev_T-RHzleaf"} - "j" {:type :leaf, :by "root", :at 1517325725343, :text "on-close!", :id "rkl8FabCSG"} - "r" { - :type :expr, :by "root", :at 1517325744991, :id "HyYnp-RSM" - :data { - "D" {:type :leaf, :by "root", :at 1517325928265, :text "cursor->", :id "H1kuCbRSf"} - "L" {:type :leaf, :by "root", :at 1517325929827, :text ":editor", :id "H1b_0bArf"} - "T" {:type :leaf, :by "root", :at 1517325749994, :text "comp-workflow-editor", :id "HyIjpWAHG"} - "j" {:type :leaf, :by "root", :at 1517325931240, :text "states", :id "ry7O0bABM"} - "r" {:type :leaf, :by "root", :at 1517326548814, :text "on-close!", :id "S1TAlfRBz"} - "v" { - :type :expr, :by "root", :at 1517413063867, :id "Syg0fv1UG" - :data { - "T" {:type :leaf, :by "root", :at 1517413067674, :text ":base-workflow", :id "SJxppfPkIM"} - "j" {:type :leaf, :by "root", :at 1517413071987, :text "state", :id "r1xEAfPJIf"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "comp-workflow-detail" { - :type :expr, :by "root", :at 1517326659338, :id "B1gsrWfABG" - :data { - "T" {:type :leaf, :by "root", :at 1517326663642, :text "defcomp", :id "ryWoBbzRSf"} - "j" {:type :leaf, :by "root", :at 1517326659338, :text "comp-workflow-detail", :id "SkGorbM0Sf"} - "r" { - :type :expr, :by "root", :at 1517326659338, :id "BkXsBZz0BM" - :data { - "D" {:type :leaf, :by "root", :at 1517327190525, :text "states", :id "BJxhU7zRHz"} - "T" {:type :leaf, :by "root", :at 1517326667990, :text "workflow", :id "B1z8bfArG"} - "j" {:type :leaf, :by "root", :at 1517413078262, :text "on-edit!", :id "r1xhAzDJUM"} - } - } - "v" { - :type :expr, :by "root", :at 1517327297627, :id "HJ9aXGArz" - :data { - "D" {:type :leaf, :by "root", :at 1517327298145, :text "let", :id "H1x96XzCSG"} - "L" { - :type :expr, :by "root", :at 1517327298718, :id "HyipQfCrG" - :data { - "T" { - :type :expr, :by "root", :at 1517327298901, :id "Bkgj6XMCrM" - :data { - "T" {:type :leaf, :by "root", :at 1517327299474, :text "state", :id "HyVqaQfCBG"} - "j" { - :type :expr, :by "root", :at 1517327300129, :id "S1l2T7zRHf" - :data { - "T" {:type :leaf, :by "root", :at 1517327300920, :text "or", :id "ry3T7fCSf"} - "j" { - :type :expr, :by "root", :at 1517327301227, :id "SJWaaQG0SM" - :data { - "T" {:type :leaf, :by "root", :at 1517327303858, :text ":data", :id "S1gap7GRHf"} - "j" {:type :leaf, :by "root", :at 1517327304601, :text "states", :id "rJfe0mM0HM"} - } - } - "r" { - :type :expr, :by "root", :at 1517327305619, :id "SkMC7zCSz" - :data { - "T" {:type :leaf, :by "root", :at 1517327306950, :text "{}", :id "SkMC7zCSzleaf"} - "j" { - :type :expr, :by "root", :at 1517327307380, :id "BkbQ0Qz0HM" - :data { - "T" {:type :leaf, :by "root", :at 1517327314837, :text ":edit-command?", :id "BJemRXMRSM"} - "j" {:type :leaf, :by "root", :at 1517327315806, :text "false", :id "rkbjCQMRSf"} - } - } - "r" { - :type :expr, :by "root", :at 1517412665860, :id "SyzrbPJUf" - :data { - "T" {:type :leaf, :by "root", :at 1517413865714, :text ":base-command", :id "SyzrbPJUfleaf"} - "j" {:type :leaf, :by "root", :at 1517412675557, :text "nil", :id "S1uB-DyUG"} - } - } - } - } - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517326668991, :id "S1eH8bf0Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517326676269, :text "div", :id "S1eH8bf0Sfleaf"} - "j" { - :type :expr, :by "root", :at 1517326676488, :id "SJ4nIbM0rz" - :data { - "T" {:type :leaf, :by "root", :at 1517326676816, :text "{}", :id "rkQnLbfArG"} - } - } - "v" { - :type :expr, :by "root", :at 1517326721223, :id "HklKY-MRBG" - :data { - "T" {:type :leaf, :by "root", :at 1517326721682, :text "div", :id "HklKY-MRBGleaf"} - "j" { - :type :expr, :by "root", :at 1517326721908, :id "SkM9YbG0Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517326722975, :text "{}", :id "r1-5KWzASf"} - "j" { - :type :expr, :by "root", :at 1517326867328, :id "r1ZiMfMCSG" - :data { - "T" {:type :leaf, :by "root", :at 1517326869181, :text ":style", :id "BkxjzMG0Bz"} - "j" { - :type :expr, :by "root", :at 1517326873693, :id "BJMmzGRSM" - :data { - "D" {:type :leaf, :by "root", :at 1517326876013, :text "merge", :id "rylfmGz0HM"} - "T" {:type :leaf, :by "root", :at 1517326871317, :text "ui/row", :id "r1r6GzMCSf"} - "j" { - :type :expr, :by "root", :at 1517326876701, :id "B1BmMf0Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517326878456, :text "{}", :id "SyS4QGz0Bz"} - "j" { - :type :expr, :by "root", :at 1517326879410, :id "rkxvQzGCSz" - :data { - "T" {:type :leaf, :by "root", :at 1517326882992, :text ":align-items", :id "HJwmfGRSz"} - "j" {:type :leaf, :by "root", :at 1517326894739, :text ":center", :id "rJWi7MzAHM"} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517326724236, :id "rybhtbzAHf" - :data { - "T" {:type :leaf, :by "root", :at 1517326725064, :text "<>", :id "rybhtbzAHfleaf"} - "j" { - :type :expr, :by "root", :at 1517326727226, :id "B1lJ9-fArz" - :data { - "T" {:type :leaf, :by "root", :at 1517326726619, :text ":name", :id "B1-ptZzABG"} - "j" {:type :leaf, :by "root", :at 1517326728720, :text "workflow", :id "BJgqZzRBM"} - } - } - "r" { - :type :expr, :by "root", :at 1517326747367, :id "SygRobz0Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517326747779, :text "{}", :id "rkms-MRBz"} - "j" { - :type :expr, :by "root", :at 1517326764629, :id "rkS2WMRSG" - :data { - "T" {:type :leaf, :by "root", :at 1517326765742, :text ":font-size", :id "Hk42-zCHz"} - "j" {:type :leaf, :by "root", :at 1517326771720, :text "24", :id "Bkb8hWM0SM"} - } - } - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517326729980, :id "HJlGqZMCHz" - :data { - "T" {:type :leaf, :by "root", :at 1517326731189, :text "=<", :id "HJlGqZMCHzleaf"} - "j" {:type :leaf, :by "root", :at 1517326731703, :text "8", :id "SJZQqWGCBG"} - "r" {:type :leaf, :by "root", :at 1517326732245, :text "nil", :id "S1l4c-MCBM"} - } - } - "x" { - :type :expr, :by "root", :at 1517326733259, :id "BylHcZzAHz" - :data { - "T" {:type :leaf, :by "root", :at 1517326733747, :text "<>", :id "BylHcZzAHzleaf"} - "j" { - :type :expr, :by "root", :at 1517326734980, :id "Skgv9WzRSf" - :data { - "T" {:type :leaf, :by "root", :at 1517326736964, :text ":base-dir", :id "BJWLcZf0Bf"} - "j" {:type :leaf, :by "root", :at 1517326738075, :text "workflow", :id "Hkft5ZM0HM"} - } - } - "r" { - :type :expr, :by "root", :at 1517326747367, :id "SJl7jbz0Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517326747779, :text "{}", :id "rkms-MRBz"} - "j" { - :type :expr, :by "root", :at 1517326748057, :id "B1f4j-G0BM" - :data { - "T" {:type :leaf, :by "root", :at 1517326750558, :text ":font-family", :id "SJZEjbfCrz"} - "j" {:type :leaf, :by "root", :at 1517326754279, :text "ui/font-code", :id "SJePibzAHM"} - } - } - "r" { - :type :expr, :by "root", :at 1517326777507, :id "HklZabMCSG" - :data { - "T" {:type :leaf, :by "root", :at 1517326779263, :text ":color", :id "HklZabMCSGleaf"} - "j" { - :type :expr, :by "root", :at 1517326779599, :id "HJ4aWGRrf" - :data { - "T" {:type :leaf, :by "root", :at 1517326779957, :text "hsl", :id "r1NQpWz0SG"} - "j" {:type :leaf, :by "root", :at 1517326780673, :text "0", :id "rJmVTbzASM"} - "r" {:type :leaf, :by "root", :at 1517326780941, :text "0", :id "rJeBTZGRrz"} - "v" {:type :leaf, :by "root", :at 1517326786204, :text "70", :id "BJMH6bGCSM"} - } - } - } - } - } - } - } - } - "yl" { - :type :expr, :by "root", :at 1517326824904, :id "HyGpSewmUf" - :data { - "T" {:type :leaf, :by "root", :at 1517674562794, :text "span", :id "BJlbgMMCrGleaf"} - "j" { - :type :expr, :by "root", :at 1517326826552, :id "B1XlzMCSG" - :data { - "T" {:type :leaf, :by "root", :at 1517326826876, :text "{}", :id "ryrMefzCBM"} - "j" { - :type :expr, :by "root", :at 1517326827117, :id "Bkm7lMGRrM" - :data { - "T" {:type :leaf, :by "root", :at 1517326828338, :text ":style", :id "B1G7xzfRSz"} - "j" {:type :leaf, :by "root", :at 1517674552274, :text "style/link", :id "BkBNxMGRBG"} - } - } - "n" { - :type :expr, :by "root", :at 1517674552755, :id "BJebSxDmIG" - :data { - "T" {:type :leaf, :by "root", :at 1517674555975, :text ":inner-text", :id "BJebSxDmIGleaf"} - "j" {:type :leaf, :by "root", :at 1517674557733, :text "|edit", :id "S1zEHgv7Uz"} - } - } - "r" { - :type :expr, :by "root", :at 1517326835836, :id "BJhlzfRHM" - :data { - "T" {:type :leaf, :by "root", :at 1517326838663, :text ":on-click", :id "BJhlzfRHMleaf"} - "j" { - :type :expr, :by "root", :at 1517412726834, :id "BJg1t-wyUM" - :data { - "T" {:type :leaf, :by "root", :at 1517412727130, :text "fn", :id "BJ1YZw1IG"} - "j" { - :type :expr, :by "root", :at 1517412727333, :id "SJNkFZDk8M" - :data { - "T" {:type :leaf, :by "root", :at 1517412728284, :text "e", :id "H17JYWDkUz"} - "j" {:type :leaf, :by "root", :at 1517412729225, :text "d!", :id "S1ZK-P1Iz"} - "r" {:type :leaf, :by "root", :at 1517412729901, :text "m!", :id "BkzbtZPJLf"} - } - } - "r" { - :type :expr, :by "root", :at 1517413095425, :id "HyNemPkUM" - :data { - "T" {:type :leaf, :by "root", :at 1517413096945, :text "on-edit!", :id "rJ-RyXDkUM"} - "j" {:type :leaf, :by "root", :at 1517413097961, :text "m!", :id "B1Zbe7PyIz"} - } - } - } - } - } - } - } - } - } - } - "yt" { - :type :expr, :by "root", :at 1517326824904, :id "r1xUgPXUz" - :data { - "T" {:type :leaf, :by "root", :at 1517674546824, :text "span", :id "BJlbgMMCrGleaf"} - "j" { - :type :expr, :by "root", :at 1517326826552, :id "B1XlzMCSG" - :data { - "T" {:type :leaf, :by "root", :at 1517326826876, :text "{}", :id "ryrMefzCBM"} - "j" { - :type :expr, :by "root", :at 1517326827117, :id "Bkm7lMGRrM" - :data { - "T" {:type :leaf, :by "root", :at 1517326828338, :text ":style", :id "B1G7xzfRSz"} - "j" {:type :leaf, :by "root", :at 1517674549080, :text "style/link", :id "BkBNxMGRBG"} - } - } - "n" { - :type :expr, :by "root", :at 1517674537219, :id "r1-EePQLG" - :data { - "T" {:type :leaf, :by "root", :at 1517674540182, :text ":inner-text", :id "r1-EePQLGleaf"} - "j" {:type :leaf, :by "root", :at 1517674542142, :text "|rm", :id "SJQEVgv7Lf"} - } - } - "r" { - :type :expr, :by "root", :at 1517326835836, :id "BJhlzfRHM" - :data { - "T" {:type :leaf, :by "root", :at 1517326838663, :text ":on-click", :id "BJhlzfRHMleaf"} - "j" { - :type :expr, :by "root", :at 1517326839263, :id "S1G1-MMCBG" - :data { - "T" {:type :leaf, :by "root", :at 1517328595821, :text "action->", :id "r1bk-Mf0Hf"} - "j" {:type :leaf, :by "root", :at 1517328602224, :text ":workflow/remove", :id "H1bhAOMCrG"} - "r" { - :type :expr, :by "root", :at 1517328605026, :id "SkHkFzASG" - :data { - "T" {:type :leaf, :by "root", :at 1517328605596, :text ":id", :id "r14kFfRHz"} - "j" {:type :leaf, :by "root", :at 1517328606487, :text "workflow", :id "SJxIJKzCrG"} - } - } - } - } - } - } - } - } - } - } - } - } - "w" { - :type :expr, :by "root", :at 1517327994871, :id "B1QYUzAHM" - :data { - "T" {:type :leaf, :by "root", :at 1517328087280, :text "list->", :id "B1QYUzAHMleaf"} - "j" { - :type :expr, :by "root", :at 1517327995847, :id "r1W4YLGCBf" - :data { - "T" {:type :leaf, :by "root", :at 1517327996191, :text "{}", :id "SkxEt8MCHG"} - } - } - "r" { - :type :expr, :by "root", :at 1517328088167, :id "rkgxkvzAHf" - :data { - "T" {:type :leaf, :by "root", :at 1517328090739, :text "->>", :id "rkgxkvzAHfleaf"} - "j" { - :type :expr, :by "root", :at 1517328093616, :id "r1U1wzRHM" - :data { - "T" {:type :leaf, :by "root", :at 1517328094639, :text ":commands", :id "BJE1vGABG"} - "j" {:type :leaf, :by "root", :at 1517328096326, :text "workflow", :id "Skew1DMRHz"} - } - } - "r" { - :type :expr, :by "root", :at 1517328122225, :id "HklGbPGAHG" - :data { - "D" {:type :leaf, :by "root", :at 1517328123024, :text "map", :id "HJQZwGAHG"} - "T" { - :type :expr, :by "root", :at 1517328097056, :id "BketyDfCrz" - :data { - "T" {:type :leaf, :by "root", :at 1517328097474, :text "fn", :id "BketyDfCrzleaf"} - "j" { - :type :expr, :by "root", :at 1517328097748, :id "SklcyvM0Hz" - :data { - "T" { - :type :expr, :by "root", :at 1517328099423, :id "BysJPfASM" - :data { - "T" {:type :leaf, :by "root", :at 1517328099917, :text "[]", :id "By9JvzRrz"} - "j" {:type :leaf, :by "root", :at 1517328101303, :text "k", :id "ry-hJPzCBG"} - "r" {:type :leaf, :by "root", :at 1517328105859, :text "command", :id "ByCkwGRSG"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517328108723, :id "rySewM0rG" - :data { - "T" {:type :leaf, :by "root", :at 1517328109757, :text "[]", :id "rySewM0rGleaf"} - "j" {:type :leaf, :by "root", :at 1517328110114, :text "k", :id "rkZIgwzABG"} - "r" { - :type :expr, :by "root", :at 1517328130048, :id "ByeqbPzArf" - :data { - "D" {:type :leaf, :by "root", :at 1517328130799, :text "div", :id "B1W5ZPGCrf"} - "L" { - :type :expr, :by "root", :at 1517328131091, :id "HkXsZwM0Hz" - :data { - "T" {:type :leaf, :by "root", :at 1517328131459, :text "{}", :id "SJGjWvfCSz"} - "j" { - :type :expr, :by "root", :at 1517843560764, :id "SJe-ONlILG" - :data { - "T" {:type :leaf, :by "root", :at 1517843564397, :text ":style", :id "BJ-uNeUIf"} - "j" { - :type :expr, :by "root", :at 1517843564605, :id "SkHOEg8IM" - :data { - "T" {:type :leaf, :by "root", :at 1517843565868, :text "{}", :id "Hy8NO4l8LM"} - "j" { - :type :expr, :by "root", :at 1517843566106, :id "HJzLOEgLUf" - :data { - "T" {:type :leaf, :by "root", :at 1517843567730, :text ":font-family", :id "HyZ8dVlLIf"} - "j" {:type :leaf, :by "root", :at 1517843570577, :text "ui/font-code", :id "HklOu4eUIG"} - } - } - } - } - } - } - } - } - "P" { - :type :expr, :by "root", :at 1517328166273, :id "S1xzPVxUUM" - :data { - "T" {:type :leaf, :by "root", :at 1517328166978, :text "<>", :id "SyZAXDfABfleaf"} - "j" { - :type :expr, :by "root", :at 1517328168217, :id "BJWe4DMCBM" - :data { - "T" {:type :leaf, :by "root", :at 1517328169692, :text ":path", :id "rJb1VvM0SG"} - "j" {:type :leaf, :by "root", :at 1517328171334, :text "command", :id "SkbfVvMRSf"} - } - } - "r" { - :type :expr, :by "root", :at 1517843579580, :id "SJ4YVxI8f" - :data { - "T" {:type :leaf, :by "root", :at 1517843580528, :text "{}", :id "SJ4YVxI8fleaf"} - "j" { - :type :expr, :by "root", :at 1517843580759, :id "S1ZrtVgL8z" - :data { - "T" {:type :leaf, :by "root", :at 1517843583400, :text ":display", :id "rJxHFEx8UM"} - "j" {:type :leaf, :by "root", :at 1517843588165, :text ":inline-block", :id "r1MPKNl8If"} - } - } - "r" { - :type :expr, :by "root", :at 1517843588724, :id "ByTYNl8Uf" - :data { - "T" {:type :leaf, :by "root", :at 1517843599876, :text ":min-width", :id "ByTYNl8Ufleaf"} - "j" {:type :leaf, :by "root", :at 1517843619230, :text "200", :id "SJbRYVlUIG"} - } - } - } - } - } - } - "R" { - :type :expr, :by "root", :at 1517328175822, :id "r1lCvElLUG" - :data { - "T" {:type :leaf, :by "root", :at 1517328176772, :text "=<", :id "H1guEvfAHfleaf"} - "j" {:type :leaf, :by "root", :at 1517328177253, :text "8", :id "rkZYNPzRrz"} - "r" {:type :leaf, :by "root", :at 1517843552649, :text "nil", :id "H1guD4eI8f"} - } - } - "T" { - :type :expr, :by "root", :at 1517328112077, :id "rJdgDMABG" - :data { - "T" {:type :leaf, :by "root", :at 1517328160980, :text "<>", :id "BkmIgvM0HM"} - "j" { - :type :expr, :by "root", :at 1517328161810, :id "SJg9XPzCrz" - :data { - "D" {:type :leaf, :by "root", :at 1517328165402, :text ":code", :id "ByZ5XDfCHf"} - "T" {:type :leaf, :by "root", :at 1517328116788, :text "command", :id "rk79lDMRBf"} - } - } - "r" { - :type :expr, :by "root", :at 1517328212891, :id "S1T8DGCrz" - :data { - "T" {:type :leaf, :by "root", :at 1517328213314, :text "{}", :id "Skx3UPfCBG"} - "j" { - :type :expr, :by "root", :at 1517328213598, :id "ByA8PfRHz" - :data { - "T" {:type :leaf, :by "root", :at 1517328219107, :text ":background-color", :id "rkzaIvGRSM"} - "j" { - :type :expr, :by "root", :at 1517328219337, :id "SkEXPvzCHf" - :data { - "T" {:type :leaf, :by "root", :at 1517328219674, :text "hsl", :id "ByX7vPGRSz"} - "j" {:type :leaf, :by "root", :at 1517328220369, :text "0", :id "Hy-4wwz0rG"} - "r" {:type :leaf, :by "root", :at 1517328220638, :text "0", :id "rJmVwwfASM"} - "v" {:type :leaf, :by "root", :at 1517843625266, :text "95", :id "rJxSPPMASf"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517328228023, :id "Bke2vPMCHG" - :data { - "T" {:type :leaf, :by "root", :at 1517328229287, :text ":padding", :id "Bke2vPMCHGleaf"} - "j" {:type :leaf, :by "root", :at 1517328231583, :text "|0 8px", :id "rJLTvwfASM"} - } - } - "v" { - :type :expr, :by "root", :at 1517843603721, :id "r139ExUUM" - :data { - "T" {:type :leaf, :by "root", :at 1517843607618, :text ":display", :id "r139ExUUMleaf"} - "j" {:type :leaf, :by "root", :at 1517843611110, :text ":inline-block", :id "BJeeo4gLIM"} - } - } - "x" { - :type :expr, :by "root", :at 1517843612739, :id "H1gBoNgLIz" - :data { - "T" {:type :leaf, :by "root", :at 1517843614588, :text ":min-width", :id "H1gBoNgLIzleaf"} - "j" {:type :leaf, :by "root", :at 1517843633434, :text "320", :id "SklDiNeI8z"} - } - } - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517328296383, :id "B1JLLw1UM" - :data { - "T" {:type :leaf, :by "root", :at 1517674476610, :text "span", :id "SkbenDzCHMleaf"} - "j" { - :type :expr, :by "root", :at 1517328315505, :id "r18maDMRSf" - :data { - "T" {:type :leaf, :by "root", :at 1517328315860, :text "{}", :id "rJSm6wfCHf"} - "j" { - :type :expr, :by "root", :at 1517328316084, :id "BJfNTPGCSz" - :data { - "T" {:type :leaf, :by "root", :at 1517328317470, :text ":style", :id "B1-4avGArf"} - "j" {:type :leaf, :by "root", :at 1517674486922, :text "style/link", :id "Sy8pvMRBf"} - } - } - "n" { - :type :expr, :by "root", :at 1517674479389, :id "rJ-PxlPQLz" - :data { - "T" {:type :leaf, :by "root", :at 1517674481326, :text ":inner-text", :id "rJ-PxlPQLzleaf"} - "j" {:type :leaf, :by "root", :at 1517674482741, :text "|edit", :id "ryNKegvXUz"} - } - } - "r" { - :type :expr, :by "root", :at 1517328325083, :id "Byp6Pz0Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517328328469, :text ":on-click", :id "Byp6Pz0Szleaf"} - "j" { - :type :expr, :by "root", :at 1517413964707, :id "Hkr8LvJLG" - :data { - "T" {:type :leaf, :by "root", :at 1517413967436, :text "mutation->", :id "Syg4UUPJ8G"} - "j" { - :type :expr, :by "root", :at 1517413968366, :id "SyeuL8P1If" - :data { - "T" {:type :leaf, :by "root", :at 1517413969821, :text "assoc", :id "r1OILvkUz"} - "j" {:type :leaf, :by "root", :at 1517413970692, :text "state", :id "ryfqLUPyUG"} - "r" {:type :leaf, :by "root", :at 1517413975837, :text ":edit-command?", :id "rJboIUvJIz"} - "v" {:type :leaf, :by "root", :at 1517413976496, :text "true", :id "BygeDLw1Lz"} - "x" {:type :leaf, :by "root", :at 1517413982038, :text ":base-command", :id "rJZvIvy8f"} - "y" {:type :leaf, :by "root", :at 1517413988284, :text "command", :id "rkqw8PJIG"} - } - } - } - } - } - } - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517328296383, :id "ByeAZgPQLM" - :data { - "T" {:type :leaf, :by "root", :at 1517674453563, :text "span", :id "SkbenDzCHMleaf"} - "j" { - :type :expr, :by "root", :at 1517328315505, :id "r18maDMRSf" - :data { - "T" {:type :leaf, :by "root", :at 1517328315860, :text "{}", :id "rJSm6wfCHf"} - "j" { - :type :expr, :by "root", :at 1517328316084, :id "BJfNTPGCSz" - :data { - "T" {:type :leaf, :by "root", :at 1517328317470, :text ":style", :id "B1-4avGArf"} - "j" {:type :leaf, :by "root", :at 1517674459628, :text "style/link", :id "Sy8pvMRBf"} - } - } - "n" { - :type :expr, :by "root", :at 1517674461085, :id "rJrJeDmLG" - :data { - "T" {:type :leaf, :by "root", :at 1517674463062, :text ":inner-text", :id "rJrJeDmLGleaf"} - "j" {:type :leaf, :by "root", :at 1517674464033, :text "|rm", :id "ByXDyev7Uf"} - } - } - "r" { - :type :expr, :by "root", :at 1517328325083, :id "Byp6Pz0Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517328328469, :text ":on-click", :id "Byp6Pz0Szleaf"} - "j" { - :type :expr, :by "root", :at 1517328328801, :id "r1gZCPMCHM" - :data { - "T" {:type :leaf, :by "root", :at 1517328334632, :text "action->", :id "B1-0vz0SM"} - "j" {:type :leaf, :by "root", :at 1517328491951, :text ":workflow/remove-command", :id "B1eDRDzCHz"} - "n" { - :type :expr, :by "root", :at 1517674619084, :id "rk-7YgvmUf" - :data { - "T" {:type :leaf, :by "root", :at 1517674619441, :text "[]", :id "SylQKlDmLf"} - "j" { - :type :expr, :by "root", :at 1517674620196, :id "B1eVtlvmUz" - :data { - "T" {:type :leaf, :by "root", :at 1517674624265, :text ":id", :id "B1VYlw7IG"} - "j" {:type :leaf, :by "root", :at 1517674625911, :text "workflow", :id "rkNdKxDXIz"} - } - } - "r" { - :type :expr, :by "root", :at 1517674626949, :id "HkxjtxPXUf" - :data { - "T" {:type :leaf, :by "root", :at 1517674629099, :text ":id", :id "SkiFlPmLG"} - "j" {:type :leaf, :by "root", :at 1517674629954, :text "command", :id "r1MaKevXUM"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "wD" { - :type :expr, :by "root", :at 1517674435569, :id "Hk2ayDmUM" - :data { - "T" {:type :leaf, :by "root", :at 1517674436226, :text "=<", :id "Hk2ayDmUMleaf"} - "j" {:type :leaf, :by "root", :at 1517674437751, :text "nil", :id "B1TTJwX8f"} - "r" {:type :leaf, :by "root", :at 1517674438254, :text "16", :id "HkZC6kwmIz"} - } - } - "wT" { - :type :expr, :by "root", :at 1517674423587, :id "SJga1PQ8G" - :data { - "T" {:type :leaf, :by "root", :at 1517674426495, :text "div", :id "SJga1PQ8Gleaf"} - "j" { - :type :expr, :by "root", :at 1517674426750, :id "rkgX61vQ8G" - :data { - "T" {:type :leaf, :by "root", :at 1517674427122, :text "{}", :id "S17TyDXIG"} - } - } - "r" { - :type :expr, :by "root", :at 1517326824904, :id "rJrTywQ8z" - :data { - "T" {:type :leaf, :by "root", :at 1517326826157, :text "button", :id "BJlbgMMCrGleaf"} - "j" { - :type :expr, :by "root", :at 1517326826552, :id "B1XlzMCSG" - :data { - "T" {:type :leaf, :by "root", :at 1517326826876, :text "{}", :id "ryrMefzCBM"} - "j" { - :type :expr, :by "root", :at 1517326827117, :id "Bkm7lMGRrM" - :data { - "T" {:type :leaf, :by "root", :at 1517326828338, :text ":style", :id "B1G7xzfRSz"} - "j" {:type :leaf, :by "root", :at 1517326833032, :text "style/button", :id "BkBNxMGRBG"} - } - } - "r" { - :type :expr, :by "root", :at 1517326835836, :id "BJhlzfRHM" - :data { - "T" {:type :leaf, :by "root", :at 1517326838663, :text ":on-click", :id "BJhlzfRHMleaf"} - "j" { - :type :expr, :by "root", :at 1517326839263, :id "S1G1-MMCBG" - :data { - "T" {:type :leaf, :by "root", :at 1517326839773, :text "fn", :id "r1bk-Mf0Hf"} - "j" { - :type :expr, :by "root", :at 1517326840106, :id "HJ-g-zfRBM" - :data { - "T" {:type :leaf, :by "root", :at 1517326841287, :text "e", :id "SklxZMGAHG"} - "j" {:type :leaf, :by "root", :at 1517326843145, :text "d!", :id "HJmZbzMAHz"} - "r" {:type :leaf, :by "root", :at 1517326844231, :text "m!", :id "SJf7ZGGRSM"} - } - } - "r" { - :type :expr, :by "root", :at 1517327323509, :id "H1-QkNzRSG" - :data { - "T" {:type :leaf, :by "root", :at 1517327324740, :text "m!", :id "H1-QkNzRSGleaf"} - "j" { - :type :expr, :by "root", :at 1517327327865, :id "BJdJNzCHG" - :data { - "T" {:type :leaf, :by "root", :at 1517327329559, :text "assoc", :id "SyDkEzCSf"} - "j" {:type :leaf, :by "root", :at 1517327331058, :text "state", :id "HJx9kEzRHz"} - "r" {:type :leaf, :by "root", :at 1517327333313, :text ":edit-command?", :id "ByEj1Vf0HG"} - "v" {:type :leaf, :by "root", :at 1517327334556, :text "true", :id "SyUakEfABf"} - "x" {:type :leaf, :by "root", :at 1517413873432, :text ":base-command", :id "B1ZHeLDJLz"} - "y" {:type :leaf, :by "root", :at 1517413874314, :text "nil", :id "Sk9eUwJLG"} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517326855836, :id "rkxeGMGCHz" - :data { - "T" {:type :leaf, :by "root", :at 1517326857034, :text "<>", :id "rkxeGMGCHzleaf"} - "j" {:type :leaf, :by "root", :at 1517326859486, :text "|add", :id "ryZ-zMzRrG"} - } - } - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517327286012, :id "B10nmfCrz" - :data { - "D" {:type :leaf, :by "root", :at 1517327286578, :text "if", :id "Skx0hXMRSf"} - "L" { - :type :expr, :by "root", :at 1517327338243, :id "BklMgVGRSG" - :data { - "T" {:type :leaf, :by "root", :at 1517327340966, :text ":edit-command?", :id "ryxy6mGAHG"} - "j" {:type :leaf, :by "root", :at 1517327341751, :text "state", :id "Bk7HlNzCrG"} - } - } - "T" { - :type :expr, :by "root", :at 1517327365570, :id "rJRZNzRHM" - :data { - "D" {:type :leaf, :by "root", :at 1517327366184, :text "let", :id "Hyl0-VfABG"} - "L" { - :type :expr, :by "root", :at 1517327366392, :id "SyHCbEMRHf" - :data { - "T" { - :type :expr, :by "root", :at 1517327366736, :id "S1JMVfABM" - :data { - "T" {:type :leaf, :by "root", :at 1517327370781, :text "on-close!", :id "SJV0ZEf0BM"} - "j" { - :type :expr, :by "root", :at 1517327371192, :id "H1W7fEfAHz" - :data { - "T" {:type :leaf, :by "root", :at 1517327371567, :text "fn", :id "HygQzVMRBG"} - "j" { - :type :expr, :by "root", :at 1517327372033, :id "SkWEf4z0Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517327372975, :text "m!", :id "SJxVM4GABz"} - } - } - "n" { - :type :expr, :by "root", :at 1517327743518, :id "BJdYSG0BM" - :data { - "T" {:type :leaf, :by "root", :at 1517327744483, :text "println", :id "BJdYSG0BMleaf"} - "j" {:type :leaf, :by "root", :at 1517327748521, :text "|cursor", :id "SkKtHzCHf"} - "r" {:type :leaf, :by "root", :at 1517327751383, :text "%cursor", :id "BkxTFBf0Bz"} - } - } - "r" { - :type :expr, :by "root", :at 1517327373506, :id "S1GSGNf0HG" - :data { - "T" {:type :leaf, :by "root", :at 1517327374161, :text "m!", :id "S1GSGNf0HGleaf"} - "j" {:type :leaf, :by "root", :at 1517327376588, :text "%cursor", :id "ByvGNz0BG"} - "r" { - :type :expr, :by "root", :at 1517327380372, :id "S12fEMRrf" - :data { - "T" {:type :leaf, :by "root", :at 1517327383038, :text "assoc", :id "rkltz4zRHG"} - "j" {:type :leaf, :by "root", :at 1517327383685, :text "state", :id "rkx1mNzAHM"} - "r" {:type :leaf, :by "root", :at 1517327386404, :text ":edit-command?", :id "HyWgQVMAHf"} - "v" {:type :leaf, :by "root", :at 1517327387020, :text "false", :id "ByXQVfABG"} - } - } - } - } - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517327645592, :id "rJL7SM0Sf" - :data { - "T" {:type :leaf, :by "root", :at 1517327645842, :text "workflow-id", :id "rJL7SM0Sfleaf"} - "j" { - :type :expr, :by "root", :at 1517327649451, :id "H1tQHGRHf" - :data { - "T" {:type :leaf, :by "root", :at 1517327650717, :text ":id", :id "rJbUmrfArz"} - "j" {:type :leaf, :by "root", :at 1517327652040, :text "workflow", :id "HyZo7SGRSG"} - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517327346451, :id "r1cgEGRSz" - :data { - "D" {:type :leaf, :by "root", :at 1517327350654, :text "comp-dialog", :id "r1ogVzCrM"} - "L" {:type :leaf, :by "root", :at 1517327364845, :text "on-close!", :id "H1dWVGCHf"} - "T" { - :type :expr, :by "root", :at 1517327255209, :id "B1lJs7fCrz" - :data { - "D" {:type :leaf, :by "root", :at 1517327265926, :text "cursor->", :id "H1YjXMRBz"} - "L" {:type :leaf, :by "root", :at 1517327279999, :text ":command", :id "BJS2QfAHz"} - "T" {:type :leaf, :by "root", :at 1517327261602, :text "comp-command-editor", :id "B1lJs7fCrzleaf"} - "j" {:type :leaf, :by "root", :at 1517327281370, :text "states", :id "rkKnQf0HG"} - "r" {:type :leaf, :by "root", :at 1517327393073, :text "on-close!", :id "S1xIXVzRrG"} - "v" {:type :leaf, :by "root", :at 1517327643539, :text "workflow-id", :id "SkXQrGAHf"} - "x" { - :type :expr, :by "root", :at 1517413991486, :id "ryl1dLw1If" - :data { - "T" {:type :leaf, :by "root", :at 1517413995440, :text ":base-command", :id "ry1u8Dk8G"} - "j" {:type :leaf, :by "root", :at 1517413997690, :text "state", :id "BJruUwyLz"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "comp-workflow-editor" { - :type :expr, :by "root", :at 1517292248934, :id "S1xWJotTrf" - :data { - "T" {:type :leaf, :by "root", :at 1517292261424, :text "defcomp", :id "SkWW1oY6rM"} - "j" {:type :leaf, :by "root", :at 1517292248934, :text "comp-workflow-editor", :id "rkfbJjtpHM"} - "r" { - :type :expr, :by "root", :at 1517292248934, :id "BJXWksY6rG" - :data { - "T" {:type :leaf, :by "root", :at 1517325869853, :text "states", :id "BJS4CWASG"} - "j" {:type :leaf, :by "root", :at 1517326551743, :text "on-close!", :id "HygJ1ZG0Hz"} - "r" {:type :leaf, :by "root", :at 1517413142749, :text "base-workflow", :id "BJdGmDkLz"} - } - } - "v" { - :type :expr, :by "root", :at 1517325870983, :id "H1lD4RWCBG" - :data { - "D" {:type :leaf, :by "root", :at 1517325872581, :text "let", :id "HJbPV0ZRrG"} - "L" { - :type :expr, :by "root", :at 1517325874070, :id "SJ-5ECZ0SG" - :data { - "T" { - :type :expr, :by "root", :at 1517325874244, :id "H1Gq4CWABf" - :data { - "T" {:type :leaf, :by "root", :at 1517325874898, :text "state", :id "HkxtNA-0SM"} - "j" { - :type :expr, :by "root", :at 1517325879165, :id "rkkSRWCSM" - :data { - "T" {:type :leaf, :by "root", :at 1517325881037, :text "or", :id "S1EsERW0Sf"} - "j" { - :type :expr, :by "root", :at 1517325881320, :id "BJzWrRWArG" - :data { - "T" {:type :leaf, :by "root", :at 1517325882735, :text ":data", :id "rk-WBAWRBM"} - "j" {:type :leaf, :by "root", :at 1517326027697, :text "states", :id "SkMmrCWASG"} - } - } - "r" { - :type :expr, :by "root", :at 1517413145532, :id "ryMm7PyUG" - :data { - "D" {:type :leaf, :by "root", :at 1517413148052, :text "if", :id "SJxf77vJUf"} - "L" { - :type :expr, :by "root", :at 1517413148334, :id "SkQ47mvkLf" - :data { - "T" {:type :leaf, :by "root", :at 1517413149348, :text "some?", :id "H1MEQQDyUM"} - "j" {:type :leaf, :by "root", :at 1517413151923, :text "base-workflow", :id "Sk4rQ7vkUf"} - } - } - "P" { - :type :expr, :by "root", :at 1517413153017, :id "r1KQ7vy8M" - :data { - "T" {:type :leaf, :by "root", :at 1517413163722, :text "select-keys", :id "BknX7wJUf"} - "j" {:type :leaf, :by "root", :at 1517413165895, :text "base-workflow", :id "ByZVNXw18f"} - "r" { - :type :expr, :by "root", :at 1517413166376, :id "HJ7INXDJUf" - :data { - "T" {:type :leaf, :by "root", :at 1517413166661, :text "[]", :id "rkMIE7wyIG"} - "j" {:type :leaf, :by "root", :at 1517413167962, :text ":name", :id "Bk-vVmwyLf"} - "r" {:type :leaf, :by "root", :at 1517413169695, :text ":base-dir", :id "SyQdNQv1LM"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517325884899, :id "HkeBS0-RSM" - :data { - "T" {:type :leaf, :by "root", :at 1517325889093, :text "{}", :id "HkeBS0-RSMleaf"} - "j" { - :type :expr, :by "root", :at 1517325890293, :id "B1Z5SCbArz" - :data { - "T" {:type :leaf, :by "root", :at 1517325900231, :text ":name", :id "Skg5HCWCSG"} - "j" {:type :leaf, :by "root", :at 1517325900584, :text "|", :id "S1GEIR-0Sf"} - } - } - "r" { - :type :expr, :by "root", :at 1517325901564, :id "ryL8R-ASz" - :data { - "T" {:type :leaf, :by "root", :at 1517325908343, :text ":base-dir", :id "ryL8R-ASzleaf"} - "j" {:type :leaf, :by "root", :at 1517325918028, :text "|./", :id "r1pUA-Rrz"} - } - } - } - } - } - } - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517292262573, :id "H1yejYaBz" - :data { - "T" {:type :leaf, :by "root", :at 1517292263084, :text "div", :id "H1yejYaBzleaf"} - "j" { - :type :expr, :by "root", :at 1517292263342, :id "By4yloYaSM" - :data { - "T" {:type :leaf, :by "root", :at 1517292264577, :text "{}", :id "BJmyejFTSM"} - } - } - "n" { - :type :expr, :by "root", :at 1517413768104, :id "Hylx5BvkLf" - :data { - "T" {:type :leaf, :by "root", :at 1517413769113, :text "div", :id "Hylx5BvkLfleaf"} - "j" { - :type :expr, :by "root", :at 1517413769350, :id "r17-qSvJ8z" - :data { - "T" {:type :leaf, :by "root", :at 1517413769757, :text "{}", :id "HkfW9SPyLM"} - } - } - "r" { - :type :expr, :by "root", :at 1517413770311, :id "HJfG9HP1Uf" - :data { - "T" {:type :leaf, :by "root", :at 1517413771064, :text "<>", :id "HJfG9HP1Ufleaf"} - "j" {:type :leaf, :by "root", :at 1517413777869, :text "|Workflow", :id "rkWm9SvJLf"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517326211618, :id "BkhFJG0SM" - :data { - "D" {:type :leaf, :by "root", :at 1517326212378, :text "div", :id "BJlnYyGArG"} - "L" { - :type :expr, :by "root", :at 1517326212699, :id "rJ6FJG0Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517326213170, :text "{}", :id "rkN2Y1M0Hf"} - } - } - "T" { - :type :expr, :by "root", :at 1517236809973, :id "BkxMbjK6BG" - :data { - "T" {:type :leaf, :by "root", :at 1517236813266, :text "input", :id "r1gMLGnnrMleaf"} - "j" { - :type :expr, :by "root", :at 1517236813509, :id "BJXrIfhhSG" - :data { - "T" {:type :leaf, :by "root", :at 1517236813919, :text "{}", :id "rkGHLfh2Bz"} - "j" { - :type :expr, :by "root", :at 1517236873128, :id "BklWqMnnHf" - :data { - "T" {:type :leaf, :by "root", :at 1517236874644, :text ":style", :id "BkW5z3hSG"} - "j" { - :type :expr, :by "root", :at 1517236914789, :id "rki2M2hSz" - :data { - "D" {:type :leaf, :by "root", :at 1517236920107, :text "merge", :id "rkx03M33Sf"} - "T" {:type :leaf, :by "root", :at 1517236876148, :text "ui/input", :id "HJWX5zhnrM"} - "j" { - :type :expr, :by "root", :at 1517236920538, :id "BJ-aMnnSG" - :data { - "T" {:type :leaf, :by "root", :at 1517236920861, :text "{}", :id "ryBg6f2hHM"} - "j" { - :type :expr, :by "root", :at 1517236921082, :id "H17WpznhBz" - :data { - "T" {:type :leaf, :by "root", :at 1517236921943, :text ":width", :id "Byz-6f2hBf"} - "j" {:type :leaf, :by "root", :at 1517236923231, :text "240", :id "HJXTG2nrz"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517236881539, :id "Sk95f33Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517236883869, :text ":placeholder", :id "Sk95f33Bzleaf"} - "j" {:type :leaf, :by "root", :at 1517236900033, :text "|Workflow name", :id "B172cGh3rz"} - } - } - "v" { - :type :expr, :by "root", :at 1517236942518, :id "HyP0zh2rM" - :data { - "T" {:type :leaf, :by "root", :at 1517237014605, :text ":value", :id "HyP0zh2rMleaf"} - "j" { - :type :expr, :by "root", :at 1517237015978, :id "S1ggmQ22BG" - :data { - "T" {:type :leaf, :by "root", :at 1517237018150, :text ":name", :id "B1lJQmnhrG"} - "j" {:type :leaf, :by "root", :at 1517237019030, :text "state", :id "SJ7fmQnnSM"} - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517237020241, :id "HJZ477n3Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517237023048, :text ":on-input", :id "HJZ477n3Hfleaf"} - "j" { - :type :expr, :by "root", :at 1517237024699, :id "HktXmnhBz" - :data { - "T" {:type :leaf, :by "root", :at 1517237026078, :text "mutation->", :id "ByND772nSf"} - "j" { - :type :expr, :by "root", :at 1517237031727, :id "HyegNmhhBz" - :data { - "T" {:type :leaf, :by "root", :at 1517237032775, :text "assoc", :id "Bkl4722BM"} - "j" {:type :leaf, :by "root", :at 1517237034944, :text "state", :id "BJzNm33SM"} - "r" {:type :leaf, :by "root", :at 1517237036389, :text ":name", :id "Sy4mEQh3rG"} - "v" { - :type :expr, :by "root", :at 1517237038655, :id "ryv4X32HG" - :data { - "T" {:type :leaf, :by "root", :at 1517237039449, :text ":value", :id "rkSN722HM"} - "j" {:type :leaf, :by "root", :at 1517237041861, :text "%e", :id "HyYVQ2hHG"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "t" { - :type :expr, :by "root", :at 1517326332478, :id "rJgNWlzRHM" - :data { - "L" {:type :leaf, :by "root", :at 1517326349717, :text "=<", :id "H1grzxfRSz"} - "j" {:type :leaf, :by "root", :at 1517326337409, :text "nil", :id "BJbObxzASz"} - "r" {:type :leaf, :by "root", :at 1517326355797, :text "16", :id "Hkc-gG0Sf"} - } - } - "v" { - :type :expr, :by "root", :at 1517326214326, :id "ryWRYyMCrz" - :data { - "T" {:type :leaf, :by "root", :at 1517326214846, :text "div", :id "ryWRYyMCrzleaf"} - "j" { - :type :expr, :by "root", :at 1517326215098, :id "Hy7y9JMRHz" - :data { - "T" {:type :leaf, :by "root", :at 1517326215456, :text "{}", :id "rJG15yGCBG"} - } - } - "r" { - :type :expr, :by "root", :at 1517236809973, :id "H1lwc1fRrM" - :data { - "T" {:type :leaf, :by "root", :at 1517236813266, :text "input", :id "r1gMLGnnrMleaf"} - "j" { - :type :expr, :by "root", :at 1517236813509, :id "BJXrIfhhSG" - :data { - "T" {:type :leaf, :by "root", :at 1517236813919, :text "{}", :id "rkGHLfh2Bz"} - "j" { - :type :expr, :by "root", :at 1517236873128, :id "BklWqMnnHf" - :data { - "T" {:type :leaf, :by "root", :at 1517236874644, :text ":style", :id "BkW5z3hSG"} - "j" { - :type :expr, :by "root", :at 1517236914789, :id "rki2M2hSz" - :data { - "D" {:type :leaf, :by "root", :at 1517236920107, :text "merge", :id "rkx03M33Sf"} - "T" {:type :leaf, :by "root", :at 1517236876148, :text "ui/input", :id "HJWX5zhnrM"} - "j" { - :type :expr, :by "root", :at 1517236920538, :id "BJ-aMnnSG" - :data { - "T" {:type :leaf, :by "root", :at 1517236920861, :text "{}", :id "ryBg6f2hHM"} - "j" { - :type :expr, :by "root", :at 1517236921082, :id "H17WpznhBz" - :data { - "T" {:type :leaf, :by "root", :at 1517236921943, :text ":width", :id "Byz-6f2hBf"} - "j" {:type :leaf, :by "root", :at 1517236923231, :text "240", :id "HJXTG2nrz"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517236881539, :id "Sk95f33Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517236883869, :text ":placeholder", :id "Sk95f33Bzleaf"} - "j" {:type :leaf, :by "root", :at 1517326236568, :text "|Base directory", :id "B172cGh3rz"} - } - } - "v" { - :type :expr, :by "root", :at 1517236942518, :id "HyP0zh2rM" - :data { - "T" {:type :leaf, :by "root", :at 1517237014605, :text ":value", :id "HyP0zh2rMleaf"} - "j" { - :type :expr, :by "root", :at 1517237015978, :id "S1ggmQ22BG" - :data { - "T" {:type :leaf, :by "root", :at 1517326241498, :text ":base-dir", :id "B1lJQmnhrG"} - "j" {:type :leaf, :by "root", :at 1517237019030, :text "state", :id "SJ7fmQnnSM"} - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517237020241, :id "HJZ477n3Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517237023048, :text ":on-input", :id "HJZ477n3Hfleaf"} - "j" { - :type :expr, :by "root", :at 1517237024699, :id "HktXmnhBz" - :data { - "T" {:type :leaf, :by "root", :at 1517237026078, :text "mutation->", :id "ByND772nSf"} - "j" { - :type :expr, :by "root", :at 1517237031727, :id "HyegNmhhBz" - :data { - "T" {:type :leaf, :by "root", :at 1517237032775, :text "assoc", :id "Bkl4722BM"} - "j" {:type :leaf, :by "root", :at 1517237034944, :text "state", :id "BJzNm33SM"} - "r" {:type :leaf, :by "root", :at 1517326244941, :text ":base-dir", :id "Sy4mEQh3rG"} - "v" { - :type :expr, :by "root", :at 1517237038655, :id "ryv4X32HG" - :data { - "T" {:type :leaf, :by "root", :at 1517237039449, :text ":value", :id "rkSN722HM"} - "j" {:type :leaf, :by "root", :at 1517237041861, :text "%e", :id "HyYVQ2hHG"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "w" { - :type :expr, :by "root", :at 1517326356763, :id "SJepzxzArM" - :data { - "T" {:type :leaf, :by "root", :at 1517326357542, :text "=<", :id "SJepzxzArMleaf"} - "j" {:type :leaf, :by "root", :at 1517326358298, :text "nil", :id "S1lAMlMAHG"} - "r" {:type :leaf, :by "root", :at 1517326359082, :text "16", :id "BJJXgz0BM"} - } - } - "x" { - :type :expr, :by "root", :at 1517326259504, :id "rkei21f0rM" - :data { - "T" {:type :leaf, :by "root", :at 1517326260363, :text "div", :id "rkei21f0rMleaf"} - "j" { - :type :expr, :by "root", :at 1517326260579, :id "r1T3JzASf" - :data { - "T" {:type :leaf, :by "root", :at 1517326260921, :text "{}", :id "rJGn3kz0HG"} - "j" { - :type :expr, :by "root", :at 1517326261809, :id "ByR3yG0Hz" - :data { - "T" {:type :leaf, :by "root", :at 1517326262545, :text ":style", :id "rJfp3JMCSM"} - "j" {:type :leaf, :by "root", :at 1517326318776, :text "ui/row-parted", :id "BylkpyMABG"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517326266373, :id "S1-Gp1fCHz" - :data { - "T" {:type :leaf, :by "root", :at 1517326268815, :text "span", :id "S1-Gp1fCHzleaf"} - "j" { - :type :expr, :by "root", :at 1517326272232, :id "HkbO6yz0HM" - :data { - "T" {:type :leaf, :by "root", :at 1517326273540, :text "{}", :id "Hkg_TJzCHf"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517326274434, :id "BkGqa1MRBG" - :data { - "T" {:type :leaf, :by "root", :at 1517326275861, :text "button", :id "BkGqa1MRBGleaf"} - "j" { - :type :expr, :by "root", :at 1517326276194, :id "rk726JGCBz" - :data { - "T" {:type :leaf, :by "root", :at 1517326276488, :text "{}", :id "r1G3pyfCBz"} - "j" { - :type :expr, :by "root", :at 1517326279260, :id "rJxJ0JfRSz" - :data { - "T" {:type :leaf, :by "root", :at 1517326279901, :text ":style", :id "rka6yGCHG"} - "j" {:type :leaf, :by "root", :at 1517326287811, :text "style/button", :id "rkVgRkGCHz"} - } - } - "r" { - :type :expr, :by "root", :at 1517326374624, :id "H1y4lf0Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517326380654, :text ":on-click", :id "H1y4lf0Bzleaf"} - "j" { - :type :expr, :by "root", :at 1517326403686, :id "Bk2rgGCHG" - :data { - "T" {:type :leaf, :by "root", :at 1517326404134, :text "fn", :id "SJiBgfRHz"} - "j" { - :type :expr, :by "root", :at 1517326404378, :id "S1XhHxzCBf" - :data { - "T" {:type :leaf, :by "root", :at 1517326404585, :text "e", :id "rkMhBeGCrG"} - "j" {:type :leaf, :by "root", :at 1517326405671, :text "d!", :id "SkepSgMRBG"} - "r" {:type :leaf, :by "root", :at 1517326406428, :text "m!", :id "SJlCBgz0Bz"} - } - } - "r" { - :type :expr, :by "root", :at 1517326407285, :id "r1eJIxMCHz" - :data { - "T" {:type :leaf, :by "root", :at 1517326415451, :text "let", :id "r1eJIxMCHzleaf"} - "j" { - :type :expr, :by "root", :at 1517326415765, :id "B1lOIlG0BG" - :data { - "T" { - :type :expr, :by "root", :at 1517326415911, :id "rybu8gfCSG" - :data { - "T" {:type :leaf, :by "root", :at 1517326419941, :text "data", :id "BkOIez0HG"} - "j" { - :type :expr, :by "root", :at 1517326486674, :id "Sk1jlzASf" - :data { - "D" {:type :leaf, :by "root", :at 1517326489023, :text "select-keys", :id "r1lJilGRSz"} - "T" {:type :leaf, :by "root", :at 1517326485859, :text "state", :id "Hkxp5gG0Sf"} - "j" { - :type :expr, :by "root", :at 1517326490090, :id "BJefigG0BG" - :data { - "T" {:type :leaf, :by "root", :at 1517326490713, :text "[]", :id "S1Msxf0Sf"} - "j" {:type :leaf, :by "root", :at 1517326493149, :text ":name", :id "BkZmogf0BM"} - "r" {:type :leaf, :by "root", :at 1517326495054, :text ":base-dir", :id "SJQHogGArG"} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517413189870, :id "SyCSXvyLz" - :data { - "D" {:type :leaf, :by "root", :at 1517413192029, :text "if", :id "r1eRHXDk8z"} - "L" { - :type :expr, :by "root", :at 1517413192278, :id "S1Ql8XDyUG" - :data { - "T" {:type :leaf, :by "root", :at 1517413192930, :text "some?", :id "rJflI7vkIM"} - "j" {:type :leaf, :by "root", :at 1517413195702, :text "base-workflow", :id "H1XWI7v1IM"} - } - } - "P" { - :type :expr, :by "root", :at 1517413197406, :id "HJSLmPk8z" - :data { - "T" {:type :leaf, :by "root", :at 1517413327081, :text "d!", :id "HJSLmPk8zleaf"} - "j" {:type :leaf, :by "root", :at 1517413204542, :text ":workflow/edit", :id "SyqUXwJLz"} - "r" { - :type :expr, :by "root", :at 1517413205440, :id "S1Z6UmDkUM" - :data { - "T" {:type :leaf, :by "root", :at 1517413269641, :text "assoc", :id "rJxaU7w1Uf"} - "r" {:type :leaf, :by "root", :at 1517413217045, :text "data", :id "r1BvXDJIf"} - "v" {:type :leaf, :by "root", :at 1517413295448, :text ":id", :id "HJU27wkIf"} - "x" { - :type :expr, :by "root", :at 1517413310632, :id "Bkgv6XwJLz" - :data { - "D" {:type :leaf, :by "root", :at 1517413312226, :text ":id", :id "SyZwp7vJUG"} - "T" {:type :leaf, :by "root", :at 1517413299095, :text "base-workflow", :id "H1OnXPJIG"} - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517326507252, :id "Bkgm2lMRBG" - :data { - "T" {:type :leaf, :by "root", :at 1517326508257, :text "d!", :id "Bkgm2lMRBGleaf"} - "j" {:type :leaf, :by "root", :at 1517326511104, :text ":workflow/create", :id "ry-V3eGCBM"} - "r" {:type :leaf, :by "root", :at 1517326512401, :text "data", :id "rkSP3gfCrf"} - } - } - } - } - "t" { - :type :expr, :by "root", :at 1517326562286, :id "HJ-5kZGRrz" - :data { - "T" {:type :leaf, :by "root", :at 1517326563405, :text "m!", :id "HJ-5kZGRrzleaf"} - "j" {:type :leaf, :by "root", :at 1517326565092, :text "nil", :id "rkn1bzABG"} - } - } - "v" { - :type :expr, :by "root", :at 1517326558497, :id "Sy81WMArM" - :data { - "T" {:type :leaf, :by "root", :at 1517326558907, :text "on-close!", :id "Sy81WMArMleaf"} - "j" {:type :leaf, :by "root", :at 1517326567364, :text "m!", :id "BygAJbM0SM"} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517326288815, :id "rktCJzABG" - :data { - "T" {:type :leaf, :by "root", :at 1517326289779, :text "<>", :id "rktCJzABGleaf"} - "j" {:type :leaf, :by "root", :at 1517326298371, :text "|Create Workflow", :id "BJZq0yfCSz"} - } - } - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517233251072, :id "Hy7oDEjnSM" - :data {} - } - } - "app.main" { - :ns { - :type :expr, :id "S1uAGcLllRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1KCzq8geASW", :text "ns", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BycAGqLleAH-", :text "app.main", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "BysRMcUleArZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B130M9IxgASW", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rypCzcUgeAHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S10CGq8exABb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HyJ1m9Ueg0S-", :text "respo.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SylJXqLgxRrW", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "Hkb17q8lg0H-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BkzkmqIge0rW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkmJX5LelABb", :text "render!", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SkEkQ9IgxArW", :text "clear-cache!", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "SJBkX9Ugl0S-", :text "realize-ssr!", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "ryIJ7cIglCrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkPyQqLlgCBb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1Ok75IxgRSW", :text "respo.cursor", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SyFyQqIxlCrW", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SJ9J798ggAHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJoJXqLgeRHW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1ny7cUlx0Bb", :text "mutate", :by "root", :at 1500541010211} - } - } - } - } - "v" { - :type :expr, :id "r1pJXcIgx0SW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJ0J7cLeeCS-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJJe75Igx0Sb", :text "app.comp.container", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "rklgX5UxxCHW", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SyWx7qIex0BW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkMx75Ixl0rW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJmxQqIelAS-", :text "comp-container", :by "root", :at 1500541010211} - } - } - } - } - "x" { - :type :expr, :id "SyVxmc8geRSb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1Blm5LelRr-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJUlmc8eeRSZ", :text "cljs.reader", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "rJDxQ5LexAHb", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "B1OxX98exRBW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyKeX98egArb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1cg7qUlgABb", :text "read-string", :by "root", :at 1500541010211} - } - } - } - } - "y" { - :type :expr, :id "BJjlQ9LglRrW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJ2em5LxgAS-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkagXcUllRH-", :text "app.network", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "ByAg7qLxl0Bb", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "BJ1-75UllCrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ByeZm9UelRSZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJ-W7q8eeRHW", :text "send!", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "ryz-m9IxlRHW", :text "setup-socket!", :by "root", :at 1500541010211} - } - } - } - } - "yT" { - :type :expr, :id "HJXbm58xeRrW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B14bQq8eg0rW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HyrZm9IegRSZ", :text "app.schema", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BJ8b75LgeCS-", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "Byw-mqIgl0HZ", :text "schema", :by "root", :at 1500541010211} - } - } - "yj" { - :type :expr, :by "root", :at 1517414743967, :id "ryxxDYDyLG" - :data { - "T" {:type :leaf, :by "root", :at 1517414744344, :text "[]", :id "ryxxDYDyLGleaf"} - "j" {:type :leaf, :by "root", :at 1517414747595, :text "app.util", :id "BkQxDtP1Iz"} - "r" {:type :leaf, :by "root", :at 1517414749147, :text ":refer", :id "BkxVPFvyUG"} - "v" { - :type :expr, :by "root", :at 1517414749364, :id "BkwBvYPkUf" - :data { - "T" {:type :leaf, :by "root", :at 1517414749557, :text "[]", :id "B1USwtvJ8G"} - "j" {:type :leaf, :by "root", :at 1517414752660, :text "test-join-path!", :id "S1x8Ptw1Lz"} - } - } - } - } - } - } - } - } - :defs { - "*states" { - :type :expr, :id "HyttQ9UlgCSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJqtmc8gx0BZ", :text "defonce", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJjtXqUxg0SZ", :text "*states", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "HynY7qLeeRH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJpFQ5Uxe0BZ", :text "atom", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HkRKmc8leABb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyJ975UexAHW", :text "{}", :by "root", :at 1500541010211} - } - } - } - } - } - } - "*store" { - :type :expr, :id "H1dE79UxlCHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyFVQqIgxAH-", :text "defonce", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJ9NQcLgx0rW", :text "*store", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "Hkj4X98xxRrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H12V7q8xeASW", :text "atom", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ry6EXcUleRBb", :text "nil", :by "root", :at 1500541010211} - } - } - } - } - "connect!" { - :type :expr, :id "SklUcYsZWG", :by "B1y7Rc-Zz", :at 1512319373663 - :data { - "T" {:type :leaf, :text "defn", :id "HkbI9FiZ-M", :by "B1y7Rc-Zz", :at 1512319373663} - "j" {:type :leaf, :text "connect!", :id "SJzLqFobWM", :by "B1y7Rc-Zz", :at 1512319373663} - "r" { - :type :expr, :id "Bkm8qFiWbM", :by "B1y7Rc-Zz", :at 1512319373663 - :data {} - } - "v" { - :type :expr, :id "H1lu9KsW-f", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hy3r798lg0Sb", :text "setup-socket!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1aHmq8xeRr-", :text "*store", :by "root", :at 1500541010211} - "r" { - :type :expr, :by "root", :at 1517675880881, :id "rkl-_BPXUz" - :data { - "D" {:type :leaf, :by "root", :at 1517675884358, :text "let", :id "Hy-W_Bw78G"} - "L" { - :type :expr, :by "root", :at 1517675885161, :id "BJxBuBP7Iz" - :data { - "T" { - :type :expr, :by "root", :at 1517675885304, :id "S1-HdrvX8M" - :data { - "T" {:type :leaf, :by "root", :at 1517675889057, :text "app-host", :id "ryHdBDXLG"} - "j" { - :type :expr, :id "BkjOSD7LG", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S18UQcUlgRSW", :text ".-hostname", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJPL75UggCBZ", :text "js/location", :by "root", :at 1500541010211} - } - } - } - } - } - } - "T" { - :type :expr, :id "HkABX5IexArZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1y8Q5UxxCrW", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "Hke8Q58gxCS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1-8mcIel0SZ", :text ":url", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rJMUQ98lgArW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJ7ImcUxgCSb", :text "str", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkV8XqLle0Bb", :text "|ws://", :by "root", :at 1517675864129} - "p" {:type :leaf, :by "root", :at 1517675899831, :text "|localhost", :id "Hkea_rv7IM"} - "v" {:type :leaf, :id "rkOI7qLxgASZ", :text "|:", :by "root", :at 1500541010211} - "x" { - :type :expr, :id "r1Y8Q9IgeABb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1cIQcUxlAHb", :text ":port", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkjU79Igg0Sb", :text "schema/configs", :by "root", :at 1500541010211} - } - } - } - } - } - } - "r" { - :type :expr, :id "SJhLQcIlxCS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJTIQ9LeeAr-", :text ":on-close!", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "S1C8mcUgg0rZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1JP7cIex0rZ", :text "fn", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SygDm58xe0SZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyWv798egRSb", :text "event", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "SyGPQ9LexAB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJQw79UelCSW", :text "reset!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1VvXqLlgRrW", :text "*store", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "HyBwQc8xeCBW", :text "nil", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "S18vXqLlxArZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJvv7cLegCH-", :text ".error", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1uDXq8ggCS-", :text "js/console", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SkYP79LeeCB-", :text "|Lost connection!", :by "root", :at 1500541010211} - } - } - } - } - } - } - "v" { - :type :expr, :id "Byqvm9LlxAB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HksPm9IelRrZ", :text ":on-open!", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "B1nv7qUlxCB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rypPQq8glCrb", :text "fn", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "S1AD7q8ll0BZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJy_7cUll0rb", :text "event", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "S1ldQcIxe0Sb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1WdXcLlxABZ", :text "simulate-login!", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "dispatch!" { - :type :expr, :id "ryUMQcUxeRrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJwzX98xlCSb", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkdGQqIlxCrW", :text "dispatch!", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "BktMQc8xlRBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sy5Gm5IllCS-", :text "op", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJiMmqLxl0rW", :text "op-data", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :by "root", :at 1517129511248, :id "BJW1VJGsrf" - :data { - "D" {:type :leaf, :by "root", :at 1517129511797, :text "if", :id "HyfJVkziSf"} - "L" { - :type :expr, :by "root", :at 1517129512710, :id "HybNyMjSG" - :data { - "T" {:type :leaf, :by "root", :at 1517129513348, :text "not=", :id "Bk-lV1GjHf"} - "j" {:type :leaf, :by "root", :at 1517129513890, :text "op", :id "BJMEJMoBM"} - "r" {:type :leaf, :by "root", :at 1517129516574, :text ":states", :id "S1zf4yGiBG"} - } - } - "T" { - :type :expr, :id "rknMm9IlgRHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hk6zQq8xgRSW", :text "println", :by "B1y7Rc-Zz", :at 1512318353419} - "r" {:type :leaf, :id "r1JmQ98ex0rb", :text "|Dispatch", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "rkzXX9IxeArW", :text "op", :by "root", :at 1500541010211} - "x" {:type :leaf, :id "rkH775LgeCHb", :text "op-data", :by "root", :at 1500541010211} - } - } - } - } - "x" { - :type :expr, :id "HyVVcoZ-z", :by "B1y7Rc-Zz", :at 1512319531669 - :data { - "D" {:type :leaf, :text "case", :id "H1xV4qoZbG", :by "B1y7Rc-Zz", :at 1512319532853} - "L" {:type :leaf, :text "op", :id "Hk_Eqo-bM", :by "B1y7Rc-Zz", :at 1512319536359} - "T" { - :type :expr, :id "BkLQm9Uxe0BW", :by nil, :at 1500541010211 - :data { - "j" {:type :leaf, :id "r1oQQ5Ugx0BW", :text ":states", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "r1hX79UelArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJaXX9LxgRBW", :text "reset!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Hy0m7cUxlCrZ", :text "*states", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "H1y4Xc8xxArW", :by nil, :at 1500541010211 - :data { - "T" { - :type :expr, :id "SJlEQcUlgAH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1-E75IllABW", :text "mutate", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HyGV7cUxgAr-", :text "op-data", :by "root", :at 1500541010211} - } - } - "j" {:type :leaf, :id "rJ7EX98xgAHZ", :text "@*states", :by "root", :at 1500541010211} - } - } - } - } - } - } - "j" { - :type :expr, :id "ByEH9sZ-G", :by "B1y7Rc-Zz", :at 1512319547838 - :data { - "T" {:type :leaf, :text ":effect/connect", :id "ByEH9sZ-Gleaf", :by "B1y7Rc-Zz", :at 1512319553572} - "j" { - :type :expr, :id "SJhScsbbf", :by "B1y7Rc-Zz", :at 1512319556120 - :data { - "T" {:type :leaf, :text "connect!", :id "B1jBci-WG", :by "B1y7Rc-Zz", :at 1512319559727} - } - } - } - } - "r" { - :type :expr, :id "BJ4IciWbz", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJH4798geRSb", :text "send!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ryLE7qUgxArW", :text "op", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "B1P4758ggRHZ", :text "op-data", :by "root", :at 1500541010211} - } - } - } - } - } - } - "main!" { - :type :expr, :id "BJCEXcIglASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1krmcIglAHb", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1gSXcLlgAHZ", :text "main!", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "r1ZBm58llAS-", :by nil, :at 1500541010211 - :data {} - } - "v" { - :type :expr, :id "BkGHm98glCSb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r17Smc8geAB-", :text "if", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1VBX98leABW", :text "ssr?", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "BJrSQ98glABW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rk8r7cUexCSZ", :text "render-app!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJwBQ5LggRrb", :text "realize-ssr!", :by "root", :at 1500541010211} - } - } - } - } - "x" { - :type :expr, :id "HJdBX9IglRHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1tBm9LgeCBZ", :text "render-app!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S15B7qUllRHW", :text "render!", :by "root", :at 1500541010211} - } - } - "xD" { - :type :expr, :id "ryN9FobbM", :by "B1y7Rc-Zz", :at 1512319371768 - :data { - "T" {:type :leaf, :text "connect!", :id "HkeQ9KjZ-f", :by "B1y7Rc-Zz", :at 1512319373162} - } - } - "yT" { - :type :expr, :id "S1GOX5UxlCBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJQ_79Uel0HW", :text "add-watch", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HyE_79IgeCHZ", :text "*store", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkBOQ58eeArZ", :text ":changes", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "rJ8uXcLlxABW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJDdmqLel0BW", :text "#()", :by "B1y7Rc-Zz", :at 1512319399628} - "r" {:type :leaf, :id "By5um58gg0BW", :text "render-app!", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "Syi_79UgxAHb", :text "render!", :by "root", :at 1500541010211} - } - } - } - } - "yj" { - :type :expr, :id "S12_Q98lxRS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BkadXcIxe0HW", :text "add-watch", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1CuX5UglRr-", :text "*states", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "Bk1YXqIxe0HZ", :text ":changes", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "rkeK75Ule0SZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry-t7qLxx0HW", :text "#()", :by "B1y7Rc-Zz", :at 1512319404859} - "r" {:type :leaf, :id "BkVtQ9LggCBW", :text "render-app!", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "B1BF7c8lxRH-", :text "render!", :by "root", :at 1500541010211} - } - } - } - } - "yr" { - :type :expr, :id "rJ8FQc8xx0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryvF75UgxCHW", :text "println", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJuKm5IglCSb", :text "|App started!", :by "root", :at 1500541010211} - } - } - } - } - "mount-target" { - :type :expr, :id "BkpTXqIleASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJAa7qIllRrW", :text "def", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BykCX9IlxCrZ", :text "mount-target", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "rJl0mcUxeRS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJbRmqLgeCHW", :text ".querySelector", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Byz0Q58leRrb", :text "js/document", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkmCm9LggCrW", :text "|.app", :by "root", :at 1500541010211} - } - } - } - } - "reload!" { - :type :expr, :id "BybpmqIeeCr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Skz6mqLllAB-", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkXp7qLxx0Sb", :text "reload!", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "HyN67qUllASZ", :by nil, :at 1500541010211 - :data {} - } - "v" { - :type :expr, :id "BkHTX9LglArb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJLTm5LllRH-", :text "clear-cache!", :by "root", :at 1500541010211} - } - } - "x" { - :type :expr, :id "BkPaX98gxAHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Byua7qIle0Sb", :text "render-app!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HyF67c8egRrZ", :text "render!", :by "root", :at 1500541010211} - } - } - "y" { - :type :expr, :id "Hyc6Q9Uel0Bb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkipXq8geAB-", :text "println", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Hyh679IegASZ", :text "|Code updated.", :by "root", :at 1500541010211} - } - } - } - } - "render-app!" { - :type :expr, :id "B1Eh7cIxeCrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJS3QqLglABb", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SyI3Q58elRrW", :text "render-app!", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "Byv2X98ggArZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryOnXqIex0Bb", :text "renderer", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "SJK375UlxCHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkq3QqIglCHZ", :text "renderer", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Bysn79Igl0H-", :text "mount-target", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "By2n7qLeeAS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sy6nmc8el0rW", :text "comp-container", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJR2Q5UlxCBW", :text "@*states", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "Sy1p7c8ex0rZ", :text "@*store", :by "root", :at 1500541010211} - } - } - "v" {:type :leaf, :text "dispatch!", :id "r1gcsBi-ZG", :by "B1y7Rc-Zz", :at 1512318370491} - } - } - } - } - "simulate-login!" { - :type :expr, :id "r1eqQqIelRS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bkb9QqLlgAHW", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJMqXcUelABW", :text "simulate-login!", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "r17qQ9UgeRB-", :by nil, :at 1500541010211 - :data {} - } - "v" { - :type :expr, :id "SJV9X5Lgl0SZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJB57c8xlRBZ", :text "let", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rkUcX9IglASZ", :by nil, :at 1500541010211 - :data { - "T" { - :type :expr, :id "SyD9Q98exCBZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJ_qXc8egAr-", :text "raw", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "ByKcQ5LelABb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r19qXqLxgArb", :text ".getItem", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Hkic7c8gxRHZ", :text "js/localStorage", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "ry25mcLxgCSZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BkpqQ9IxeArZ", :text ":storage-key", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1A9m98lxRH-", :text "schema/configs", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :id "SJkiXq8llAHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJlj75UgeArW", :text "if", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rkbimcUxlCHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJMs7qUgeAHb", :text "some?", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ByXsX5UleABb", :text "raw", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "SyNiX9IggAS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkroQcLexRSZ", :text "do", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rJLjQ98lxCHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rywiQ5UxeRrW", :text "println", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1OiX5UleCSZ", :text "|Found storage.", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "HyYoX5IxeCHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Bycjm5LllCHW", :text "dispatch!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJjj798exRB-", :text ":user/log-in", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "HJ3jXqIxeCrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkaiQ58llRBZ", :text "read-string", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJAsX5Ill0BW", :text "raw", :by "root", :at 1500541010211} - } - } - } - } - } - } - "v" { - :type :expr, :id "S1kn798lgASZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJghQqIllCrW", :text "do", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "r1bhmc8xx0BZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyM279UlxCHZ", :text "println", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkX2m9LexRBZ", :text "|Found no storage.", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - } - } - "ssr?" { - :type :expr, :id "HkpZX5IxeRHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1CZ7q8xgCB-", :text "def", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJyfQcLlgABZ", :text "ssr?", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "BkeGX58lx0SZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1WzX58glCSb", :text "some?", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "Skzz7qIlxArW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJ7G7cUleAHW", :text ".querySelector", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJ4zQ5IlxRS-", :text "js/document", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkBGQ5IlgRBZ", :text "|meta.respo-ssr", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - :proc { - :type :expr, :id "S1dWm9UggRBZ", :by nil, :at 1500541010211 - :data { - "T" { - :type :expr, :id "BJKZXqLexRSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sy5ZQ5LxlCSZ", :text "set!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rkiZXqIgxArZ", :text "js/window.onload", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "r12bm98gg0rW", :text "main!", :by "root", :at 1500541010211} - } - } - } - } - } - "app.network" { - :ns { - :type :expr, :id "HJfR5Ulx0r-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1mAqLlx0Hb", :text "ns", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkVA5IglCBZ", :text "app.network", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "SkRA5IelABW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJ11ecUlxAHZ", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "S1lkg9LexAH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJZylc8gg0BW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HkfklqIleABZ", :text "cljs.reader", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "rkQkx9IleCSZ", :text ":as", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "SJ4Jl9UggArW", :text "reader", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "ByZxe5IxgRr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1fgecLllAH-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJQxlqIgeCS-", :text "recollect.patch", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "B1Elx5IelAS-", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "rkSxg5IxeCBb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ByUlgqLxxAH-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1DggqLleRrW", :text "patch-twig", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - :defs { - "*global-ws" { - :type :expr, :id "HylKN0q-Zz", :by "B1y7Rc-Zz", :at 1512316464963 - :data { - "T" {:type :leaf, :text "defonce", :id "H1bt40qZZf", :by "B1y7Rc-Zz", :at 1512316474419} - "j" {:type :leaf, :text "*global-ws", :id "B1zFNRc-ZM", :by "B1y7Rc-Zz", :at 1512316464963} - "r" { - :type :expr, :id "rkQtEAcWWM", :by "B1y7Rc-Zz", :at 1512316464963 - :data { - "T" {:type :leaf, :text "atom", :id "HkHBRcZ-M", :by "B1y7Rc-Zz", :at 1512316477626} - "j" {:type :leaf, :text "nil", :id "rJb8rA9-ZG", :by "B1y7Rc-Zz", :at 1512316478207} - } - } - } - } - "send!" { - :type :expr, :id "SJCxe9UllRS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rykZx5LxeAH-", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJlbecIlxASW", :text "send!", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "rJW-xqIegASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJfWgc8ee0HZ", :text "op", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1QZx9Ull0B-", :text "op-data", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "BkJOVoWbz", :by "B1y7Rc-Zz", :at 1512318054937 - :data { - "D" {:type :leaf, :text "let", :id "ryx1OEobZf", :by "B1y7Rc-Zz", :at 1512318055669} - "L" { - :type :expr, :id "BJMxOEsbZM", :by "B1y7Rc-Zz", :at 1512318056023 - :data { - "T" { - :type :expr, :id "rk7xuVoZbM", :by "B1y7Rc-Zz", :at 1512318056170 - :data { - "T" {:type :leaf, :text "ws", :id "SyZld4jZ-G", :by "B1y7Rc-Zz", :at 1512318056937} - "j" {:type :leaf, :text "@*global-ws", :id "rJb-_VjW-G", :by "B1y7Rc-Zz", :at 1512318060945} - } - } - } - } - "T" { - :type :expr, :id "HJoOVobZf", :by "B1y7Rc-Zz", :at 1512318066563 - :data { - "D" {:type :leaf, :text "if", :id "SyxodVsZ-M", :by "B1y7Rc-Zz", :at 1512318067199} - "L" { - :type :expr, :id "HyhOVsb-z", :by "B1y7Rc-Zz", :at 1512318068082 - :data { - "T" {:type :leaf, :text "some?", :id "r1Xsu4i--M", :by "B1y7Rc-Zz", :at 1512318068793} - "j" {:type :leaf, :text "ws", :id "rkWauEjbWM", :by "B1y7Rc-Zz", :at 1512318069386} - } - } - "P" { - :type :expr, :id "HJgmFVo-bz", :by "B1y7Rc-Zz", :at 1512318074959 - :data { - "T" {:type :leaf, :text ".send", :id "HJgmFVo-bzleaf", :by "B1y7Rc-Zz", :at 1512318076357} - "j" {:type :leaf, :text "ws", :id "ByBKVj-ZG", :by "B1y7Rc-Zz", :at 1512318079443} - "r" { - :type :expr, :id "S1x_tEiZ-G", :by "B1y7Rc-Zz", :at 1512318079924 - :data { - "T" {:type :leaf, :text "pr-str", :id "SkOKViZbz", :by "B1y7Rc-Zz", :at 1512318080895} - "j" { - :type :expr, :id "H1QYYVo-bf", :by "B1y7Rc-Zz", :at 1512318081378 - :data { - "T" {:type :leaf, :text "[]", :id "SkfYYEsZbG", :by "B1y7Rc-Zz", :at 1512318081973} - "j" {:type :leaf, :text "op", :id "Hy-9FViZ-M", :by "B1y7Rc-Zz", :at 1512318082730} - "r" {:type :leaf, :text "op-data", :id "Sy-oKNsW-G", :by "B1y7Rc-Zz", :at 1512318084149} - } - } - } - } - } - } - "R" { - :type :expr, :id "HyRtVjbbG", :by "B1y7Rc-Zz", :at 1512318085762 - :data { - "T" {:type :leaf, :text ".warn", :id "HyRtVjbbGleaf", :by "B1y7Rc-Zz", :at 1512318091329} - "j" {:type :leaf, :text "js/console", :id "S1E5Vi-Wf", :by "B1y7Rc-Zz", :at 1512318094630} - "r" {:type :leaf, :text "|WebSocket at close state!", :id "SybPqEiWbG", :by "B1y7Rc-Zz", :at 1512318105118} - } - } - } - } - } - } - } - } - "setup-socket!" { - :type :expr, :id "SJ6Zg5IgeCBZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJRZl58xeCBb", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HJ1fxqLxlCr-", :text "setup-socket!", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "HyxGlcUxlCr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rkWGlcLeg0rZ", :text "*store", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HyzfxcLgxCHb", :text "configs", :by "root", :at 1500541010211} - } - } - "v" { - :type :expr, :id "BJ7zlcLxlCB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1VfxqUgx0B-", :text "let", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "H1rflqUgeCBZ", :by nil, :at 1500541010211 - :data { - "T" { - :type :expr, :id "SkIfx5Lel0SZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1vflq8elRrW", :text "ws-url", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SyOzlqUel0HW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ByYGg98eg0S-", :text ":url", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Hy9fg58glArZ", :text "configs", :by "root", :at 1500541010211} - } - } - } - } - "j" { - :type :expr, :id "H1ifgqIxlCBZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyhfgcLgeRB-", :text "ws", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rJ6GlcLgg0HZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJRzg9LeeAB-", :text "js/WebSocket.", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Sy17xqUggRrZ", :text "ws-url", :by "root", :at 1500541010211} - } - } - } - } - } - } - "n" { - :type :expr, :id "S1eqh4iZbz", :by "B1y7Rc-Zz", :at 1512318130346 - :data { - "T" {:type :leaf, :text "reset!", :id "S1eqh4iZbzleaf", :by "B1y7Rc-Zz", :at 1512318131861} - "j" {:type :leaf, :text "*global-ws", :id "SkZh34oZbf", :by "B1y7Rc-Zz", :at 1512318136554} - "r" {:type :leaf, :text "ws", :id "BkgWaNjZZM", :by "B1y7Rc-Zz", :at 1512318138057} - } - } - "r" { - :type :expr, :id "r1qExqLxgCSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hks4eqIlxCBZ", :text "set!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H12NeqUeeCr-", :text "ws.onopen", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "BJaVl9UegAHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BkA4lc8xg0HW", :text "fn", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "H1ySx58xlCSZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SygBx58geCB-", :text "event", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "Hye_eHjWZM", :by "B1y7Rc-Zz", :at 1512318191903 - :data { - "D" {:type :leaf, :text "let", :id "HJb_lBiWWz", :by "B1y7Rc-Zz", :at 1512318194009} - "L" { - :type :expr, :id "BJigrjbbM", :by "B1y7Rc-Zz", :at 1512318194783 - :data { - "T" { - :type :expr, :id "ryeoeBi-WM", :by "B1y7Rc-Zz", :at 1512318194914 - :data { - "T" {:type :leaf, :text "listener", :id "H1z5gSj-Wz", :by "B1y7Rc-Zz", :at 1512318197184} - "j" { - :type :expr, :id "S1xClHi--M", :by "B1y7Rc-Zz", :at 1512318198331 - :data { - "T" {:type :leaf, :text ":on-open!", :id "Bk0xSo-WG", :by "B1y7Rc-Zz", :at 1512318225515} - "j" {:type :leaf, :text "configs", :id "SJXWSsWZM", :by "B1y7Rc-Zz", :at 1512318203580} - } - } - } - } - } - } - "P" { - :type :expr, :id "Sk-Hbrj-Zf", :by "B1y7Rc-Zz", :at 1512318205498 - :data { - "T" {:type :leaf, :text "if", :id "Sk-Hbrj-Zfleaf", :by "B1y7Rc-Zz", :at 1512318205948} - "j" { - :type :expr, :id "HyGUZHobZG", :by "B1y7Rc-Zz", :at 1512318206473 - :data { - "T" {:type :leaf, :text "fn?", :id "Byb8bHsbZG", :by "B1y7Rc-Zz", :at 1512318207175} - "j" {:type :leaf, :text "listener", :id "BJMvWHsZZM", :by "B1y7Rc-Zz", :at 1512318208250} - } - } - "r" { - :type :expr, :id "Skxt-BiWWz", :by "B1y7Rc-Zz", :at 1512318209010 - :data { - "T" {:type :leaf, :text "listener", :id "Skxt-BiWWzleaf", :by "B1y7Rc-Zz", :at 1512318211772} - "j" {:type :leaf, :text "event", :id "Bk-3ZBs-bf", :by "B1y7Rc-Zz", :at 1512318212969} - } - } - } - } - } - } - } - } - } - } - "v" { - :type :expr, :id "SkEBx5LlxRS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyBBx9LlxCH-", :text "set!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJIHeq8xeCBZ", :text "ws.onclose", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "r1DHl5UxgABW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJurl9IxeRr-", :text "fn", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SJKBl9UxlASb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1qSxc8ee0B-", :text "event", :by "root", :at 1500541010211} - } - } - "n" { - :type :expr, :id "S1Up4j-Zz", :by "B1y7Rc-Zz", :at 1512318142247 - :data { - "T" {:type :leaf, :text "reset!", :id "S1Up4j-Zzleaf", :by "B1y7Rc-Zz", :at 1512318144845} - "j" {:type :leaf, :text "*global-ws", :id "B1oa4jZWz", :by "B1y7Rc-Zz", :at 1512318149941} - "r" {:type :leaf, :text "nil", :id "HkzRT4sWWM", :by "B1y7Rc-Zz", :at 1512318151079} - } - } - "p" { - :type :expr, :id "Bk7MBoWWz", :by "B1y7Rc-Zz", :at 1512318191903 - :data { - "D" {:type :leaf, :text "let", :id "HJb_lBiWWz", :by "B1y7Rc-Zz", :at 1512318194009} - "L" { - :type :expr, :id "BJigrjbbM", :by "B1y7Rc-Zz", :at 1512318194783 - :data { - "T" { - :type :expr, :id "ryeoeBi-WM", :by "B1y7Rc-Zz", :at 1512318194914 - :data { - "T" {:type :leaf, :text "listener", :id "H1z5gSj-Wz", :by "B1y7Rc-Zz", :at 1512318197184} - "j" { - :type :expr, :id "S1xClHi--M", :by "B1y7Rc-Zz", :at 1512318198331 - :data { - "T" {:type :leaf, :text ":on-close!", :id "Bk0xSo-WG", :by "B1y7Rc-Zz", :at 1512318202306} - "j" {:type :leaf, :text "configs", :id "SJXWSsWZM", :by "B1y7Rc-Zz", :at 1512318203580} - } - } - } - } - } - } - "P" { - :type :expr, :id "Sk-Hbrj-Zf", :by "B1y7Rc-Zz", :at 1512318205498 - :data { - "T" {:type :leaf, :text "if", :id "Sk-Hbrj-Zfleaf", :by "B1y7Rc-Zz", :at 1512318205948} - "j" { - :type :expr, :id "HyGUZHobZG", :by "B1y7Rc-Zz", :at 1512318206473 - :data { - "T" {:type :leaf, :text "fn?", :id "Byb8bHsbZG", :by "B1y7Rc-Zz", :at 1512318207175} - "j" {:type :leaf, :text "listener", :id "BJMvWHsZZM", :by "B1y7Rc-Zz", :at 1512318208250} - } - } - "r" { - :type :expr, :id "Skxt-BiWWz", :by "B1y7Rc-Zz", :at 1512318209010 - :data { - "T" {:type :leaf, :text "listener", :id "Skxt-BiWWzleaf", :by "B1y7Rc-Zz", :at 1512318211772} - "j" {:type :leaf, :text "event", :id "Bk-3ZBs-bf", :by "B1y7Rc-Zz", :at 1512318212969} - } - } - } - } - } - } - } - } - } - } - "x" { - :type :expr, :id "BkAre5UexAHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJ18l58elCHW", :text "set!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "HyeIl58lgAB-", :text "ws.onmessage", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "SyWUl9Ilg0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HyGUx98elCrb", :text "fn", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HyQ8eqIxeRrb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ByVUlcIegAHb", :text "event", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "r1r8l5LexAB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sk8LxqUxgCSW", :text "let", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "Skv8gc8gxRH-", :by nil, :at 1500541010211 - :data { - "T" { - :type :expr, :id "SyOUx98el0r-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJYUxq8gx0Hb", :text "changes", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BJ5Lx9IeeArZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJjUecUgeCHW", :text "reader/read-string", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H12Ix5Ueg0HZ", :text "event.data", :by "root", :at 1500541010211} - } - } - } - } - } - } - "r" { - :type :expr, :id "SypLlqIxlRrW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ByALx98eeAB-", :text ".log", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rkyPg58lg0Hb", :text "js/console", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "rklwgqLllRB-", :text "|Changes", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "ry-Dg9LexAH-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SkGDgcUllRrW", :text "clj->js", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r17PeqLleArb", :text "changes", :by "root", :at 1500541010211} - } - } - } - } - "v" { - :type :expr, :id "SkEvg9LggArW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HySDecLle0SW", :text "reset!", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ryIDgqIgeRSb", :text "*store", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "rkwDg9LgeABZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1_vxc8xl0rZ", :text "patch-twig", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BktDxq8lgCH-", :text "@*store", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "By9Pxc8llCHW", :text "changes", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :id "BkugecUleRH-", :by nil, :at 1500541010211 - :data {} - } - } - "app.render" { - :ns { - :type :expr, :id "B14AX98xxAB-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ByHC7qIeg0rb", :text "ns", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJLR7cIll0r-", :text "app.render", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "SkwCXcUegASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJOCX5IlxArZ", :text ":require", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "B1Y0m9LelASZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B19Am9IxeABb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJsAm58elASW", :text "respo.render.html", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "Hyn0Q9Ill0rW", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "r16Am58el0H-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1A0mcUxeCB-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1J1N9LgxRSZ", :text "make-string", :by "root", :at 1500541010211} - } - } - } - } - "r" { - :type :expr, :id "HyeyN9IxgAHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1-J45IglRHb", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1MyE98xxAr-", :text "shell-page.core", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "SJX14cLxeCSb", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "HyN1E5UegCHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1HyV9LglRSW", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1IJ458xxRBW", :text "make-page", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "BkvkN5LgeASW", :text "spit", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "BJOJ4qIel0rb", :text "slurp", :by "root", :at 1500541010211} - } - } - } - } - "v" { - :type :expr, :id "SktkEqIlxABW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJ51V5UxeRB-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BkjkVcIgeRH-", :text "app.comp.container", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "r12yN9UgxCSZ", :text ":refer", :by "root", :at 1500541010211} - "v" { - :type :expr, :id "rk6y4cIggASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1CJV5Iee0H-", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "SkylN9IllRHW", :text "comp-container", :by "root", :at 1500541010211} - } - } - } - } - "x" { - :type :expr, :id "BJgVGBfyxf", :by "root", :at 1511101707888 - :data { - "T" {:type :leaf, :text "[]", :id "BJgVGBfyxfleaf", :by "root", :at 1511101709192} - "j" {:type :leaf, :text "cljs.reader", :id "B1xSGSGylf", :by "root", :at 1511101713489} - "r" {:type :leaf, :text ":refer", :id "HJ9GHGyxM", :by "root", :at 1511101714233} - "v" { - :type :expr, :id "BywcGrMJef", :by "root", :at 1511101714439 - :data { - "T" {:type :leaf, :text "[]", :id "r1UqMrGyeG", :by "root", :at 1511101715337} - "j" {:type :leaf, :text "read-string", :id "BJmiMBG1lf", :by "root", :at 1511101716843} - } - } - } - } - } - } - } - } - :defs { - "base-info" { - :type :expr, :id "S1BZ49LegCrb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyUZE5Ixx0B-", :text "def", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "BJPbVcUxgCH-", :text "base-info", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "B1O-N5IegRHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1Y-V5Lgl0rW", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rkqWVqLxxAHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1s-EqLelCBW", :text ":title", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B13ZNqUlxRB-", :text "|Termina", :by "root", :at 1516899988674} - } - } - "r" { - :type :expr, :id "r1pbNcLee0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H10WV5IgxAHZ", :text ":icon", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Sk1GNc8exArZ", :text "|http://cdn.tiye.me/logo/termina.png", :by "root", :at 1520082722879} - } - } - "v" { - :type :expr, :id "H1ezVcIleCr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryZz49IxlRBW", :text ":ssr", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1zG4cIxlCSW", :text "nil", :by "root", :at 1500541010211} - } - } - "y" { - :type :expr, :id "SJ14Dq2JG", :by "root", :at 1510938407125 - :data { - "T" {:type :leaf, :text ":inline-styles", :id "SJ14Dq2JGleaf", :by "root", :at 1510938409900} - "j" { - :type :expr, :id "BymMEPqhyG", :by "root", :at 1510938410134 - :data { - "T" {:type :leaf, :text "[]", :id "H1MGEwcn1M", :by "root", :at 1510938410517} - "j" { - :type :expr, :id "H1lmVvqhJz", :by "root", :at 1510938410813 - :data { - "T" {:type :leaf, :text "slurp", :id "Hym4Dc21G", :by "root", :at 1510938412617} - "j" {:type :leaf, :text "|entry/main.css", :id "SJgBNvq3kz", :by "root", :at 1510938422998} - } - } - } - } - } - } - } - } - } - } - "dev-page" { - :type :expr, :id "ryIzN5LleCrb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HkvfN5UlgAS-", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Bkdf4q8lxRr-", :text "dev-page", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "HytMEcLlg0H-", :by nil, :at 1500541010211 - :data {} - } - "v" { - :type :expr, :id "H1qfE9UgxCrW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SysG4q8xeABb", :text "make-page", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Sk3MVqIggRHb", :text "|", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "HyTGV9Uxl0rW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hy0G4cUxeRSZ", :text "merge", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJ1QN5UxlAr-", :text "base-info", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "S1lXEcIxgABb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryZXVcLxgCrW", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "rkGQV9UgxRHZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Sy7XE9Llx0Hb", :text ":styles", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "Sk4745UlxCBZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "S1rmN9Uxe0HZ", :text "[]", :by "root", :at 1500541010211} - "j" {:type :leaf, :text "|http://localhost:8100/main.css", :id "Syx3s2D1n-", :by "root", :at 1516547685441} - } - } - } - } - "r" { - :type :expr, :id "HyImE5IgeRBZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BkPQEqUxxRrb", :text ":scripts", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HkOX49LlxCSb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJKXEcLge0rZ", :text "[]", :by "root", :at 1500541010211} - "v" {:type :leaf, :id "BynXN5UxlRBb", :text "|/main.js", :by "root", :at 1515039105336} - } - } - } - } - } - } - } - } - } - } - } - } - "main!" { - :type :expr, :id "rJZeEcLxx0r-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyMlEqUglCSZ", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ByXgN9UegASW", :text "main!", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "ByVgVqUeeRHW", :by nil, :at 1500541010211 - :data {} - } - "v" { - :type :expr, :id "SJrx498ee0HZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BkIxVqIgg0BW", :text "if", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "HyPgEc8ll0rZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SJ_l4qIxgCB-", :text "=", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJteN9UggRS-", :text "js/process.env.env", :by "root", :at 1500541010211} - "r" {:type :leaf, :id "Bk5lNcUggRHW", :text "|dev", :by "root", :at 1500541010211} - } - } - "r" { - :type :expr, :id "HysgEqLlgCSZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H12e4qIxlASW", :text "spit", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rJTgE9IelArZ", :text "|target/index.html", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "HJClNq8xgCrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Hk1ZEcUexArW", :text "dev-page", :by "root", :at 1500541010211} - } - } - } - } - "v" { - :type :expr, :id "rJlWV58xgAr-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rk-WE9UleRr-", :text "spit", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "S1zZ49IleAHW", :text "|dist/index.html", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "SkXZE98ggASW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rk4WV5Lgx0rZ", :text "prod-page", :by "root", :at 1500541010211} - } - } - } - } - } - } - } - } - "preview?" { - :type :expr, :id "rkB36oPyhZ", :by "root", :at 1506929604497 - :data { - "T" {:type :leaf, :text "def", :id "rkIh6jP13Z", :by "root", :at 1506929605008} - "j" {:type :leaf, :text "preview?", :id "Hkw2aoPk3W", :by "root", :at 1506929604497} - "r" { - :type :expr, :id "ryu3aiwk3-", :by "root", :at 1506929604497 - :data { - "T" {:type :leaf, :text "=", :id "rkA6iP1n-", :by "root", :at 1506929606210} - "j" {:type :leaf, :text "|preview", :id "BJbC6ovyn-", :by "root", :at 1506929610603} - "r" {:type :leaf, :text "js/process.env.prod", :id "SkgXAiwJnZ", :by "root", :at 1506929616675} - } - } - } - } - "prod-page" { - :type :expr, :id "ry6QNqLlgRBZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJAXE98egRSb", :text "defn", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Hy14N5UleAB-", :text "prod-page", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "BJg4E98ex0rb", :by nil, :at 1500541010211 - :data {} - } - "v" { - :type :expr, :id "B1Z44qUeeRHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "Skz445UlxArZ", :text "let", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BkXVNcLglCHb", :by nil, :at 1500541010211 - :data { - "T" { - :type :expr, :id "H1VVN58gl0rZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1HEV98elRSb", :text "html-content", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "BJIVE5UeeCS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJPE4cLleRHW", :text "make-string", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "By_V49UleRSZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJtN45UgxCHZ", :text "comp-container", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "S15NE9UxxRSZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJj4E9IexAHW", :text "{}", :by "root", :at 1500541010211} - } - } - "r" {:type :leaf, :id "H12VV9Ulg0Sb", :text "nil", :by "root", :at 1500541010211} - } - } - } - } - } - } - "r" { - :type :expr, :id "SkBSNcLegRSZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJLrE98xeAHW", :text "assets", :by "root", :at 1511101669795} - "j" { - :type :expr, :id "H1wHV9IegCSW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyOHN98elRH-", :text "read-string", :by "root", :at 1511101666477} - "r" { - :type :expr, :id "rJqBNcUlx0HZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1sS45LegCS-", :text "slurp", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "H1hB49LgxASW", :text "|dist/assets.edn", :by "root", :at 1511101660154} - } - } - } - } - } - } - "v" { - :type :expr, :id "BkcVovJ3-", :by "root", :at 1506929457770 - :data { - "T" {:type :leaf, :text "cdn", :id "BkcVovJ3-leaf", :by "root", :at 1506929458821} - "j" { - :type :expr, :id "H1EsNjwJ2Z", :by "root", :at 1506929459448 - :data { - "T" {:type :leaf, :text "if", :id "rkXs4sPk3Z", :by "root", :at 1506929602259} - "j" {:type :leaf, :text "preview?", :id "Bkjpiv13Z", :by "root", :at 1506929604190} - "r" {:type :leaf, :text "|", :id "rkZoRjvJh-", :by "root", :at 1506929619709} - "v" {:type :leaf, :text "|http://cdn.tiye.me/termina/", :id "ryg3AiwJhZ", :by "root", :at 1517675788430} - } - } - } - } - "x" { - :type :expr, :id "r1WUkhw12Z", :by "root", :at 1506929630135 - :data { - "T" {:type :leaf, :text "prefix-cdn", :id "r1WUkhw12Zleaf", :by "root", :at 1506929635537} - "j" { - :type :expr, :id "H1-3knDyn-", :by "root", :at 1506929635938 - :data { - "T" {:type :leaf, :text "#()", :id "ryl3khPy2Z", :by "root", :at 1511280326132} - "r" {:type :leaf, :text "str", :id "BkG0J2PJnW", :by "root", :at 1506929639579} - "v" {:type :leaf, :text "cdn", :id "BybxgnP13Z", :by "root", :at 1506929640077} - "x" {:type :leaf, :text "%", :id "rkSxehDJnW", :by "root", :at 1511280331811} - } - } - } - } - } - } - "r" { - :type :expr, :id "Sk6r4cLee0Hb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ryRS45UxgRSW", :text "make-page", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "r1yLVcLgx0BW", :text "html-content", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "rylIV5UxxCrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJbLEcLxgArW", :text "merge", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ByGLE9Iee0Bb", :text "base-info", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "SyX8V5Ulx0H-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "SyEINcIxxRSb", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "SJrUV98ex0S-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1I8E98lx0HW", :text ":styles", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "r1wL4qUlxRrZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "B1uINcIxeCr-", :text "[]", :by "root", :at 1500541010211} - "b" {:type :leaf, :text "|http://cdn.tiye.me/favored-fonts/main.css", :id "Skyp3wyn-", :by "root", :at 1516547674843} - } - } - } - } - "r" { - :type :expr, :id "rk6LNqIeeAHW", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "rJ0LN9UgeCS-", :text ":scripts", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "rkegeSfklf", :by "root", :at 1511101672252 - :data { - "T" {:type :leaf, :text "map", :id "rkegeSfklfleaf", :by "root", :at 1511101674855} - "j" { - :type :expr, :id "rkQmxSG1eG", :by "root", :at 1511101675420 - :data { - "T" {:type :leaf, :text "#()", :id "HJMQgrfygM", :by "root", :at 1511101676925} - "j" {:type :leaf, :text "->", :id "BJ-BlBGyxG", :by "root", :at 1511101680541} - "r" {:type :leaf, :text "%", :id "S1ierz1lf", :by "root", :at 1511101684408} - "v" {:type :leaf, :text ":output-name", :id "BJ6lrMyeG", :by "root", :at 1511101691302} - "x" {:type :leaf, :text "prefix-cdn", :id "B1EXZrfJlz", :by "root", :at 1511101696320} - } - } - "r" {:type :leaf, :text "assets", :id "HJgKbSzylf", :by "root", :at 1511101697964} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :id "HkeeN5LegRBZ", :by nil, :at 1500541010211 - :data {} - } - } - "app.schema" { - :ns { - :type :expr, :id "HJvuNqIlx0Hb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "r1OuE5LllABb", :text "ns", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "Hyt_Nc8egRBb", :text "app.schema", :by "root", :at 1500541010211} - } - } - :defs { - "configs" { - :type :expr, :id "BkiOE5Uee0SZ", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "ry2d4c8exCBZ", :text "def", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "ByTO49UeeArW", :text "configs", :by "root", :at 1500541010211} - "r" { - :type :expr, :id "r10O4qLllCS-", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "BJkYEqIexRSW", :text "{}", :by "root", :at 1500541010211} - "j" { - :type :expr, :id "H1eF498elASb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "H1-tNcUlxCHW", :text ":storage-key", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "B1fYNc8gx0BZ", :text "|termina-storage", :by "root", :at 1516900016302} - } - } - "r" { - :type :expr, :id "r1XtV98xxRHb", :by nil, :at 1500541010211 - :data { - "T" {:type :leaf, :id "HJEKNc8xgASb", :text ":port", :by "root", :at 1500541010211} - "j" {:type :leaf, :id "rkrtV5IglASZ", :text "6200", :by "root", :at 1517670399570} - } - } - } - } - } - } - } - :proc { - :type :expr, :id "Bkq_4qIglCSW", :by nil, :at 1500541010211 - :data {} - } - } - "app.style" { - :ns { - :type :expr, :by "root", :at 1517286456544, :id "rJl-BNuTrM" - :data { - "T" {:type :leaf, :by "root", :at 1517286456544, :text "ns", :id "r1W-BEdpSf"} - "j" {:type :leaf, :by "root", :at 1517286456544, :text "app.style", :id "ryMWHEu6rG"} - "r" { - :type :expr, :by "root", :at 1517286463694, :id "ByedrVOaHM" - :data { - "T" {:type :leaf, :by "root", :at 1517286464405, :text ":require", :id "BJ_rVd6HM"} - "j" { - :type :expr, :by "root", :at 1517286464588, :id "SJFrVdpBM" - :data { - "T" {:type :leaf, :by "root", :at 1517286464791, :text "[]", :id "SkF_rNu6Hz"} - "j" {:type :leaf, :by "root", :at 1517286468371, :text "respo-ui.core", :id "SJMtrEu6rz"} - "r" {:type :leaf, :by "root", :at 1517286612610, :text ":as", :id "B1IhH4u6SG"} - "v" {:type :leaf, :by "root", :at 1517286470014, :text "ui", :id "H1z0SNd6rG"} - } - } - } - } - } - } - :defs { - "button" { - :type :expr, :by "root", :at 1517286461030, :id "r1gBSVdpSz" - :data { - "T" {:type :leaf, :by "root", :at 1517286474027, :text "def", :id "rJWHH4uTBz"} - "j" {:type :leaf, :by "root", :at 1517286461030, :text "button", :id "BkfBH4_6rM"} - "r" { - :type :expr, :by "root", :at 1517286461030, :id "By7Sr4OTHM" - :data { - "T" {:type :leaf, :by "root", :at 1517286475616, :text "merge", :id "B17UV_aHf"} - "j" {:type :leaf, :by "root", :at 1517286479105, :text "ui/button", :id "S1b4UV_pBf"} - "r" { - :type :expr, :by "root", :at 1517286620221, :id "By-VJr_6Hz" - :data { - "T" {:type :leaf, :by "root", :at 1517286620755, :text "{}", :id "Ske4JHdaHG"} - "j" { - :type :expr, :by "root", :at 1517286633599, :id "HkzgSuTSM" - :data { - "T" {:type :leaf, :by "root", :at 1517286636669, :text ":padding", :id "ryxWgH_arG"} - "j" {:type :leaf, :by "root", :at 1517286640548, :text "|0 8px", :id "ByMSgH_TrM"} - } - } - "r" { - :type :expr, :by "root", :at 1517286642734, :id "BkjgHOprf" - :data { - "T" {:type :leaf, :by "root", :at 1517286645648, :text ":min-width", :id "BkjgHOprfleaf"} - "j" {:type :leaf, :by "root", :at 1517286647245, :text "40", :id "B1-AgHOTSf"} - } - } - "v" { - :type :expr, :by "root", :at 1517286661460, :id "ry-TbB_6Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517286665444, :text ":line-height", :id "ry-TbB_6Bzleaf"} - "j" {:type :leaf, :by "root", :at 1517843004794, :text "|24px", :id "SJGfruaHz"} - } - } - "x" { - :type :expr, :by "root", :at 1517286661460, :id "HJl5GBupHG" - :data { - "T" {:type :leaf, :by "root", :at 1517286676429, :text ":height", :id "ry-TbB_6Bzleaf"} - "j" {:type :leaf, :by "root", :at 1517843006253, :text "|24px", :id "SJGfruaHz"} - } - } - } - } - } - } - } - } - "input" { - :type :expr, :by "root", :at 1517842891939, :id "S1lECWxULG" - :data { - "T" {:type :leaf, :by "root", :at 1517842893476, :text "def", :id "rJZNRZeILM"} - "j" {:type :leaf, :by "root", :at 1517842891939, :text "input", :id "ByfV0bgIUM"} - "r" { - :type :expr, :by "root", :at 1517842891939, :id "HyQ4C-l8IG" - :data { - "T" {:type :leaf, :by "root", :at 1517842894921, :text "merge", :id "SJb8Rbl8IM"} - "j" {:type :leaf, :by "root", :at 1517842897277, :text "ui/input", :id "BkED0Wx88M"} - "r" { - :type :expr, :by "root", :at 1517842939451, :id "rJgmZMlIUG" - :data { - "T" {:type :leaf, :by "root", :at 1517842940605, :text "{}", :id "S1XWfg8Lf"} - "j" { - :type :expr, :by "root", :at 1517842940945, :id "S1-rWGx88z" - :data { - "T" {:type :leaf, :by "root", :at 1517842941844, :text ":width", :id "ryxrbflLIM"} - "j" {:type :leaf, :by "root", :at 1517842944663, :text "320", :id "B1zUWzxILf"} - } - } - } - } - } - } - } - } - "link" { - :type :expr, :by "root", :at 1517671022431, :id "BklUOz87IM" - :data { - "T" {:type :leaf, :by "root", :at 1517671024492, :text "def", :id "SJ-IdGIQUz"} - "j" {:type :leaf, :by "root", :at 1517671022431, :text "link", :id "Byf8ufLmLf"} - "r" { - :type :expr, :by "root", :at 1517671026592, :id "SJjdfLmUf" - :data { - "T" {:type :leaf, :by "root", :at 1517671027276, :text "merge", :id "BJW9Oz8QLf"} - "j" {:type :leaf, :by "root", :at 1520083259912, :text "ui/link", :id "SkrjdzImLz"} - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517286456544, :id "rJ7-SNupBz" - :data {} - } - } - "app.util" { - :ns { - :type :expr, :by "root", :at 1517411855327, :id "SJewf0U1Uz" - :data { - "T" {:type :leaf, :by "root", :at 1517411855327, :text "ns", :id "rJZPMRUJLM"} - "j" {:type :leaf, :by "root", :at 1517411855327, :text "app.util", :id "HyfwzCI18M"} - "r" { - :type :expr, :by "root", :at 1517414399374, :id "r1ZwbdvyIG" - :data { - "T" {:type :leaf, :by "root", :at 1517414399998, :text ":require", :id "B1vWdPkUM"} - "j" { - :type :expr, :by "root", :at 1517414400531, :id "rJtZuDyIM" - :data { - "T" {:type :leaf, :by "root", :at 1517414400734, :text "[]", :id "S1UO-Owy8M"} - "j" {:type :leaf, :by "root", :at 1517414403430, :text "clojure.string", :id "HyGFZdv1Uf"} - "r" {:type :leaf, :by "root", :at 1517414405440, :text ":as", :id "S13Wdw18f"} - "v" {:type :leaf, :by "root", :at 1517414406165, :text "string", :id "r10WdDJLM"} - } - } - } - } - } - } - :defs { - "join-path" { - :type :expr, :by "root", :at 1517411863005, :id "HylyQCL1Uz" - :data { - "T" {:type :leaf, :by "root", :at 1517411863005, :text "defn", :id "S1ZJmCU1Iz"} - "j" {:type :leaf, :by "root", :at 1517411863005, :text "join-path", :id "B1zJQ0LJIM"} - "r" { - :type :expr, :by "root", :at 1517411863005, :id "ByXJQRUJ8M" - :data { - "T" {:type :leaf, :by "root", :at 1517411877935, :text "xs", :id "BJS708JIM"} - "j" {:type :leaf, :by "root", :at 1517411878973, :text "ys", :id "SJkVCIy8z"} - } - } - "v" { - :type :expr, :by "root", :at 1517414825061, :id "SkgWnYwJIG" - :data { - "D" {:type :leaf, :by "root", :at 1517414826933, :text "if", :id "r1fnKPJLf"} - "L" { - :type :expr, :by "root", :at 1517414827201, :id "r1MQ2YDkUf" - :data { - "T" {:type :leaf, :by "root", :at 1517414827327, :text "=", :id "SkbX3tvJLz"} - "j" { - :type :expr, :by "root", :at 1517414828901, :id "SyB3Ywy8M" - :data { - "T" {:type :leaf, :by "root", :at 1517414829575, :text "first", :id "SkNnKvkIz"} - "j" {:type :leaf, :by "root", :at 1517414830860, :text "ys", :id "BkWL2FvkUz"} - } - } - "r" {:type :leaf, :by "root", :at 1517414832122, :text "|/", :id "SJu2FDJ8G"} - } - } - "P" {:type :leaf, :by "root", :at 1517414833989, :text "ys", :id "SklthYvJIf"} - "T" { - :type :expr, :by "root", :at 1517414652261, :id "HJVWFw18M" - :data { - "D" {:type :leaf, :by "root", :at 1517414656550, :text "let", :id "SJedWtvyUG"} - "T" { - :type :expr, :by "root", :at 1517414666400, :id "HylMGYD1Lf" - :data { - "D" { - :type :expr, :by "root", :at 1517414670898, :id "SJwfFvJ8z" - :data { - "T" {:type :leaf, :by "root", :at 1517414674470, :text "absolute?", :id "SJwfFvJ8zleaf"} - "j" { - :type :expr, :by "root", :at 1517414675167, :id "rJliMFvyIz" - :data { - "T" {:type :leaf, :by "root", :at 1517414679778, :text "=", :id "rksGtPJIM"} - "j" { - :type :expr, :by "root", :at 1517414684397, :id "BkXNXKP1Lf" - :data { - "T" {:type :leaf, :by "root", :at 1517414684167, :text "first", :id "BylxXFPyLG"} - "j" {:type :leaf, :by "root", :at 1517414685153, :text "xs", :id "SkrQYvyLf"} - } - } - "r" {:type :leaf, :by "root", :at 1517414686136, :text "|/", :id "rJI7tDyLz"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517414653159, :id "SkHbYv1UM" - :data { - "D" {:type :leaf, :by "root", :at 1517414663791, :text "new-path", :id "SkxTWtwyLz"} - "T" { - :type :expr, :by "root", :at 1517414364955, :id "SJSkOP1Uz" - :data { - "T" {:type :leaf, :by "root", :at 1517414375430, :text "join-segments", :id "SJSkOP1Uzleaf"} - "b" { - :type :expr, :by "root", :at 1517414454493, :id "HkbCVOw1UM" - :data { - "T" {:type :leaf, :by "root", :at 1517414453676, :text "[]", :id "SkeTN_vyIz"} - } - } - "j" { - :type :expr, :by "root", :at 1517414376509, :id "BkegxOP1Iz" - :data { - "T" {:type :leaf, :by "root", :at 1517414377564, :text "concat", :id "Byxl_DkUG"} - "j" { - :type :expr, :by "root", :at 1517414378410, :id "SkbMgdD1LM" - :data { - "T" {:type :leaf, :by "root", :at 1517414381644, :text "string/split", :id "HkeMgdPy8M"} - "r" {:type :leaf, :by "root", :at 1517414395290, :text "xs", :id "rybM-_DyLM"} - "v" {:type :leaf, :by "root", :at 1517414436349, :text "|/", :id "H1lhQdPyIG"} - } - } - "r" { - :type :expr, :by "root", :at 1517414411341, :id "rkbXfuDyUM" - :data { - "T" {:type :leaf, :by "root", :at 1517414386859, :text "string/split", :id "ryYeuD1UM"} - "r" {:type :leaf, :by "root", :at 1517414770090, :text "ys", :id "H1-rMuDJ8M"} - "v" {:type :leaf, :by "root", :at 1517414432960, :text "|/", :id "SJtQdvkLf"} - } - } - } - } - } - } - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517414688039, :id "Hkxd7YDyIz" - :data { - "T" {:type :leaf, :by "root", :at 1517414688457, :text "if", :id "Hkxd7YDyIzleaf"} - "j" {:type :leaf, :by "root", :at 1517414690187, :text "absolute?", :id "SyXOmYPkIM"} - "r" { - :type :expr, :by "root", :at 1517414692173, :id "SkZ2QFDyLG" - :data { - "T" {:type :leaf, :by "root", :at 1517414693275, :text "str", :id "Byg3QKPJIG"} - "j" {:type :leaf, :by "root", :at 1517414697218, :text "|/", :id "Hkfp7FPk8M"} - "r" {:type :leaf, :by "root", :at 1517414698845, :text "new-path", :id "BymWNKvkLM"} - } - } - "v" {:type :leaf, :by "root", :at 1517414701118, :text "new-path", :id "HJeE4FDk8f"} - } - } - } - } - } - } - } - } - "join-segments" { - :type :expr, :by "root", :at 1517414439593, :id "Bygx4dDJLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414439593, :text "defn", :id "HJWgEdDyIz"} - "j" {:type :leaf, :by "root", :at 1517414439593, :text "join-segments", :id "rJGx4dvyLf"} - "r" { - :type :expr, :by "root", :at 1517414439593, :id "Skmx4OwJLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414447604, :text "acc", :id "ByzEuwk8f"} - "j" {:type :leaf, :by "root", :at 1517414450174, :text "xs", :id "BJKN_wyUz"} - } - } - "v" { - :type :expr, :by "root", :at 1517414456699, :id "BJ-SOvyIM" - :data { - "T" {:type :leaf, :by "root", :at 1517414457802, :text "if", :id "BJ-SOvyIMleaf"} - "j" { - :type :expr, :by "root", :at 1517414458778, :id "ryXBdPkLG" - :data { - "T" {:type :leaf, :by "root", :at 1517414887084, :text "empty?", :id "BkbGSdPyUG"} - "j" {:type :leaf, :by "root", :at 1517414460355, :text "xs", :id "BkbNHuP1Iz"} - } - } - "r" { - :type :expr, :by "root", :at 1517414462519, :id "S1wS_D1IG" - :data { - "T" {:type :leaf, :by "root", :at 1517414464715, :text "string/join", :id "H18BuDyLf"} - "j" {:type :leaf, :by "root", :at 1517414474139, :text "|/", :id "SJWKHdPkUf"} - "r" {:type :leaf, :by "root", :at 1517414476088, :text "acc", :id "r17UdPkLf"} - } - } - "v" { - :type :expr, :by "root", :at 1517414477496, :id "B1xrUdv1Lz" - :data { - "T" {:type :leaf, :by "root", :at 1517414484364, :text "let", :id "B1xrUdv1Lzleaf"} - "j" { - :type :expr, :by "root", :at 1517414485070, :id "B1p8uPk8z" - :data { - "D" { - :type :expr, :by "root", :at 1517414501330, :id "SJeTDuPJ8G" - :data { - "T" {:type :leaf, :by "root", :at 1517414503130, :text "cursor", :id "SJeTDuPJ8Gleaf"} - "j" { - :type :expr, :by "root", :at 1517414503854, :id "SJxuOw1UG" - :data { - "T" {:type :leaf, :by "root", :at 1517414504891, :text "first", :id "rJ4yu_w1Lf"} - "j" {:type :leaf, :by "root", :at 1517414885758, :text "xs", :id "BkzW_OwkUf"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517414485474, :id "SJlpL_Py8M" - :data { - "T" {:type :leaf, :by "root", :at 1517414486748, :text "next-acc", :id "HyfnLuD1UM"} - "j" { - :type :expr, :by "root", :at 1517414506803, :id "rJ-7udv1IG" - :data { - "T" {:type :leaf, :by "root", :at 1517414515073, :text "cond", :id "r1xXudPJLG"} - "j" { - :type :expr, :by "root", :at 1517414515441, :id "r1Vs_OP1IM" - :data { - "T" { - :type :expr, :by "root", :at 1517414515635, :id "ryn__wJIG" - :data { - "T" {:type :leaf, :by "root", :at 1517414515848, :text "=", :id "S1Qo__wkIf"} - "j" {:type :leaf, :by "root", :at 1517414517966, :text "cursor", :id "SyaOuvJIf"} - "r" {:type :leaf, :by "root", :at 1517414520003, :text "|.", :id "SJGROdwyUM"} - } - } - "j" {:type :leaf, :by "root", :at 1517414527931, :text "acc", :id "S1gQtuD1Iz"} - } - } - "r" { - :type :expr, :by "root", :at 1517414529789, :id "HJ5FOPJIz" - :data { - "T" { - :type :expr, :by "root", :at 1517414530696, :id "S1liF_wy8f" - :data { - "T" {:type :leaf, :by "root", :at 1517414530592, :text "=", :id "HJ5FOPJIzleaf"} - "j" {:type :leaf, :by "root", :at 1517414532008, :text "cursor", :id "BJWiFdP1IG"} - "r" {:type :leaf, :by "root", :at 1517414533125, :text "|..", :id "H1mht_PkUf"} - } - } - "j" { - :type :expr, :by "root", :at 1517414539809, :id "HygV5dvyLG" - :data { - "D" {:type :leaf, :by "root", :at 1517414541050, :text "vec", :id "B1b45dDyLz"} - "T" { - :type :expr, :by "root", :at 1517414534300, :id "ByZ0K_PJLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414779701, :text "butlast", :id "rJxAtuwkIG"} - "j" {:type :leaf, :by "root", :at 1517414539298, :text "acc", :id "SyQcdDkLM"} - } - } - } - } - } - } - "t" { - :type :expr, :by "root", :at 1517414590567, :id "SJwauD1UM" - :data { - "T" { - :type :expr, :by "root", :at 1517414593354, :id "B1GKaOD1Iz" - :data { - "T" {:type :leaf, :by "root", :at 1517414591296, :text "=", :id "SJwauD1UMleaf"} - "j" {:type :leaf, :by "root", :at 1517414595561, :text "cursor", :id "BycT_wkLG"} - "r" {:type :leaf, :by "root", :at 1517414595916, :text "|", :id "B1gn6_v1Uz"} - } - } - "j" {:type :leaf, :by "root", :at 1517414600004, :text "acc", :id "r1-JRuPJ8z"} - } - } - "v" { - :type :expr, :by "root", :at 1517414544922, :id "Hyt5dPkIM" - :data { - "T" {:type :leaf, :by "root", :at 1517414547473, :text ":else", :id "Hyt5dPkIMleaf"} - "j" { - :type :expr, :by "root", :at 1517414548528, :id "SJ6quwyIM" - :data { - "T" {:type :leaf, :by "root", :at 1517414549323, :text "conj", :id "S1h5_PyIM"} - "j" {:type :leaf, :by "root", :at 1517414550607, :text "acc", :id "r1Cq_DJIz"} - "r" {:type :leaf, :by "root", :at 1517414552312, :text "cursor", :id "rkl1jOwyIG"} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517414489146, :id "ryxZDOwkLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414493060, :text "recur", :id "ryxZDOwkLMleaf"} - "j" {:type :leaf, :by "root", :at 1517414495631, :text "next-acc", :id "r1IDOPkIM"} - "r" { - :type :expr, :by "root", :at 1517414496703, :id "ByFD_PJUM" - :data { - "T" {:type :leaf, :by "root", :at 1517414498622, :text "rest", :id "Syx_POP18f"} - "j" {:type :leaf, :by "root", :at 1517414499398, :text "xs", :id "B1gjwuP18f"} - } - } - } - } - } - } - } - } - } - } - "map-val" { - :type :expr, :by "root", :at 1517559573567, :id "r1xCG1sWIM" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "defn", :id "rJb0f1sZIz"} - "j" {:type :leaf, :by "root", :at 1517559573567, :text "map-val", :id "rkM0GksWLf"} - "r" { - :type :expr, :by "root", :at 1517559573567, :id "HJQRfyjWIf" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "f", :id "BJVRMJj-Lz"} - "j" {:type :leaf, :by "root", :at 1517559573567, :text "xs", :id "B1BAGJjWIG"} - } - } - "v" { - :type :expr, :by "root", :at 1517559573567, :id "SJ8CMkiZ8f" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "assert", :id "BkP0fki-UG"} - "j" { - :type :expr, :by "root", :at 1517559658111, :id "BJzdJsb8f" - :data { - "D" {:type :leaf, :by "root", :at 1517559659944, :text "or", :id "SJxM_ks-8z"} - "T" { - :type :expr, :by "root", :at 1517559573567, :id "SkOCfyj-IG" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "map?", :id "SyF0fyjb8z"} - "j" {:type :leaf, :by "root", :at 1517559573567, :text "xs", :id "HycRzJjW8z"} - } - } - "j" { - :type :expr, :by "root", :at 1517559660926, :id "SySuJjWUf" - :data { - "T" {:type :leaf, :by "root", :at 1517559663092, :text "seq?", :id "rJbV_yoZLf"} - "j" {:type :leaf, :by "root", :at 1517559663896, :text "xs", :id "SkWPOyo-IG"} - } - } - } - } - "r" {:type :leaf, :by "root", :at 1517559573567, :text "|map-val deals maps", :id "SksCzysZ8M"} - } - } - "x" { - :type :expr, :by "root", :at 1517559573567, :id "SJ30fJjZUG" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "->>", :id "S1TCG1i-If"} - "j" {:type :leaf, :by "root", :at 1517559573567, :text "xs", :id "rkACzyo-LG"} - "r" { - :type :expr, :by "root", :at 1517559573567, :id "rJJxCGJi-8z" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "map", :id "HJgeRz1jWIf"} - "j" { - :type :expr, :by "root", :at 1517559573567, :id "Sy-gCz1oZ8G" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "fn", :id "HyzeRGJs-Lf"} - "j" { - :type :expr, :by "root", :at 1517559573567, :id "Sy7lAfyiWIM" - :data { - "T" { - :type :expr, :by "root", :at 1517559573567, :id "HJVxAGJo-LM" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "[]", :id "HJHxCzJiZLf"} - "j" {:type :leaf, :by "root", :at 1517559573567, :text "k", :id "r1IeAf1iZLf"} - "r" {:type :leaf, :by "root", :at 1517559573567, :text "x", :id "HJve0zkjb8M"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517559573567, :id "HJOxAzJsZIf" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "[]", :id "SyYlRG1jWUG"} - "j" {:type :leaf, :by "root", :at 1517559573567, :text "k", :id "Sk9l0MkjZUf"} - "r" { - :type :expr, :by "root", :at 1517559573567, :id "SkjeCzkjbUz" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "f", :id "H12lAf1iWIG"} - "j" {:type :leaf, :by "root", :at 1517559573567, :text "x", :id "S1pgCMJoWIf"} - } - } - } - } - } - } - } - } - } - } - } - } - "map-with-index" { - :type :expr, :by "root", :at 1517559819032, :id "rklmMgsbLG" - :data { - "T" {:type :leaf, :by "root", :at 1517559819032, :text "defn", :id "ryWXfljbIz"} - "j" {:type :leaf, :by "root", :at 1517559819032, :text "map-with-index", :id "S1GXGxoW8M"} - "r" { - :type :expr, :by "root", :at 1517559819032, :id "rymmMxjW8z" - :data { - "T" {:type :leaf, :by "root", :at 1517559825655, :text "f", :id "rJFMloZIG"} - "j" {:type :leaf, :by "root", :at 1517559826767, :text "xs", :id "rke9Mgs-8M"} - } - } - "v" { - :type :expr, :by "root", :at 1517559573567, :id "HJgWVloW8G" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "->>", :id "S1TCG1i-If"} - "j" {:type :leaf, :by "root", :at 1517559573567, :text "xs", :id "rkACzyo-LG"} - "r" { - :type :expr, :by "root", :at 1517559573567, :id "rJJxCGJi-8z" - :data { - "T" {:type :leaf, :by "root", :at 1517559858075, :text "map-indexed", :id "HJgeRz1jWIf"} - "j" { - :type :expr, :by "root", :at 1517559573567, :id "Sy-gCz1oZ8G" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "fn", :id "HyzeRGJs-Lf"} - "j" { - :type :expr, :by "root", :at 1517559573567, :id "Sy7lAfyiWIM" - :data { - "D" {:type :leaf, :by "root", :at 1517559854704, :text "idx", :id "HJl84xo-LM"} - "T" {:type :leaf, :by "root", :at 1517559853576, :text "x", :id "HyHExi-IG"} - } - } - "r" { - :type :expr, :by "root", :at 1517559573567, :id "HJOxAzJsZIf" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "[]", :id "SyYlRG1jWUG"} - "j" {:type :leaf, :by "root", :at 1517559861031, :text "idx", :id "Sk9l0MkjZUf"} - "r" { - :type :expr, :by "root", :at 1517559573567, :id "SkjeCzkjbUz" - :data { - "T" {:type :leaf, :by "root", :at 1517559573567, :text "f", :id "H12lAf1iWIG"} - "j" {:type :leaf, :by "root", :at 1517559573567, :text "x", :id "S1pgCMJoWIf"} - } - } - } - } - } - } - } - } - } - } - } - } - "test-join-path!" { - :type :expr, :by "root", :at 1517414720996, :id "SJlFSKP1IG" - :data { - "T" {:type :leaf, :by "root", :at 1517414720996, :text "defn", :id "rJbYStDJUf"} - "j" {:type :leaf, :by "root", :at 1517414720996, :text "test-join-path!", :id "BkftStDkIG"} - "r" { - :type :expr, :by "root", :at 1517414720996, :id "SkXKHFvyLM" - :data {} - } - "v" { - :type :expr, :by "root", :at 1517414725114, :id "ryprKP1Uf" - :data { - "T" {:type :leaf, :by "root", :at 1517414725921, :text "println", :id "ryprKP1Ufleaf"} - "j" { - :type :expr, :by "root", :at 1517414799864, :id "r1_cYv1UG" - :data { - "D" {:type :leaf, :by "root", :at 1517414801238, :text "pr-str", :id "Hyeu5FD1Lz"} - "T" { - :type :expr, :by "root", :at 1517414791347, :id "SyWk5YPJLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414792803, :text "join-path", :id "BkN0BKPkLG"} - "j" {:type :leaf, :by "root", :at 1517414794745, :text "|", :id "SJz-qYwkIM"} - "r" {:type :leaf, :by "root", :at 1517414795373, :text "|", :id "HJb79FwyLf"} - } - } - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517414725114, :id "SJRqKwk8G" - :data { - "T" {:type :leaf, :by "root", :at 1517414725921, :text "println", :id "ryprKP1Ufleaf"} - "j" { - :type :expr, :by "root", :at 1517414799864, :id "r1_cYv1UG" - :data { - "D" {:type :leaf, :by "root", :at 1517414801238, :text "pr-str", :id "Hyeu5FD1Lz"} - "T" { - :type :expr, :by "root", :at 1517414791347, :id "SyWk5YPJLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414792803, :text "join-path", :id "BkN0BKPkLG"} - "j" {:type :leaf, :by "root", :at 1517414807621, :text "|/", :id "SJz-qYwkIM"} - "r" {:type :leaf, :by "root", :at 1517414795373, :text "|", :id "HJb79FwyLf"} - } - } - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517414725114, :id "ByeRcKvkIG" - :data { - "T" {:type :leaf, :by "root", :at 1517414725921, :text "println", :id "ryprKP1Ufleaf"} - "j" { - :type :expr, :by "root", :at 1517414799864, :id "r1_cYv1UG" - :data { - "D" {:type :leaf, :by "root", :at 1517414801238, :text "pr-str", :id "Hyeu5FD1Lz"} - "T" { - :type :expr, :by "root", :at 1517414791347, :id "SyWk5YPJLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414792803, :text "join-path", :id "BkN0BKPkLG"} - "j" {:type :leaf, :by "root", :at 1517414794745, :text "|", :id "SJz-qYwkIM"} - "r" {:type :leaf, :by "root", :at 1517414811014, :text "|/", :id "HJb79FwyLf"} - } - } - } - } - } - } - "yT" { - :type :expr, :by "root", :at 1517414725114, :id "BkbC9YD1If" - :data { - "T" {:type :leaf, :by "root", :at 1517414725921, :text "println", :id "ryprKP1Ufleaf"} - "j" { - :type :expr, :by "root", :at 1517414799864, :id "r1_cYv1UG" - :data { - "D" {:type :leaf, :by "root", :at 1517414801238, :text "pr-str", :id "Hyeu5FD1Lz"} - "T" { - :type :expr, :by "root", :at 1517414791347, :id "SyWk5YPJLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414792803, :text "join-path", :id "BkN0BKPkLG"} - "j" {:type :leaf, :by "root", :at 1517414840762, :text "|a", :id "SJz-qYwkIM"} - "r" {:type :leaf, :by "root", :at 1517414911201, :text "|b", :id "HJb79FwyLf"} - } - } - } - } - } - } - "yj" { - :type :expr, :by "root", :at 1517414725114, :id "rklOgcD1Lz" - :data { - "T" {:type :leaf, :by "root", :at 1517414725921, :text "println", :id "ryprKP1Ufleaf"} - "j" { - :type :expr, :by "root", :at 1517414799864, :id "r1_cYv1UG" - :data { - "D" {:type :leaf, :by "root", :at 1517414801238, :text "pr-str", :id "Hyeu5FD1Lz"} - "T" { - :type :expr, :by "root", :at 1517414791347, :id "SyWk5YPJLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414792803, :text "join-path", :id "BkN0BKPkLG"} - "j" {:type :leaf, :by "root", :at 1517414840762, :text "|a", :id "SJz-qYwkIM"} - "r" {:type :leaf, :by "root", :at 1517414913536, :text "|../b", :id "HJb79FwyLf"} - } - } - } - } - } - } - "yr" { - :type :expr, :by "root", :at 1517414725114, :id "HkKlqPyIG" - :data { - "T" {:type :leaf, :by "root", :at 1517414725921, :text "println", :id "ryprKP1Ufleaf"} - "j" { - :type :expr, :by "root", :at 1517414799864, :id "r1_cYv1UG" - :data { - "D" {:type :leaf, :by "root", :at 1517414801238, :text "pr-str", :id "Hyeu5FD1Lz"} - "T" { - :type :expr, :by "root", :at 1517414791347, :id "SyWk5YPJLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414792803, :text "join-path", :id "BkN0BKPkLG"} - "j" {:type :leaf, :by "root", :at 1517414840762, :text "|a", :id "SJz-qYwkIM"} - "r" {:type :leaf, :by "root", :at 1517414915841, :text "|./b", :id "HJb79FwyLf"} - } - } - } - } - } - } - "yv" { - :type :expr, :by "root", :at 1517414725114, :id "rklwMqPJUz" - :data { - "T" {:type :leaf, :by "root", :at 1517414725921, :text "println", :id "ryprKP1Ufleaf"} - "j" { - :type :expr, :by "root", :at 1517414799864, :id "r1_cYv1UG" - :data { - "D" {:type :leaf, :by "root", :at 1517414801238, :text "pr-str", :id "Hyeu5FD1Lz"} - "T" { - :type :expr, :by "root", :at 1517414791347, :id "SyWk5YPJLM" - :data { - "T" {:type :leaf, :by "root", :at 1517414792803, :text "join-path", :id "BkN0BKPkLG"} - "j" {:type :leaf, :by "root", :at 1517414929956, :text "|a/", :id "SJz-qYwkIM"} - "r" {:type :leaf, :by "root", :at 1517414915841, :text "|./b", :id "HJb79FwyLf"} - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517411855327, :id "SJ7wzAUk8M" - :data {} - } - } - } - } - :sessions {} - :users { - "B1y7Rc-Zz" {:id "B1y7Rc-Zz", :name "chen", :nickname "chen", :password "d41d8cd98f00b204e9800998ecf8427e", :avatar nil, :theme :star-trail} - "root" {:id "root", :name "root", :nickname "root", :password "d41d8cd98f00b204e9800998ecf8427e", :avatar nil, :theme :star-trail} - } - :saved-files {} - :configs {:storage-key "calcit.edn", :extension ".cljs", :output "src", :port 6001} - :repl { - :alive? false - :logs {} - } -} \ No newline at end of file diff --git a/app/cli/build/upload.clj b/app/cli/build/upload.clj deleted file mode 100644 index 15aa657..0000000 --- a/app/cli/build/upload.clj +++ /dev/null @@ -1,19 +0,0 @@ - -(ns build.upload - (:require [clojure.java.shell :refer [sh]])) - -(def configs {:orgization "mvc-works" - :name "termina" - :cdn "termina"}) - -(defn sh! [command] - (println command) - (println (sh "bash" "-c" command))) - -(defn -main [] - (sh! (str "rsync -avr --progress dist/* tiye.me:cdn/" (:cdn configs))) - (sh! - (str "rsync -avr --progress dist/{index.html,manifest.json} tiye.me:repo/" - (:orgization configs) "/" - (:name configs) "/")) - (shutdown-agents)) diff --git a/app/deps.edn b/app/deps.edn deleted file mode 100644 index 60232f5..0000000 --- a/app/deps.edn +++ /dev/null @@ -1,2 +0,0 @@ - -{:paths ["cli/"]} diff --git a/app/entry/main.css b/app/entry/main.css deleted file mode 100644 index acfa620..0000000 --- a/app/entry/main.css +++ /dev/null @@ -1,9 +0,0 @@ - -body { - margin: 0; - font-display: optional; -} - -body * { - box-sizing: border-box; -} diff --git a/app/package.json b/app/package.json deleted file mode 100644 index c3c6bfe..0000000 --- a/app/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "termina", - "version": "0.1.0", - "description": "Termina", - "main": "index.js", - "scripts": { - "watch": "shadow-cljs watch browser", - "build": "shadow-cljs clj-run -m build.main/build", - "serve": "http-server dist -s", - "repl": "rlwrap shadow-cljs clj-repl" - }, - "repository": { - "type": "git", - "url": "git@github.com:mvc-works/termina.git" - }, - "author": "jiyinyiyong", - "license": "MIT", - "devDependencies": { - "http-server": "^0.11.1", - "shadow-cljs": "^2.2.3" - } -} diff --git a/app/shadow-cljs.edn b/app/shadow-cljs.edn deleted file mode 100644 index aa7f5c7..0000000 --- a/app/shadow-cljs.edn +++ /dev/null @@ -1,26 +0,0 @@ - -{:source-paths ["src" "cli"] - :dependencies [[mvc-works/hsl "0.1.2"] - [mvc-works/verbosely "0.1.2"] - [mvc-works/keycode "0.1.3"] - [mvc-works/shell-page "0.1.7"] - [cumulo/recollect "0.4.3"] - [respo "0.8.15"] - [respo/ui "0.3.3"] - [respo/message "0.2.3"]] - :builds {:browser {:output-dir "target/" - :asset-path "./" - :target :browser - :modules {:main {:entries [app.main]}} - :devtools {:after-load app.main/reload! - :preloads [shadow.cljs.devtools.client.hud] - :http-root "target" - :http-port 7000} - :compiler-options {:infer-externs :auto} - :release {:output-dir "dist/"} - :module-hash-names 8 - :build-options {:manifest-name "assets.edn"}} - :ssr {:target :node-script - :output-to "target/ssr.js" - :main app.render/main! - :devtools {:after-load app.render/main!}}}} diff --git a/app/src/app/comp/container.cljs b/app/src/app/comp/container.cljs deleted file mode 100644 index a71fd08..0000000 --- a/app/src/app/comp/container.cljs +++ /dev/null @@ -1,59 +0,0 @@ - -(ns app.comp.container - (:require [hsl.core :refer [hsl]] - [respo-ui.core :as ui] - [respo-ui.colors :as colors] - [respo.macros :refer [defcomp <> div cursor-> action-> span button pre]] - [respo.comp.inspect :refer [comp-inspect]] - [respo.comp.space :refer [=<]] - [app.comp.header :refer [comp-header]] - [app.comp.profile :refer [comp-profile]] - [app.comp.login :refer [comp-login]] - [respo-message.comp.msg-list :refer [comp-msg-list]] - [app.comp.reel :refer [comp-reel]] - [app.comp.missing :refer [comp-missing]] - [app.comp.home :refer [comp-home]] - [app.comp.workflow :refer [comp-workflow-container]] - [app.comp.history :refer [comp-history]] - [app.comp.process-detail :refer [comp-process-detail]])) - -(defcomp - comp-offline - () - (div - {:style (merge ui/global ui/fullscreen ui/center)} - (span - {:style {:font-family ui/font-fancy, :font-weight 100, :font-size 40, :cursor :pointer}, - :title "Click to reconnect!", - :on-click (action-> :effect/connect nil)} - (<> "No connection!")) - (<> - "This is a placeholder page for Termina, install and run the command line to try again:") - (pre {:inner-text "npm i -g termina", :style {:font-family ui/font-code}}))) - -(def style-debugger {:bottom 0, :left 0, :max-width "100%"}) - -(defcomp - comp-container - (states store) - (let [state (:data states), session (:session store)] - (if (nil? store) - (comp-offline) - (div - {:style (merge ui/global ui/fullscreen ui/column)} - (comp-header (:logged-in? store) (:router store)) - (=< nil 8) - (if (:logged-in? store) - (let [router (:router store), router-data (:data router)] - (case (:name router) - :profile (comp-profile (:user store)) - :home (comp-home router-data states) - :workflows - (cursor-> :workflows comp-workflow-container states (:workflows router-data)) - :history (comp-history (:histories router-data)) - :process (comp-process-detail router-data) - (comp-missing router))) - (comp-login states)) - (comp-inspect "Store" (:router store) style-debugger) - (comp-msg-list (get-in store [:notifications]) :session/remove-notification) - (comp-reel (:reel-length store) {}))))) diff --git a/app/src/app/comp/login.cljs b/app/src/app/comp/login.cljs deleted file mode 100644 index d986a08..0000000 --- a/app/src/app/comp/login.cljs +++ /dev/null @@ -1,53 +0,0 @@ - -(ns app.comp.login - (:require [respo.macros :refer [defcomp <> div input button span]] - [respo.comp.space :refer [=<]] - [respo.comp.inspect :refer [comp-inspect]] - [respo-ui.core :as ui] - [app.schema :as schema] - [app.style :as style])) - -(def initial-state {:username "", :password ""}) - -(defn on-input [state k] (fn [e dispatch! mutate!] (mutate! (assoc state k (:value e))))) - -(defn on-submit [username password signup?] - (fn [e dispatch!] - (dispatch! (if signup? :user/sign-up :user/log-in) [username password]) - (.setItem js/localStorage (:storage-key schema/configs) [username password]))) - -(defcomp - comp-login - (states) - (let [state (or (:data states) initial-state)] - (div - {:style (merge ui/flex ui/center)} - (div - {:style {}} - (div - {} - (input - {:placeholder "Username", - :value (:username state), - :style style/input, - :on-input (on-input state :username)})) - (=< nil 8) - (div - {} - (input - {:placeholder "Password", - :value (:password state), - :style style/input, - :on-input (on-input state :password)}))) - (=< nil 8) - (div - {:style {}} - (button - {:inner-text "Sign up", - :style (merge style/button), - :on-click (on-submit (:username state) (:password state) true)}) - (=< 8 nil) - (button - {:inner-text "Log in", - :style (merge style/button), - :on-click (on-submit (:username state) (:password state) false)}))))) diff --git a/app/src/app/comp/profile.cljs b/app/src/app/comp/profile.cljs deleted file mode 100644 index b04ff22..0000000 --- a/app/src/app/comp/profile.cljs +++ /dev/null @@ -1,28 +0,0 @@ - -(ns app.comp.profile - (:require [hsl.core :refer [hsl]] - [app.schema :as schema] - [respo-ui.core :as ui] - [respo-ui.colors :as colors] - [respo.macros :refer [defcomp <> span div a]] - [respo.comp.space :refer [=<]])) - -(defn on-log-out [e dispatch!] - (dispatch! :user/log-out nil) - (.removeItem js/localStorage (:storage-key schema/configs))) - -(def style-trigger - {:font-size 14, - :cursor :pointer, - :background-color colors/motif-light, - :color :white, - :padding "0 8px"}) - -(defcomp - comp-profile - (user) - (div - {:style (merge ui/flex {:padding "8px 16px"})} - (<> span (str "Hello! " (:name user)) nil) - (=< 8 nil) - (a {:style style-trigger, :on-click on-log-out} (<> span "Log out" nil)))) diff --git a/app/src/app/render.cljs b/app/src/app/render.cljs deleted file mode 100644 index 7e67ce6..0000000 --- a/app/src/app/render.cljs +++ /dev/null @@ -1,36 +0,0 @@ - -(ns app.render - (:require [respo.render.html :refer [make-string]] - [shell-page.core :refer [make-page spit slurp]] - [app.comp.container :refer [comp-container]] - [cljs.reader :refer [read-string]])) - -(def base-info - {:title "Termina", - :icon "http://cdn.tiye.me/logo/termina.png", - :ssr nil, - :inline-styles [(slurp "entry/main.css")]}) - -(defn dev-page [] - (make-page - "" - (merge base-info {:styles ["http://localhost:8100/main.css"], :scripts ["/main.js"]}))) - -(def preview? (= "preview" js/process.env.prod)) - -(defn prod-page [] - (let [html-content (make-string (comp-container {} nil)) - assets (read-string (slurp "dist/assets.edn")) - cdn (if preview? "" "http://cdn.tiye.me/termina/") - prefix-cdn #(str cdn %)] - (make-page - html-content - (merge - base-info - {:styles ["http://cdn.tiye.me/favored-fonts/main.css"], - :scripts (map #(-> % :output-name prefix-cdn) assets)})))) - -(defn main! [] - (if (= js/process.env.env "dev") - (spit "target/index.html" (dev-page)) - (spit "dist/index.html" (prod-page)))) diff --git a/app/src/app/schema.cljs b/app/src/app/schema.cljs deleted file mode 100644 index 75bcb59..0000000 --- a/app/src/app/schema.cljs +++ /dev/null @@ -1,4 +0,0 @@ - -(ns app.schema ) - -(def configs {:storage-key "termina-storage", :port 6200}) diff --git a/app/src/app/style.cljs b/app/src/app/style.cljs deleted file mode 100644 index 49f3934..0000000 --- a/app/src/app/style.cljs +++ /dev/null @@ -1,9 +0,0 @@ - -(ns app.style (:require [respo-ui.core :as ui])) - -(def button - (merge ui/button {:padding "0 8px", :min-width 40, :line-height "24px", :height "24px"})) - -(def input (merge ui/input {:width 320})) - -(def link (merge ui/link)) diff --git a/app/yarn.lock b/app/yarn.lock deleted file mode 100644 index 2b87034..0000000 --- a/app/yarn.lock +++ /dev/null @@ -1,1335 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - -asn1.js@^4.0.0: - version "4.9.2" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -assert@^1.1.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" - dependencies: - util "0.10.3" - -async-limiter@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" - -async@^1.5.2: - version "1.5.2" - resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" - -babel-code-frame@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" - dependencies: - chalk "^1.1.3" - esutils "^2.0.2" - js-tokens "^3.0.2" - -babel-core@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" - dependencies: - babel-code-frame "^6.26.0" - babel-generator "^6.26.0" - babel-helpers "^6.24.1" - babel-messages "^6.23.0" - babel-register "^6.26.0" - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - convert-source-map "^1.5.0" - debug "^2.6.8" - json5 "^0.5.1" - lodash "^4.17.4" - minimatch "^3.0.4" - path-is-absolute "^1.0.1" - private "^0.1.7" - slash "^1.0.0" - source-map "^0.5.6" - -babel-generator@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" - dependencies: - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - detect-indent "^4.0.0" - jsesc "^1.3.0" - lodash "^4.17.4" - source-map "^0.5.6" - trim-right "^1.0.1" - -babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" - dependencies: - babel-helper-explode-assignable-expression "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-call-delegate@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" - dependencies: - babel-helper-hoist-variables "^6.24.1" - babel-runtime "^6.22.0" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-define-map@^6.24.1: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" - dependencies: - babel-helper-function-name "^6.24.1" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - lodash "^4.17.4" - -babel-helper-explode-assignable-expression@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" - dependencies: - babel-runtime "^6.22.0" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-function-name@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" - dependencies: - babel-helper-get-function-arity "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-get-function-arity@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-hoist-variables@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-optimise-call-expression@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-regex@^6.24.1: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" - dependencies: - babel-runtime "^6.26.0" - babel-types "^6.26.0" - lodash "^4.17.4" - -babel-helper-remap-async-to-generator@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" - dependencies: - babel-helper-function-name "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-replace-supers@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" - dependencies: - babel-helper-optimise-call-expression "^6.24.1" - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helpers@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" - dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-messages@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-check-es2015-constants@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-syntax-async-functions@^6.8.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" - -babel-plugin-syntax-exponentiation-operator@^6.8.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" - -babel-plugin-syntax-trailing-function-commas@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" - -babel-plugin-transform-async-to-generator@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" - dependencies: - babel-helper-remap-async-to-generator "^6.24.1" - babel-plugin-syntax-async-functions "^6.8.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-arrow-functions@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-block-scoping@^6.23.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" - dependencies: - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - lodash "^4.17.4" - -babel-plugin-transform-es2015-classes@^6.23.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" - dependencies: - babel-helper-define-map "^6.24.1" - babel-helper-function-name "^6.24.1" - babel-helper-optimise-call-expression "^6.24.1" - babel-helper-replace-supers "^6.24.1" - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-computed-properties@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" - dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-destructuring@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-duplicate-keys@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-for-of@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-function-name@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" - dependencies: - babel-helper-function-name "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-literals@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" - dependencies: - babel-plugin-transform-es2015-modules-commonjs "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" - dependencies: - babel-plugin-transform-strict-mode "^6.24.1" - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-types "^6.26.0" - -babel-plugin-transform-es2015-modules-systemjs@^6.23.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" - dependencies: - babel-helper-hoist-variables "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-modules-umd@^6.23.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" - dependencies: - babel-plugin-transform-es2015-modules-amd "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-object-super@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" - dependencies: - babel-helper-replace-supers "^6.24.1" - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-parameters@^6.23.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" - dependencies: - babel-helper-call-delegate "^6.24.1" - babel-helper-get-function-arity "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-shorthand-properties@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-spread@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-sticky-regex@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" - dependencies: - babel-helper-regex "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-template-literals@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-typeof-symbol@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-unicode-regex@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" - dependencies: - babel-helper-regex "^6.24.1" - babel-runtime "^6.22.0" - regexpu-core "^2.0.0" - -babel-plugin-transform-exponentiation-operator@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" - dependencies: - babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" - babel-plugin-syntax-exponentiation-operator "^6.8.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-regenerator@^6.22.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" - dependencies: - regenerator-transform "^0.10.0" - -babel-plugin-transform-strict-mode@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-preset-env@^1.6.0: - version "1.6.1" - resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" - dependencies: - babel-plugin-check-es2015-constants "^6.22.0" - babel-plugin-syntax-trailing-function-commas "^6.22.0" - babel-plugin-transform-async-to-generator "^6.22.0" - babel-plugin-transform-es2015-arrow-functions "^6.22.0" - babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" - babel-plugin-transform-es2015-block-scoping "^6.23.0" - babel-plugin-transform-es2015-classes "^6.23.0" - babel-plugin-transform-es2015-computed-properties "^6.22.0" - babel-plugin-transform-es2015-destructuring "^6.23.0" - babel-plugin-transform-es2015-duplicate-keys "^6.22.0" - babel-plugin-transform-es2015-for-of "^6.23.0" - babel-plugin-transform-es2015-function-name "^6.22.0" - babel-plugin-transform-es2015-literals "^6.22.0" - babel-plugin-transform-es2015-modules-amd "^6.22.0" - babel-plugin-transform-es2015-modules-commonjs "^6.23.0" - babel-plugin-transform-es2015-modules-systemjs "^6.23.0" - babel-plugin-transform-es2015-modules-umd "^6.23.0" - babel-plugin-transform-es2015-object-super "^6.22.0" - babel-plugin-transform-es2015-parameters "^6.23.0" - babel-plugin-transform-es2015-shorthand-properties "^6.22.0" - babel-plugin-transform-es2015-spread "^6.22.0" - babel-plugin-transform-es2015-sticky-regex "^6.22.0" - babel-plugin-transform-es2015-template-literals "^6.22.0" - babel-plugin-transform-es2015-typeof-symbol "^6.23.0" - babel-plugin-transform-es2015-unicode-regex "^6.22.0" - babel-plugin-transform-exponentiation-operator "^6.22.0" - babel-plugin-transform-regenerator "^6.22.0" - browserslist "^2.1.2" - invariant "^2.2.2" - semver "^5.3.0" - -babel-register@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" - dependencies: - babel-core "^6.26.0" - babel-runtime "^6.26.0" - core-js "^2.5.0" - home-or-tmp "^2.0.0" - lodash "^4.17.4" - mkdirp "^0.5.1" - source-map-support "^0.4.15" - -babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.11.0" - -babel-template@^6.24.1, babel-template@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" - dependencies: - babel-runtime "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - lodash "^4.17.4" - -babel-traverse@^6.24.1, babel-traverse@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" - dependencies: - babel-code-frame "^6.26.0" - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - debug "^2.6.8" - globals "^9.18.0" - invariant "^2.2.2" - lodash "^4.17.4" - -babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" - dependencies: - babel-runtime "^6.26.0" - esutils "^2.0.2" - lodash "^4.17.4" - to-fast-properties "^1.0.3" - -babylon@^6.18.0: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" - -balanced-match@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - -base64-js@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" - -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: - version "4.11.8" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" - -brace-expansion@^1.1.7: - version "1.1.8" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -brorand@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.1.1" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - -browserify-rsa@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" - dependencies: - bn.js "^4.1.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" - dependencies: - bn.js "^4.1.1" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.2" - elliptic "^6.0.0" - inherits "^2.0.1" - parse-asn1 "^5.0.0" - -browserify-zlib@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" - dependencies: - pako "~1.0.5" - -browserslist@^2.1.2: - version "2.9.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.9.1.tgz#b72d3982ab01b5cd24da62ff6d45573886aff275" - dependencies: - caniuse-lite "^1.0.30000770" - electron-to-chromium "^1.3.27" - -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - -buffer@^4.3.0: - version "4.9.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - isarray "^1.0.0" - -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - -caniuse-lite@^1.0.30000770: - version "1.0.30000777" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000777.tgz#31c18a4a8cd49782ebb305c8e8a93e6b3b3e4f13" - -chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -colors@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - -console-browserify@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" - dependencies: - date-now "^0.1.4" - -constants-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" - -convert-source-map@^1.5.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" - -core-js@^2.4.0, core-js@^2.5.0: - version "2.5.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" - -core-util-is@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - -corser@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/corser/-/corser-2.0.1.tgz#8eda252ecaab5840dcd975ceb90d9370c819ff87" - -create-ecdh@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" - dependencies: - bn.js "^4.1.0" - elliptic "^6.0.0" - -create-hash@^1.1.0, create-hash@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - ripemd160 "^2.0.0" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: - version "1.1.6" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" - dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -crypto-browserify@^3.11.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" - dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" - -date-now@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" - -debug@^2.2.0, debug@^2.6.8: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - dependencies: - ms "2.0.0" - -des.js@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" - dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -detect-indent@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" - dependencies: - repeating "^2.0.0" - -diffie-hellman@^5.0.0: - version "5.0.2" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" - dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" - -domain-browser@^1.1.1: - version "1.1.7" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" - -ecstatic@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/ecstatic/-/ecstatic-3.1.1.tgz#2564aa9dde84179dcaf926a9e6d12df13a0b666d" - dependencies: - he "^1.1.1" - mime "^1.4.1" - minimist "^1.1.0" - url-join "^2.0.2" - -electron-to-chromium@^1.3.27: - version "1.3.27" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.27.tgz#78ecb8a399066187bb374eede35d9c70565a803d" - -elliptic@^6.0.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" - dependencies: - bn.js "^4.4.0" - brorand "^1.0.1" - hash.js "^1.0.0" - hmac-drbg "^1.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.0" - -escape-string-regexp@^1.0.2: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - -esutils@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" - -eventemitter3@1.x.x: - version "1.2.0" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" - -events@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" - -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" - dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" - -globals@^9.18.0: - version "9.18.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" - -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - dependencies: - ansi-regex "^2.0.0" - -hash-base@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" - dependencies: - inherits "^2.0.1" - -hash-base@^3.0.0: - version "3.0.4" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.0" - -he@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" - -hmac-drbg@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - -home-or-tmp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.1" - -http-proxy@^1.8.1: - version "1.16.2" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" - dependencies: - eventemitter3 "1.x.x" - requires-port "1.x.x" - -http-server@^0.11.1: - version "0.11.1" - resolved "https://registry.yarnpkg.com/http-server/-/http-server-0.11.1.tgz#2302a56a6ffef7f9abea0147d838a5e9b6b6a79b" - dependencies: - colors "1.0.3" - corser "~2.0.0" - ecstatic "^3.0.0" - http-proxy "^1.8.1" - opener "~1.4.0" - optimist "0.6.x" - portfinder "^1.0.13" - union "~0.4.3" - -https-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" - -ieee754@^1.1.4: - version "1.1.8" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" - -indexof@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" - -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - -inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - -invariant@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" - dependencies: - loose-envify "^1.0.0" - -is-finite@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" - dependencies: - number-is-nan "^1.0.0" - -isarray@^1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - -js-tokens@^3.0.0, js-tokens@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" - -jsesc@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - -json5@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" - -lodash@^4.17.4: - version "4.17.4" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" - -loose-envify@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" - dependencies: - js-tokens "^3.0.0" - -md5.js@^1.3.4: - version "1.3.4" - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" - -mime@^1.4.1: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - -minimalistic-assert@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" - -minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - -minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - dependencies: - brace-expansion "^1.1.7" - -minimist@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" - -minimist@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" - -minimist@~0.0.1: - version "0.0.10" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" - -mkdirp@0.5.x, mkdirp@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" - dependencies: - minimist "0.0.8" - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - -node-libs-browser@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" - dependencies: - assert "^1.1.1" - browserify-zlib "^0.2.0" - buffer "^4.3.0" - console-browserify "^1.1.0" - constants-browserify "^1.0.0" - crypto-browserify "^3.11.0" - domain-browser "^1.1.1" - events "^1.0.0" - https-browserify "^1.0.0" - os-browserify "^0.3.0" - path-browserify "0.0.0" - process "^0.11.10" - punycode "^1.2.4" - querystring-es3 "^0.2.0" - readable-stream "^2.3.3" - stream-browserify "^2.0.1" - stream-http "^2.7.2" - string_decoder "^1.0.0" - timers-browserify "^2.0.4" - tty-browserify "0.0.0" - url "^0.11.0" - util "^0.10.3" - vm-browserify "0.0.4" - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - -opener@~1.4.0: - version "1.4.3" - resolved "https://registry.yarnpkg.com/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" - -optimist@0.6.x: - version "0.6.1" - resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" - dependencies: - minimist "~0.0.1" - wordwrap "~0.0.2" - -os-browserify@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - -os-homedir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - -os-tmpdir@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - -pako@~1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" - -parse-asn1@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" - dependencies: - asn1.js "^4.0.0" - browserify-aes "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - -path-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" - -path-is-absolute@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - -pbkdf2@^3.0.3: - version "3.0.14" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -portfinder@^1.0.13: - version "1.0.13" - resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" - dependencies: - async "^1.5.2" - debug "^2.2.0" - mkdirp "0.5.x" - -private@^0.1.6, private@^0.1.7: - version "0.1.8" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" - -process-nextick-args@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" - -process@^0.11.10: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - -public-encrypt@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - -punycode@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - -punycode@^1.2.4: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - -qs@~2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404" - -querystring-es3@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - -querystring@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" - dependencies: - safe-buffer "^5.1.0" - -randomfill@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" - dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" - -readable-stream@^2.0.2, readable-stream@^2.2.6, readable-stream@^2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - safe-buffer "~5.1.1" - string_decoder "~1.0.3" - util-deprecate "~1.0.1" - -readline-sync@^1.4.7: - version "1.4.7" - resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.7.tgz#001bfdd4c06110c3c084c63bf7c6a56022213f30" - -regenerate@^1.2.1: - version "1.3.3" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" - -regenerator-runtime@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" - -regenerator-transform@^0.10.0: - version "0.10.1" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" - dependencies: - babel-runtime "^6.18.0" - babel-types "^6.19.0" - private "^0.1.6" - -regexpu-core@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" - dependencies: - regenerate "^1.2.1" - regjsgen "^0.2.0" - regjsparser "^0.1.4" - -regjsgen@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" - -regjsparser@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" - dependencies: - jsesc "~0.5.0" - -repeating@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" - dependencies: - is-finite "^1.0.0" - -requires-port@1.x.x: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" - dependencies: - hash-base "^2.0.0" - inherits "^2.0.1" - -safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" - -semver@^5.3.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" - -setimmediate@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - -sha.js@^2.4.0, sha.js@^2.4.8: - version "2.4.9" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -shadow-cljs-jar@1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/shadow-cljs-jar/-/shadow-cljs-jar-1.1.2.tgz#88664fae5957a7c21554e1a33476f1c475162c92" - -shadow-cljs@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/shadow-cljs/-/shadow-cljs-2.2.3.tgz#e91c34b2eea037a136590aabcbd316301d6c0cab" - dependencies: - babel-core "^6.26.0" - babel-preset-env "^1.6.0" - mkdirp "^0.5.1" - node-libs-browser "^2.0.0" - readline-sync "^1.4.7" - shadow-cljs-jar "1.1.2" - signal-exit "^3.0.2" - source-map-support "^0.4.15" - ws "^3.0.0" - -signal-exit@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" - -slash@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" - -source-map-support@^0.4.15: - version "0.4.18" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" - dependencies: - source-map "^0.5.6" - -source-map@^0.5.6: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - -stream-browserify@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" - dependencies: - inherits "~2.0.1" - readable-stream "^2.0.2" - -stream-http@^2.7.2: - version "2.7.2" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.1" - readable-stream "^2.2.6" - to-arraybuffer "^1.0.0" - xtend "^4.0.0" - -string_decoder@^1.0.0, string_decoder@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - dependencies: - ansi-regex "^2.0.0" - -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - -timers-browserify@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" - dependencies: - setimmediate "^1.0.4" - -to-arraybuffer@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" - -to-fast-properties@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" - -trim-right@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" - -tty-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" - -ultron@~1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" - -union@~0.4.3: - version "0.4.6" - resolved "https://registry.yarnpkg.com/union/-/union-0.4.6.tgz#198fbdaeba254e788b0efcb630bc11f24a2959e0" - dependencies: - qs "~2.3.3" - -url-join@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/url-join/-/url-join-2.0.2.tgz#c072756967ad24b8b59e5741551caac78f50b8b7" - -url@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - dependencies: - punycode "1.3.2" - querystring "0.2.0" - -util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - -util@0.10.3, util@^0.10.3: - version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - dependencies: - inherits "2.0.1" - -vm-browserify@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" - dependencies: - indexof "0.0.1" - -wordwrap@~0.0.2: - version "0.0.3" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" - -ws@^3.0.0: - version "3.3.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.2.tgz#96c1d08b3fefda1d5c1e33700d3bfaa9be2d5608" - dependencies: - async-limiter "~1.0.0" - safe-buffer "~5.1.0" - ultron "~1.1.0" - -xtend@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" diff --git a/calcit.edn b/calcit.edn new file mode 100644 index 0000000..610a462 --- /dev/null +++ b/calcit.edn @@ -0,0 +1,18074 @@ +{ + :ir { + :package "app" + :root {:ns "main", :def "main!"} + :files { + "app.client" { + :ns { + :type :expr, :id "S1uAGcLllRr-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1KCzq8geASW", :text "ns", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BycAGqLleAH-", :text "app.client", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "BysRMcUleArZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B130M9IxgASW", :text ":require", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rypCzcUgeAHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S10CGq8exABb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HyJ1m9Ueg0S-", :text "respo.core", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SylJXqLgxRrW", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "Hkb17q8lg0H-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BkzkmqIge0rW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BkmJX5LelABb", :text "render!", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SkEkQ9IgxArW", :text "clear-cache!", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "SJBkX9Ugl0S-", :text "realize-ssr!", :by "root", :at 1500541010211} + } + } + } + } + "r" { + :type :expr, :id "ryIJ7cIglCrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkPyQqLlgCBb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1Ok75IxgRSW", :text "respo.cursor", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SyFyQqIxlCrW", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "SJ9J798ggAHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJoJXqLgeRHW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S1ny7cUlx0Bb", :text "mutate", :by "root", :at 1500541010211} + } + } + } + } + "v" { + :type :expr, :id "r1pJXcIgx0SW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJ0J7cLeeCS-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJJe75Igx0Sb", :text "app.comp.container", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "rklgX5UxxCHW", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "SyWx7qIex0BW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkMx75Ixl0rW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJmxQqIelAS-", :text "comp-container", :by "root", :at 1500541010211} + } + } + } + } + "x" { + :type :expr, :id "SyVxmc8geRSb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1Blm5LelRr-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJUlmc8eeRSZ", :text "cljs.reader", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "rJDxQ5LexAHb", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "B1OxX98exRBW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyKeX98egArb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r1cg7qUlgABb", :text "read-string", :by "root", :at 1500541010211} + } + } + } + } + "y" { + :type :expr, :id "BJjlQ9LglRrW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJ2em5LxgAS-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SkagXcUllRH-", :text "app.connection", :by "root", :at 1523550558447} + "r" {:type :leaf, :id "ByAg7qLxl0Bb", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "BJ1-75UllCrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ByeZm9UelRSZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJ-W7q8eeRHW", :text "send!", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "ryz-m9IxlRHW", :text "setup-socket!", :by "root", :at 1500541010211} + } + } + } + } + "yT" { + :type :expr, :id "HJXbm58xeRrW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B14bQq8eg0rW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HyrZm9IegRSZ", :text "app.schema", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "BJ8b75LgeCS-", :text ":as", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "Byw-mqIgl0HZ", :text "schema", :by "root", :at 1500541010211} + } + } + "yj" { + :type :expr, :by "root", :at 1527788760671, :id "rJWJr3TyQ" + :data { + "T" {:type :leaf, :by "root", :at 1527788761874, :text "[]", :id "rJWJr3TyQleaf"} + "j" {:type :leaf, :by "root", :at 1527788764341, :text "app.config", :id "SJZzyHh6J7"} + "r" {:type :leaf, :by "root", :at 1527788766627, :text ":as", :id "HJI4JHhakX"} + "v" {:type :leaf, :by "root", :at 1527788767318, :text "config", :id "BJ-DJH3a17"} + } + } + } + } + } + } + :defs { + "*states" { + :type :expr, :id "HyttQ9UlgCSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJqtmc8gx0BZ", :text "defonce", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJjtXqUxg0SZ", :text "*states", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "HynY7qLeeRH-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJpFQ5Uxe0BZ", :text "atom", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "HkRKmc8leABb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyJ975UexAHW", :text "{}", :by "root", :at 1500541010211} + } + } + } + } + } + } + "*store" { + :type :expr, :id "H1dE79UxlCHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyFVQqIgxAH-", :text "defonce", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJ9NQcLgx0rW", :text "*store", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "Hkj4X98xxRrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H12V7q8xeASW", :text "atom", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ry6EXcUleRBb", :text "nil", :by "root", :at 1500541010211} + } + } + } + } + "connect!" { + :type :expr, :id "SklUcYsZWG", :by "B1y7Rc-Zz", :at 1512319373663 + :data { + "T" {:type :leaf, :text "defn", :id "HkbI9FiZ-M", :by "B1y7Rc-Zz", :at 1512319373663} + "j" {:type :leaf, :text "connect!", :id "SJzLqFobWM", :by "B1y7Rc-Zz", :at 1512319373663} + "r" { + :type :expr, :id "Bkm8qFiWbM", :by "B1y7Rc-Zz", :at 1512319373663 + :data {} + } + "v" { + :type :expr, :id "H1lu9KsW-f", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hy3r798lg0Sb", :text "setup-socket!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S1aHmq8xeRr-", :text "*store", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "HkABX5IexArZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1y8Q5UxxCrW", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "Hke8Q58gxCS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1-8mcIel0SZ", :text ":url", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rJMUQ98lgArW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJ7ImcUxgCSb", :text "str", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SkV8XqLle0Bb", :text "|ws://localhost", :by "root", :at 1539101558616} + "v" {:type :leaf, :id "rkOI7qLxgASZ", :text "|:", :by "root", :at 1500541010211} + "x" { + :type :expr, :id "r1Y8Q9IgeABb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1cIQcUxlAHb", :text ":port", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SkjU79Igg0Sb", :text "config/site", :by "root", :at 1527788782518} + } + } + } + } + } + } + "r" { + :type :expr, :id "SJhLQcIlxCS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJTIQ9LeeAr-", :text ":on-close!", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "S1C8mcUgg0rZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1JP7cIex0rZ", :text "fn", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SygDm58xe0SZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyWv798egRSb", :text "event", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "SyGPQ9LexAB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJQw79UelCSW", :text "reset!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1VvXqLlgRrW", :text "*store", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "HyBwQc8xeCBW", :text "nil", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "S18vXqLlxArZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJvv7cLegCH-", :text ".error", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1uDXq8ggCS-", :text "js/console", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SkYP79LeeCB-", :text "|Lost connection!", :by "root", :at 1500541010211} + } + } + } + } + } + } + "v" { + :type :expr, :id "Byqvm9LlxAB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HksPm9IelRrZ", :text ":on-open!", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "B1nv7qUlxCB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rypPQq8glCrb", :text "fn", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "S1AD7q8ll0BZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJy_7cUll0rb", :text "event", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "S1ldQcIxe0Sb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1WdXcLlxABZ", :text "simulate-login!", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + } + } + } + } + "dispatch!" { + :type :expr, :id "ryUMQcUxeRrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJwzX98xlCSb", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HkdGQqIlxCrW", :text "dispatch!", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "BktMQc8xlRBb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sy5Gm5IllCS-", :text "op", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJiMmqLxl0rW", :text "op-data", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "rknMm9IlgRHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hk6zQq8xgRSW", :text "println", :by "B1y7Rc-Zz", :at 1512318353419} + "r" {:type :leaf, :id "r1JmQ98ex0rb", :text "|Dispatch", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "rkzXX9IxeArW", :text "op", :by "root", :at 1500541010211} + "x" {:type :leaf, :id "rkH775LgeCHb", :text "op-data", :by "root", :at 1500541010211} + } + } + "x" { + :type :expr, :id "HyVVcoZ-z", :by "B1y7Rc-Zz", :at 1512319531669 + :data { + "D" {:type :leaf, :text "case", :id "H1xV4qoZbG", :by "B1y7Rc-Zz", :at 1512319532853} + "L" {:type :leaf, :text "op", :id "Hk_Eqo-bM", :by "B1y7Rc-Zz", :at 1512319536359} + "T" { + :type :expr, :id "BkLQm9Uxe0BW", :by nil, :at 1500541010211 + :data { + "j" {:type :leaf, :id "r1oQQ5Ugx0BW", :text ":states", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "r1hX79UelArb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJaXX9LxgRBW", :text "reset!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Hy0m7cUxlCrZ", :text "*states", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "H1y4Xc8xxArW", :by nil, :at 1500541010211 + :data { + "T" { + :type :expr, :id "SJlEQcUlgAH-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1-E75IllABW", :text "mutate", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HyGV7cUxgAr-", :text "op-data", :by "root", :at 1500541010211} + } + } + "j" {:type :leaf, :id "rJ7EX98xgAHZ", :text "@*states", :by "root", :at 1500541010211} + } + } + } + } + } + } + "j" { + :type :expr, :id "ByEH9sZ-G", :by "B1y7Rc-Zz", :at 1512319547838 + :data { + "T" {:type :leaf, :text ":effect/connect", :id "ByEH9sZ-Gleaf", :by "B1y7Rc-Zz", :at 1512319553572} + "j" { + :type :expr, :id "SJhScsbbf", :by "B1y7Rc-Zz", :at 1512319556120 + :data { + "T" {:type :leaf, :text "connect!", :id "B1jBci-WG", :by "B1y7Rc-Zz", :at 1512319559727} + } + } + } + } + "r" { + :type :expr, :id "BJ4IciWbz", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJH4798geRSb", :text "send!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ryLE7qUgxArW", :text "op", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "B1P4758ggRHZ", :text "op-data", :by "root", :at 1500541010211} + } + } + } + } + } + } + "main!" { + :type :expr, :id "BJCEXcIglASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1krmcIglAHb", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r1gSXcLlgAHZ", :text "main!", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "r1ZBm58llAS-", :by nil, :at 1500541010211 + :data {} + } + "v" { + :type :expr, :id "BkGHm98glCSb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r17Smc8geAB-", :text "if", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S1VBX98leABW", :text "ssr?", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "BJrSQ98glABW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rk8r7cUexCSZ", :text "render-app!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJwBQ5LggRrb", :text "realize-ssr!", :by "root", :at 1500541010211} + } + } + } + } + "x" { + :type :expr, :id "HJdBX9IglRHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1tBm9LgeCBZ", :text "render-app!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S15B7qUllRHW", :text "render!", :by "root", :at 1500541010211} + } + } + "xD" { + :type :expr, :id "ryN9FobbM", :by "B1y7Rc-Zz", :at 1512319371768 + :data { + "T" {:type :leaf, :text "connect!", :id "HkeQ9KjZ-f", :by "B1y7Rc-Zz", :at 1512319373162} + } + } + "yT" { + :type :expr, :id "S1GOX5UxlCBb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJQ_79Uel0HW", :text "add-watch", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HyE_79IgeCHZ", :text "*store", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "BkBOQ58eeArZ", :text ":changes", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "rJ8uXcLlxABW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJDdmqLel0BW", :text "#()", :by "B1y7Rc-Zz", :at 1512319399628} + "r" {:type :leaf, :id "By5um58gg0BW", :text "render-app!", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "Syi_79UgxAHb", :text "render!", :by "root", :at 1500541010211} + } + } + } + } + "yj" { + :type :expr, :id "S12_Q98lxRS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BkadXcIxe0HW", :text "add-watch", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S1CuX5UglRr-", :text "*states", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "Bk1YXqIxe0HZ", :text ":changes", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "rkeK75Ule0SZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ry-t7qLxx0HW", :text "#()", :by "B1y7Rc-Zz", :at 1512319404859} + "r" {:type :leaf, :id "BkVtQ9LggCBW", :text "render-app!", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "B1BF7c8lxRH-", :text "render!", :by "root", :at 1500541010211} + } + } + } + } + "yn" { + :type :expr, :by "root", :at 1536947578833, :id "2Jpycaseb" + :data { + "T" {:type :leaf, :by "root", :at 1536947581722, :text ".addEventListener", :id "2Jpycasebleaf"} + "j" {:type :leaf, :by "root", :at 1536947584606, :text "js/window", :id "OdCXJ19iy"} + "r" {:type :leaf, :by "root", :at 1536947588650, :text "\"visibilitychange", :id "OHTk55nKgO"} + "v" { + :type :expr, :by "root", :at 1536947588916, :id "AsOb24JeAz" + :data { + "T" {:type :leaf, :by "root", :at 1536947589541, :text "fn", :id "Q4Pcg7i3Qq"} + "j" { + :type :expr, :by "root", :at 1536947589989, :id "J-vmsSU4IO" + :data {} + } + "r" { + :type :expr, :by "root", :at 1536947590488, :id "On2-yjpMmN" + :data { + "T" {:type :leaf, :by "root", :at 1536947596320, :text "when", :id "On2-yjpMmNleaf"} + "j" { + :type :expr, :by "root", :at 1536947596716, :id "0Jrs_iR8B" + :data { + "T" {:type :leaf, :by "root", :at 1536947597789, :text "and", :id "xu-WMOr1rd"} + "j" { + :type :expr, :by "root", :at 1536947597991, :id "snEB-_PdhR" + :data { + "T" {:type :leaf, :by "root", :at 1536947599176, :text "nil?", :id "EEcIeSSbLd"} + "j" {:type :leaf, :by "root", :at 1536947601429, :text "@*store", :id "0MV503olI"} + } + } + "r" { + :type :expr, :by "root", :at 1536947602418, :id "LLyNsuW5IO" + :data { + "T" {:type :leaf, :by "root", :at 1536947603622, :text "=", :id "LLyNsuW5IOleaf"} + "j" {:type :leaf, :by "root", :at 1536947605414, :text "\"visible", :id "SxTWvB0NVu"} + "r" {:type :leaf, :by "root", :at 1536947617350, :text "js/document.visibilityState", :id "tL3w1MpR1"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1536947619330, :id "mD4XoeBowW" + :data { + "T" {:type :leaf, :by "root", :at 1536947621911, :text "connect!", :id "mD4XoeBowWleaf"} + } + } + } + } + } + } + } + } + "yr" { + :type :expr, :id "rJ8FQc8xx0S-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ryvF75UgxCHW", :text "println", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJuKm5IglCSb", :text "|App started!", :by "root", :at 1500541010211} + } + } + } + } + "mount-target" { + :type :expr, :id "BkpTXqIleASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJAa7qIllRrW", :text "def", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BykCX9IlxCrZ", :text "mount-target", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "rJl0mcUxeRS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJbRmqLgeCHW", :text ".querySelector", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Byz0Q58leRrb", :text "js/document", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "BkmCm9LggCrW", :text "|.app", :by "root", :at 1500541010211} + } + } + } + } + "reload!" { + :type :expr, :id "BybpmqIeeCr-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Skz6mqLllAB-", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BkXp7qLxx0Sb", :text "reload!", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "HyN67qUllASZ", :by nil, :at 1500541010211 + :data {} + } + "v" { + :type :expr, :id "BkHTX9LglArb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJLTm5LllRH-", :text "clear-cache!", :by "root", :at 1500541010211} + } + } + "x" { + :type :expr, :id "BkPaX98gxAHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Byua7qIle0Sb", :text "render-app!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HyF67c8egRrZ", :text "render!", :by "root", :at 1500541010211} + } + } + "y" { + :type :expr, :id "Hyc6Q9Uel0Bb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkipXq8geAB-", :text "println", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Hyh679IegASZ", :text "|Code updated.", :by "root", :at 1500541010211} + } + } + } + } + "render-app!" { + :type :expr, :id "B1Eh7cIxeCrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJS3QqLglABb", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SyI3Q58elRrW", :text "render-app!", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "Byv2X98ggArZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ryOnXqIex0Bb", :text "renderer", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "SJK375UlxCHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkq3QqIglCHZ", :text "renderer", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Bysn79Igl0H-", :text "mount-target", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "By2n7qLeeAS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sy6nmc8el0rW", :text "comp-container", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJR2Q5UlxCBW", :text "@*states", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "Sy1p7c8ex0rZ", :text "@*store", :by "root", :at 1500541010211} + } + } + "v" {:type :leaf, :text "dispatch!", :id "r1gcsBi-ZG", :by "B1y7Rc-Zz", :at 1512318370491} + } + } + } + } + "simulate-login!" { + :type :expr, :id "r1eqQqIelRS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Bkb9QqLlgAHW", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJMqXcUelABW", :text "simulate-login!", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "r17qQ9UgeRB-", :by nil, :at 1500541010211 + :data {} + } + "v" { + :type :expr, :id "SJV9X5Lgl0SZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJB57c8xlRBZ", :text "let", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rkUcX9IglASZ", :by nil, :at 1500541010211 + :data { + "T" { + :type :expr, :id "SyD9Q98exCBZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJ_qXc8egAr-", :text "raw", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "ByKcQ5LelABb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r19qXqLxgArb", :text ".getItem", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Hkic7c8gxRHZ", :text "js/localStorage", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "ry25mcLxgCSZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BkpqQ9IxeArZ", :text ":storage-key", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "B1A9m98lxRH-", :text "config/site", :by "root", :at 1527788758366} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "SJkiXq8llAHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJlj75UgeArW", :text "if", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rkbimcUxlCHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJMs7qUgeAHb", :text "some?", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ByXsX5UleABb", :text "raw", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "SyNiX9IggAS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkroQcLexRSZ", :text "do", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rJLjQ98lxCHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rywiQ5UxeRrW", :text "println", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r1OiX5UleCSZ", :text "|Found storage.", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "HyYoX5IxeCHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Bycjm5LllCHW", :text "dispatch!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJjj798exRB-", :text ":user/log-in", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "HJ3jXqIxeCrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkaiQ58llRBZ", :text "read-string", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJAsX5Ill0BW", :text "raw", :by "root", :at 1500541010211} + } + } + } + } + } + } + "v" { + :type :expr, :id "S1kn798lgASZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJghQqIllCrW", :text "do", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "r1bhmc8xx0BZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyM279UlxCHZ", :text "println", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SkX2m9LexRBZ", :text "|Found no storage.", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + } + } + "ssr?" { + :type :expr, :id "HkpZX5IxeRHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1CZ7q8xgCB-", :text "def", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJyfQcLlgABZ", :text "ssr?", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "BkeGX58lx0SZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1WzX58glCSb", :text "some?", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "Skzz7qIlxArW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJ7G7cUleAHW", :text ".querySelector", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJ4zQ5IlxRS-", :text "js/document", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "BkBGQ5IlgRBZ", :text "|meta.respo-ssr", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + :proc { + :type :expr, :id "S1dWm9UggRBZ", :by nil, :at 1500541010211 + :data { + "T" { + :type :expr, :id "BJKZXqLexRSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sy5ZQ5LxlCSZ", :text "set!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rkiZXqIgxArZ", :text "js/window.onload", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "r12bm98gg0rW", :text "main!", :by "root", :at 1500541010211} + } + } + } + } + } + "app.comp.commander" { + :ns { + :type :expr, :by "root", :at 1539098935292, :id "3XWdVjl9fn" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "ns", :id "nM_y1CfuAV"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "app.comp.commander", :id "9Xc_-w--Pv"} + "r" { + :type :expr, :by "root", :at 1539098935292, :id "LZyt-jndfh" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":require", :id "WkqN-UG90L"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "B6QUl3xCNW" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "[]", :id "Ah1Xi8ANU6"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "hsl.core", :id "_nbqMH4-Yd"} + "r" {:type :leaf, :by "root", :at 1539098935292, :text ":refer", :id "AqLmCgZhC7"} + "v" { + :type :expr, :by "root", :at 1539098935292, :id "XeipWSGiHS" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "[]", :id "TC0RNhnpst"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "hsl", :id "b0Pe86RZFh"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "XMoqCK6AX_" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "[]", :id "FYNDJxftum"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "respo-ui.core", :id "vb-XB2Xyxk"} + "r" {:type :leaf, :by "root", :at 1539098935292, :text ":as", :id "Yf30xoyUeDO"} + "v" {:type :leaf, :by "root", :at 1539098935292, :text "ui", :id "g77kEB-90cb"} + } + } + "v" { + :type :expr, :by "root", :at 1539098935292, :id "HZCR1ygKiuO" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "[]", :id "YluCLnDfyoJ"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "respo-ui.colors", :id "VJH2qsEJDAA"} + "r" {:type :leaf, :by "root", :at 1539098935292, :text ":as", :id "zgqFezlH7pB"} + "v" {:type :leaf, :by "root", :at 1539098935292, :text "colors", :id "yvJ6cvAO8Qz"} + } + } + "x" { + :type :expr, :by "root", :at 1539098935292, :id "BB4FgM9ZyPf" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "[]", :id "QUNdYsCIWXL"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "respo.macros", :id "5joCRnU6GOm"} + "r" {:type :leaf, :by "root", :at 1539098935292, :text ":refer", :id "NM8IvVg05WI"} + "v" { + :type :expr, :by "root", :at 1539098935292, :id "KfQtSgAABlx" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "[]", :id "_XoEbyA4eqg"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "defcomp", :id "-ezpjILpo0v"} + "r" {:type :leaf, :by "root", :at 1539098935292, :text "mutation->", :id "yLLG9EnW4QG"} + "v" {:type :leaf, :by "root", :at 1539098935292, :text "action->", :id "xEaqq1i2Hcj"} + "x" {:type :leaf, :by "root", :at 1539098935292, :text "<>", :id "c-iJ5GNHAKv"} + "y" {:type :leaf, :by "root", :at 1539098935292, :text "span", :id "tTeE19322-Y"} + "yT" {:type :leaf, :by "root", :at 1539098935292, :text "div", :id "HnWBAHKsS3F"} + "yj" {:type :leaf, :by "root", :at 1539098935292, :text "input", :id "M5pZ0CKWlyi"} + "yr" {:type :leaf, :by "root", :at 1539098935292, :text "button", :id "VgPhvPSSEiO"} + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539098935292, :id "1S3LP-l3x6D" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "[]", :id "mSJkpHGOnRv"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "respo.comp.space", :id "7QeL5WXkSrZ"} + "r" {:type :leaf, :by "root", :at 1539098935292, :text ":refer", :id "3X_KyjJNMv5"} + "v" { + :type :expr, :by "root", :at 1539098935292, :id "51f_tAm0V1X" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "[]", :id "z_ucDvQNPYh"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "=<", :id "1DPkfsR4xOU"} + } + } + } + } + } + } + } + } + :defs { + "comp-commander" { + :type :expr, :by "root", :at 1539098935292, :id "YqhJQbrdCN2" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "defcomp", :id "Bb2IwniW98K"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "comp-commander", :id "v3870S3s-lZ"} + "r" { + :type :expr, :by "root", :at 1539098935292, :id "hTwrnsY9-4u" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "states", :id "gK6oXfwvs-Z"} + } + } + "v" { + :type :expr, :by "root", :at 1539098935292, :id "T76pNoiKrXK" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "let", :id "L5bumbMcC7p"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "0IT-_R4bN1k" + :data { + "T" { + :type :expr, :by "root", :at 1539098935292, :id "R5Asm4iHjE3" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "state", :id "YRhpK0rfvDv"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "OoKc6tPWcoy" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "or", :id "WYVlXUsoBIc"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "8c_zLq5NiG2" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":data", :id "jeXH5H_3nx5"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "states", :id "aHaAODEpazJ"} + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "aensJyJrh_w" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "{}", :id "RW02iDA04gj"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "xtLndrzXgIA" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":command", :id "7lX1a4Y4hro"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "|", :id "f70L9bqYFqc"} + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "zRVm-4pizx6" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":cwd", :id "3xR2FsTr7ox"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "|", :id "a9MOYquBTS7"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "1UbgpkSuxVG" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "div", :id "9a1ntaJPF5y"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "gBmn-EmjnlJ" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "{}", :id "FGkiOcKYav9"} + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "F1M6zCeILTZ" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "input", :id "VS6DBlakGZj"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "tEPtVLxgOhT" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "{}", :id "k4hJ8HG7PoY"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "vFOhEkTX0pF" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":value", :id "jC7z-_efxvJ"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "gaB-93kebl0" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":cwd", :id "qOynJPW3N2G"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "state", :id "xqzNQI16orR"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "xNP1sMpZuct" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":style", :id "9i_IG93aJ6G"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "r37GrpsSRSb" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "merge", :id "lXGvvGcMBSe"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "ui/input", :id "RHfNTB1np_i"} + "r" { + :type :expr, :by "root", :at 1539098935292, :id "0CdhnGHR6a7" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "{}", :id "YqbKyDvQBj7"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "xXm_NUJqe5W" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":width", :id "Ay8EDXbQCQK"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "160", :id "cL4enwpc5NN"} + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "sgAyahI2Cf1" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":font-family", :id "ZS7h1thL0KI"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "ui/font-code", :id "dFfdn_tkDQb"} + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539098935292, :id "XgNQrlG02wZ" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":placeholder", :id "6aafBl0OxiF"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "|cwd", :id "Ksp8bHlF8Sr"} + } + } + "x" { + :type :expr, :by "root", :at 1539098935292, :id "66sphWiCRvg" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":on-input", :id "P1-scI-54ie"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "ripHK-YjVWg" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "mutation->", :id "eCvQu6W5mF0"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "w-n5o35-oe-" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "assoc", :id "hNt8cRjri6B"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "state", :id "6SFGUYFvkKV"} + "r" {:type :leaf, :by "root", :at 1539098935292, :text ":cwd", :id "OenabUlExvs"} + "v" { + :type :expr, :by "root", :at 1539098935292, :id "zSJVXYOmF3r" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":value", :id "GHHwm_70Opk"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "%e", :id "8zsygpSG6V3"} + } + } + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539098935292, :id "cUE9nOx7WA6" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "=<", :id "0cr4sBfMwGc"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "8", :id "kWrUFsJBmMW"} + "r" {:type :leaf, :by "root", :at 1539098935292, :text "nil", :id "OF1LLYA5uz8"} + } + } + "x" { + :type :expr, :by "root", :at 1539098935292, :id "WwYyRUGzEvV" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "input", :id "Lin2NxGGZLx"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "kxc-jk57q1m" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "{}", :id "_78S08R6J3d"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "SveKH7HYbEG" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":value", :id "j_2KWwqJTDU"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "BLzjU6nAuLB" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":command", :id "HBrqvdtfDu_"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "state", :id "iKfy8nW69u7"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "5M3nYH1jMjD" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":style", :id "DlA82e7qGLp"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "8fnj_iwRX9C" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "merge", :id "-8aKDF-vqJ5"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "ui/input", :id "ZU3r3bEMO-W"} + "r" { + :type :expr, :by "root", :at 1539098935292, :id "-ZOtScuZgnY" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "{}", :id "dxnE-UNRSX8"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "lMEiQsdIyms" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":width", :id "rETNSzzTFjU"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "160", :id "9G25pZ_hJAS"} + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "b_k5h5uFPD4" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":font-family", :id "uFb8RVdTF5c"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "ui/font-code", :id "33m8PxxUJtn"} + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539098935292, :id "yG2m5PZk-AT" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":placeholder", :id "OLUKtD5ebEZ"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "|Command", :id "OYSVi4bSmIk"} + } + } + "x" { + :type :expr, :by "root", :at 1539098935292, :id "VePN3zShw3D" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":on-input", :id "V0BOaXHd_5U"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "BN8lYKRY1zS" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "mutation->", :id "fUKFVLqviIP"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "yW7YKCspc5r" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "assoc", :id "0vN9wOREk1t"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "state", :id "Wkkq5voPXk5"} + "r" {:type :leaf, :by "root", :at 1539098935292, :text ":command", :id "mAdFQCANSyd"} + "v" { + :type :expr, :by "root", :at 1539098935292, :id "Q9m3vZNYe5k" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":value", :id "UNf41amm6ui"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "%e", :id "rjW2yyr9X3i"} + } + } + } + } + } + } + } + } + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539098935292, :id "Zljr8KvEPML" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "=<", :id "U1n1lmQt7VV"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "8", :id "KvHi-E_CaXF"} + "r" {:type :leaf, :by "root", :at 1539098935292, :text "nil", :id "dkuW-tqbFg-"} + } + } + "yT" { + :type :expr, :by "root", :at 1539098935292, :id "O5c_iTP8C_i" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "button", :id "OCUtbpL-Hiu"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "EUaC6S5euIn" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "{}", :id "fwR79pz_inX"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "k4G_1G8L3rh" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":style", :id "arRa8AGVAcY"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "ui/button", :id "7PD-2pfVkBL"} + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "pismYEevtB_" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":on-click", :id "s5gY779OPPC"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "eiKMmox5E70" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "fn", :id "xauChgVl-TJ"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "aXTVIldjebu" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "e", :id "aUFAeAtRC_Y"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "d!", :id "b1ZkjZG-du7"} + "r" {:type :leaf, :by "root", :at 1539098935292, :text "m!", :id "Xm1nz2Z9puE"} + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "bChake8eD0Q" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "println", :id "mDu3q51i5h7"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "state", :id "SMaAyB009LG"} + } + } + "v" { + :type :expr, :by "root", :at 1539098935292, :id "sZe2CT4tOLe" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "d!", :id "XTLjHyrfGFr"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text ":effect/run", :id "bDGuhBcJRWc"} + "r" { + :type :expr, :by "root", :at 1539098935292, :id "SdxdLW9RuMa" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "{}", :id "ycs4BtcxKw2"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "C7FXfOCeXsR" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":command", :id "OEbJO0L8yQU"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "KNIXdQ3wdPL" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":command", :id "CGLlufcZ823"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "state", :id "MGsae-bEmBG"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "Z2QDru4mllp" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":cwd", :id "8CsnD22q2tm"} + "j" { + :type :expr, :by "root", :at 1539098935292, :id "6Z3B8MYUTXQ" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text ":cwd", :id "f4MCqAS45A4"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "state", :id "eSkQZMmxBJT"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539098935292, :id "-hLlDbuOfFm" + :data { + "T" {:type :leaf, :by "root", :at 1539098935292, :text "<>", :id "T7btNRo87_b"} + "j" {:type :leaf, :by "root", :at 1539098935292, :text "|Run", :id "X--tSpLJyPp"} + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539098935292, :id "Z90q-wbApNx" + :data {} + } + } + "app.comp.container" { + :ns { + :type :expr, :id "B15IxeRH-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJxc8xl0HZ", :text "ns", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SkZcLgxAB-", :text "app.comp.container", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "SkCq8lx0rb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyJlqLelRBW", :text ":require", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SylgqLee0B-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkZlcUgg0B-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1Gxq8xgCB-", :text "hsl.core", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SJQlcUlgRr-", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "By4lc8gxCB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkHx5LxeRS-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJIlq8leCBb", :text "hsl", :by "root", :at 1500541010211} + } + } + } + } + "r" { + :type :expr, :id "ryvl5IllRSb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1dg5UeeRSW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1Fgc8egCSW", :text "respo-ui.core", :by "root", :at 1516547378489} + "r" {:type :leaf, :id "Hy9x5IeeASW", :text ":as", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "rkoe5LxlCBW", :text "ui", :by "root", :at 1500541010211} + } + } + "x" { + :type :expr, :id "B1gpZxc3yG", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1B9Ueg0Sb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H189Igg0S-", :text "respo.macros", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "HJw9LexRS-", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "B1_98eeRSb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkKcLxeRHW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SkqqIggASZ", :text "defcomp", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SysqUxxRH-", :text "<>", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "Bkh9UglCrZ", :text "div", :by "root", :at 1500541010211} + "x" {:type :leaf, :id "BkaqLel0H-", :text "span", :by "root", :at 1500541010211} + "xT" {:type :leaf, :by "root", :at 1521951311501, :text "action->", :id "SJgBIzsVcf"} + "xj" {:type :leaf, :by "root", :at 1528132593470, :text "cursor->", :id "SJgdl4emlQ"} + "y" {:type :leaf, :text "button", :id "ryjGzeahb", :by "root", :at 1507815955483} + } + } + } + } + "y" { + :type :expr, :id "rJu-cIxlRSZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1FW9UegCSZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "By9-qLxlRHW", :text "respo.comp.inspect", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "S1oZq8gl0r-", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "rk2ZqUlx0SZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1T-5UggAB-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SJ0bqLggCH-", :text "comp-inspect", :by "root", :at 1500541010211} + } + } + } + } + "yD" { + :type :expr, :id "Sklr2Mg6n-", :by "root", :at 1507816109319 + :data { + "T" {:type :leaf, :text "[]", :id "Sklr2Mg6n-leaf", :by "root", :at 1507816109737} + "j" {:type :leaf, :text "respo.comp.space", :id "SkbLhMlp3b", :by "root", :at 1507816117447} + "r" {:type :leaf, :text ":refer", :id "H1GOhGephb", :by "root", :at 1507816112686} + "v" { + :type :expr, :id "rk-53Mlah-", :by "root", :at 1507816113982 + :data { + "T" {:type :leaf, :text "[]", :id "rk-Y2zgTnW", :by "root", :at 1507816114106} + "j" {:type :leaf, :text "=<", :id "SyN5nGgThZ", :by "root", :at 1507816114704} + } + } + } + } + "yT" { + :type :expr, :id "H1kGc8glRHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJlM5UxgRBb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "B1-f5UgeABb", :text "app.comp.navigation", :by "root", :at 1523120275079} + "r" {:type :leaf, :id "rkzM98gxRrZ", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "Bymz5LglArW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkEzcLxgAB-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rkBfcLggCBb", :text "comp-navigation", :by "root", :at 1523120276563} + } + } + } + } + "yj" { + :type :expr, :id "HJ8M5UeeCS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyvGq8leRHZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1_fq8geCHb", :text "app.comp.profile", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "ryFz9LglCHb", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "r1qfqUlxASb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SysM5LegCBW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H12z9LxxCHW", :text "comp-profile", :by "root", :at 1500541010211} + } + } + } + } + "yr" { + :type :expr, :id "Bypz9LxxRSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyAG9Uel0B-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Hkk7qUgxAr-", :text "app.comp.login", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SJg798xxAHW", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "HJ-m9Ueg0SW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1zm5IxxCrb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r1Qmq8gxCrW", :text "comp-login", :by "root", :at 1500541010211} + } + } + } + } + "yv" { + :type :expr, :id "SyE7qLleCHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJrm9LelAr-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HkIQ9Iel0Hb", :text "respo-message.comp.messages", :by "root", :at 1529230826824} + "r" {:type :leaf, :id "ryv7cIgeCrZ", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "Hk_7c8eg0rW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJY7cIlgRrW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJcQcUxxASW", :text "comp-messages", :by "root", :at 1529230829559} + } + } + } + } + "yx" { + :type :expr, :id "BklAlV7a2Z", :by "root", :at 1507828725931 + :data { + "T" {:type :leaf, :text "[]", :id "BklAlV7a2Zleaf", :by "root", :at 1507828726338} + "j" {:type :leaf, :text "app.comp.reel", :id "ry7AeNmT3b", :by "root", :at 1507828730719} + "r" {:type :leaf, :text ":refer", :id "H1bQW4762Z", :by "root", :at 1507828731528} + "v" { + :type :expr, :id "Sk-NbNmT3W", :by "root", :at 1507828731735 + :data { + "T" {:type :leaf, :text "[]", :id "r1e4ZN7a3b", :by "root", :at 1507828731987} + "j" {:type :leaf, :text "comp-reel", :id "Bk44ZNXT2Z", :by "root", :at 1507828733743} + } + } + } + } + "yy" { + :type :expr, :by "root", :at 1521911479054, :id "BygkTL-EqM" + :data { + "T" {:type :leaf, :by "root", :at 1521911480104, :text "[]", :id "BygkTL-EqMleaf"} + "j" {:type :leaf, :by "root", :at 1527789167264, :text "app.config", :id "SJMe6IZ45z"} + "r" {:type :leaf, :by "root", :at 1521911483589, :text ":refer", :id "B1GaI-V5M"} + "v" { + :type :expr, :by "root", :at 1521911483778, :id "BJb4T8ZNcM" + :data { + "T" {:type :leaf, :by "root", :at 1521911483935, :text "[]", :id "HJeEpLbVqz"} + "j" {:type :leaf, :by "root", :at 1521911485489, :text "dev?", :id "rJ4V6Lb49f"} + } + } + } + } + "yyj" { + :type :expr, :by "root", :at 1529230793085, :id "B1Z0rnQWm" + :data { + "T" {:type :leaf, :by "root", :at 1529230793389, :text "[]", :id "B1Z0rnQWmleaf"} + "j" {:type :leaf, :by "root", :at 1529230796079, :text "app.schema", :id "rJGbRHh7W7"} + "r" {:type :leaf, :by "root", :at 1529230796499, :text ":as", :id "r1ZEAH2m-m"} + "v" {:type :leaf, :by "root", :at 1529230797248, :text "schema", :id "ByBAH37Zm"} + } + } + "yyr" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564714854, :id "62fxkh4Uk4" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564716963, :text "[]", :id "62fxkh4Uk4leaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564718729, :text "app.config", :id "9xYrE_G3ic"} + "r" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564719687, :text ":as", :id "ccmXGZ69Z1"} + "v" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564721387, :text "config", :id "agsiaMgXOQ"} + } + } + "yyyyr" { + :type :expr, :by "root", :at 1539099004030, :id "y565h-pojJK" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "SG2MCRQ0P8l"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "app.comp.reel", :id "zyMyE2XddgP"} + "r" {:type :leaf, :by "root", :at 1539099004030, :text ":refer", :id "iCzJqHYLMK4"} + "v" { + :type :expr, :by "root", :at 1539099004030, :id "Sqt7W6DT5SY" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "QF7qZvdNGhE"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "comp-reel", :id "bAJTgEdv2wT"} + } + } + } + } + "yyyyv" { + :type :expr, :by "root", :at 1539099004030, :id "_sBYx9nrD4C" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "uTM4TBWtxX-"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "app.comp.missing", :id "Y3KwHqQfg9S"} + "r" {:type :leaf, :by "root", :at 1539099004030, :text ":refer", :id "ADdAK3jm53R"} + "v" { + :type :expr, :by "root", :at 1539099004030, :id "kpFKD6-tOJW" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "6jyQ97i3Gb7"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "comp-missing", :id "_EgUWbLI2Pd"} + } + } + } + } + "yyyyx" { + :type :expr, :by "root", :at 1539099004030, :id "ioB6yu6LLev" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "NuInZr9w0hU"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "app.comp.home", :id "G728eE-05YU"} + "r" {:type :leaf, :by "root", :at 1539099004030, :text ":refer", :id "EWn7xXeIOdy"} + "v" { + :type :expr, :by "root", :at 1539099004030, :id "THqJ0GQ0Y3f" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "dQHUCYNmWZz"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "comp-home", :id "62kKNqMwmZ3"} + } + } + } + } + "yyyyy" { + :type :expr, :by "root", :at 1539099004030, :id "OA7L7hrJ23o" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "qhUBstLON-k"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "app.comp.workflow", :id "31hYjKksbuQ"} + "r" {:type :leaf, :by "root", :at 1539099004030, :text ":refer", :id "xcmqTMFzTml"} + "v" { + :type :expr, :by "root", :at 1539099004030, :id "eQt3vbMbja_" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "cayN-4gZTeq"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "comp-workflow-container", :id "9_oHSpOGojJ"} + } + } + } + } + "yyyyyT" { + :type :expr, :by "root", :at 1539099004030, :id "PXSMZKg3jRZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "z1MmX90JT3r"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "app.comp.history", :id "R0DPRrrsr3F"} + "r" {:type :leaf, :by "root", :at 1539099004030, :text ":refer", :id "VWao6VI3j_Z"} + "v" { + :type :expr, :by "root", :at 1539099004030, :id "E2KvEP3jRi8" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "vx_V2XHv3Ax"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "comp-history", :id "CNuBOYomWZn"} + } + } + } + } + "yyyyyj" { + :type :expr, :by "root", :at 1539099004030, :id "5GIiYZS_79v" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "pDQ8VjF3YSt"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "app.comp.process-detail", :id "LMHhQtLL_20"} + "r" {:type :leaf, :by "root", :at 1539099004030, :text ":refer", :id "ycmf9sAO0LZ"} + "v" { + :type :expr, :by "root", :at 1539099004030, :id "l955hsvGvG-" + :data { + "T" {:type :leaf, :by "root", :at 1539099004030, :text "[]", :id "dJt3a396lkX"} + "j" {:type :leaf, :by "root", :at 1539099004030, :text "comp-process-detail", :id "wNs8paL9t2L"} + } + } + } + } + } + } + } + } + :defs { + "comp-container" { + :type :expr, :id "rJcN9Iee0Bb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ryo4cIlgAHZ", :text "defcomp", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1hV5IlxCH-", :text "comp-container", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "r1aE9IglCB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1CV9UxeCBb", :text "states", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SkyrqIglCr-", :text "store", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "HyxSq8llRHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ByZB58exAB-", :text "let", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rkzr9UggCHW", :by nil, :at 1500541010211 + :data { + "T" { + :type :expr, :id "HJmS5IllASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJVBcUxx0Bb", :text "state", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "ByrH5IggAHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1LScUglRSW", :text ":data", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SJvHc8eeAB-", :text "states", :by "root", :at 1500541010211} + } + } + } + } + "j" { + :type :expr, :id "ryuSqIllABW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkYrq8lgCHb", :text "session", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BycSqLllCSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hksr5IxlCSZ", :text ":session", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SJhS5UxeRBb", :text "store", :by "root", :at 1500541010211} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1525106928554, :id "HyYgtpEaG" + :data { + "T" {:type :leaf, :by "root", :at 1525106929232, :text "router", :id "HyYgtpEaGleaf"} + "j" { + :type :expr, :by "root", :at 1525106929915, :id "Skg5etaNTM" + :data { + "T" {:type :leaf, :by "root", :at 1525106930860, :text ":router", :id "HyLFeYpEaG"} + "j" {:type :leaf, :by "root", :at 1525106931558, :text "store", :id "HkNigK646z"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1525106933346, :id "Sye6lY64aM" + :data { + "T" {:type :leaf, :by "root", :at 1525106935393, :text "router-data", :id "Sye6lY64aMleaf"} + "j" { + :type :expr, :by "root", :at 1525106935675, :id "H1eWtaNTz" + :data { + "T" {:type :leaf, :by "root", :at 1525106936827, :text ":data", :id "r1u1WKTNTz"} + "j" {:type :leaf, :by "root", :at 1525106937665, :text "router", :id "SkMW-tpE6M"} + } + } + } + } + } + } + "r" { + :type :expr, :id "ByaHq8gxCSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S10HqUelASb", :text "if", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rJJIc8gg0BZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ryeLc8egCS-", :text "nil?", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r1-LcUggCrZ", :text "store", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :by "root", :at 1521951403873, :id "rJE2zoVqz" + :data { + "T" {:type :leaf, :by "root", :at 1521951417580, :text "comp-offline", :id "HyYZehIDnvM"} + } + } + "v" { + :type :expr, :id "BJGP9LlxRB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1mvc8lgRH-", :text "div", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "r1VPqLxxRrb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJHD5UxeCHZ", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "B1Uwq8gxArb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkwD58ggCr-", :text ":style", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rkdw5Lgg0rW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SktwcIxlCS-", :text "merge", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Hk9PqUlg0Bb", :text "ui/global", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "HkjD9Lel0B-", :text "ui/fullscreen", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "SJ3vcUegASZ", :text "ui/column", :by "root", :at 1500541010211} + } + } + } + } + } + } + "r" { + :type :expr, :id "r1pw9LelCr-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyAvc8lgCB-", :text "comp-navigation", :by "root", :at 1523120265747} + "j" { + :type :expr, :id "rkyu9UglRHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkedq8xxAB-", :text ":logged-in?", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJ-_cLge0SW", :text "store", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :by "root", :at 1523120353961, :id "BkW5yKdLjM" + :data { + "T" {:type :leaf, :by "root", :at 1523120357277, :text ":count", :id "SJx9JF_Ljz"} + "j" {:type :leaf, :by "root", :at 1523120358953, :text "store", :id "rkf6kYOIiM"} + } + } + } + } + "v" { + :type :expr, :id "rkXYc8ll0SW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJVYcUxlRrZ", :text "if", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "S1rK5UggABZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkUtqUxg0HZ", :text ":logged-in?", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r1Dtq8lxArb", :text "store", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :by "root", :at 1539098971823, :id "p-eudM8pv6" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text "let", :id "ck50WTMd_e"} + "j" { + :type :expr, :by "root", :at 1539098971823, :id "1JzYEUI4jt" + :data { + "T" { + :type :expr, :by "root", :at 1539098971823, :id "L0x8qGV_8L" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text "router", :id "vxocffyE7K"} + "j" { + :type :expr, :by "root", :at 1539098971823, :id "9qwDXHvjk7" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text ":router", :id "F259LFuke_"} + "j" {:type :leaf, :by "root", :at 1539098971823, :text "store", :id "O8ZSWi3yzA"} + } + } + } + } + "j" { + :type :expr, :by "root", :at 1539098971823, :id "BIK2-uYrkj" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text "router-data", :id "otQPTRNXuH"} + "j" { + :type :expr, :by "root", :at 1539098971823, :id "mupHp3k8lj" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text ":data", :id "nnypP52F0I"} + "j" {:type :leaf, :by "root", :at 1539098971823, :text "router", :id "ZANzOqjR2X"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539098971823, :id "PMnCSdFemJ" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text "case", :id "hynIEpgNa5"} + "j" { + :type :expr, :by "root", :at 1539098971823, :id "M33jIM9flqt" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text ":name", :id "ppUYZi59MKB"} + "j" {:type :leaf, :by "root", :at 1539098971823, :text "router", :id "1D4o5FlcXcO"} + } + } + "r" { + :type :expr, :by "root", :at 1539098971823, :id "AaWwdvpr9Nv" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text ":profile", :id "JWITF97IZUm"} + "j" { + :type :expr, :by "root", :at 1539098971823, :id "6O--Jxegz-1" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text "comp-profile", :id "gGOSCnaWfPn"} + "j" { + :type :expr, :by "root", :at 1539098971823, :id "zd4hr-K3ZI3" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text ":user", :id "2Sm2-4yDLrI"} + "j" {:type :leaf, :by "root", :at 1539098971823, :text "store", :id "XyAng5Fzqpq"} + } + } + "r" {:type :leaf, :by "root", :at 1539099405218, :text "router-data", :id "YKU69oO0qq"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539098971823, :id "eMBTiNAHBuZ" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text ":home", :id "EezNWIdr1e1"} + "j" { + :type :expr, :by "root", :at 1539098971823, :id "eSza53B1CvW" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text "comp-home", :id "6zKW-gWdaox"} + "j" {:type :leaf, :by "root", :at 1539098971823, :text "router-data", :id "WJkOgXTXOb9"} + "r" {:type :leaf, :by "root", :at 1539098971823, :text "states", :id "MFPsoNkMgD_"} + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539098971823, :id "dtYMxC9wOSU" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text ":workflows", :id "42Yrj08jWPp"} + "j" { + :type :expr, :by "root", :at 1539098971823, :id "Ncfcij4cAaw" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text "cursor->", :id "FyWfDvNVdV-"} + "j" {:type :leaf, :by "root", :at 1539098971823, :text ":workflows", :id "dBxgqhwZzVE"} + "r" {:type :leaf, :by "root", :at 1539098971823, :text "comp-workflow-container", :id "m_kM7Yvo9Z2"} + "v" {:type :leaf, :by "root", :at 1539098971823, :text "states", :id "F8i4H7_7jGB"} + "x" { + :type :expr, :by "root", :at 1539098971823, :id "miAAdyY6RhK" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text ":workflows", :id "oCd4Vupr-VF"} + "j" {:type :leaf, :by "root", :at 1539098971823, :text "router-data", :id "jfmP-m9fxGI"} + } + } + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539098971823, :id "naQEwYYlvPO" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text ":history", :id "Q60i1lfshKx"} + "j" { + :type :expr, :by "root", :at 1539098971823, :id "Ohk_ZGio1lk" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text "comp-history", :id "znObUMRNvif"} + "j" { + :type :expr, :by "root", :at 1539098971823, :id "W70NE7d-xVI" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text ":histories", :id "eavVMjucAHO"} + "j" {:type :leaf, :by "root", :at 1539098971823, :text "router-data", :id "6K0N5Z7ZomK"} + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539098971823, :id "UV1Xs2gQxQ4" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text ":process", :id "7125fMuy8TF"} + "j" { + :type :expr, :by "root", :at 1539098971823, :id "4E7DAy1vFi5" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text "comp-process-detail", :id "57PM9FcP5CG"} + "j" {:type :leaf, :by "root", :at 1539098971823, :text "router-data", :id "BwV37RDCoM0"} + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1539098971823, :id "VMI50o7IEDr" + :data { + "T" {:type :leaf, :by "root", :at 1539098971823, :text "comp-missing", :id "vMJFYIFPmyb"} + "j" {:type :leaf, :by "root", :at 1539098971823, :text "router", :id "_0w2PRPRFN_"} + } + } + } + } + } + } + "v" { + :type :expr, :id "BkciqUxgRrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BysicIxgAHW", :text "comp-login", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rkhocIleRrb", :text "states", :by "root", :at 1500541010211} + } + } + } + } + "w" { + :type :expr, :by "root", :at 1524279203814, :id "S1hsPmOnM" + :data { + "T" {:type :leaf, :by "root", :at 1524279211924, :text "comp-status-color", :id "S1hsPmOnMleaf"} + "j" { + :type :expr, :by "root", :at 1524279213788, :id "Bk83D7Ohf" + :data { + "T" {:type :leaf, :by "root", :at 1524279214588, :text ":color", :id "H1BhwXu3M"} + "j" {:type :leaf, :by "root", :at 1524279215366, :text "store", :id "SyevnPQ_nf"} + } + } + } + } + "x" { + :type :expr, :by "root", :at 1521911488967, :id "B1gKaUWV5M" + :data { + "D" {:type :leaf, :by "root", :at 1521911509225, :text "when", :id "Sk-tpU-Vcf"} + "L" {:type :leaf, :by "root", :at 1521911495407, :text "dev?", :id "H1xk08W4cG"} + "T" { + :type :expr, :id "S16oqUeeASb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkAi58lx0S-", :text "comp-inspect", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJkhq8gxRrb", :text "|Store", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "Skln58ge0rb", :text "store", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "r1fqzo4cM", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyeT5UllASZ", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SJZ6qUleRS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ryfp9IxgABW", :text ":bottom", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Skma9UglRr-", :text "0", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "r1V65Ixl0HW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkBp9LllArb", :text ":left", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ryIpcIggCrb", :text "0", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "SJv6q8xeAH-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJ_acUlgCrZ", :text ":max-width", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BkYpc8ee0B-", :text "|100%", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + "y" { + :type :expr, :id "H1G3c8ll0S-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkQnqIex0Sb", :text "comp-messages", :by "root", :at 1529230769433} + "j" { + :type :expr, :id "Bk429LxgCS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1B2cLgxCHZ", :text "get-in", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ryInqUelCHb", :text "store", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "SJw25Uge0BW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJd398el0rZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "B1Yn98xlRrZ", :text ":session", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SJqh5UlgRB-", :text ":messages", :by "root", :at 1529230765972} + } + } + } + } + "n" { + :type :expr, :by "root", :at 1529230771518, :id "H122BnXW7" + :data { + "T" {:type :leaf, :by "root", :at 1529230771976, :text "{}", :id "H122BnXW7leaf"} + } + } + "p" { + :type :expr, :by "root", :at 1529230772453, :id "H1m2hB2Q-Q" + :data { + "T" {:type :leaf, :by "root", :at 1529230773090, :text "fn", :id "H1m2hB2Q-Qleaf"} + "j" { + :type :expr, :by "root", :at 1529230773925, :id "H1gA2B3mWQ" + :data { + "T" {:type :leaf, :by "root", :at 1529230775135, :text "info", :id "Sk0hr3X-Q"} + "j" {:type :leaf, :by "root", :at 1529230778336, :text "d!", :id "Bybgar2m-m"} + "r" {:type :leaf, :by "root", :at 1529230780010, :text "m!", :id "BJmaSh7ZQ"} + } + } + "r" { + :type :expr, :by "root", :at 1529230780551, :id "HyraS3Q-m" + :data { + "T" {:type :leaf, :by "root", :at 1529230781631, :text "d!", :id "HyraS3Q-mleaf"} + "j" {:type :leaf, :by "root", :at 1529231458145, :text ":session/remove-message", :id "SygIaH3Xb7"} + "r" {:type :leaf, :by "root", :at 1529230813335, :text "info", :id "r1eSJU2XZm"} + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1521911502552, :id "rkvCI-NcM" + :data { + "D" {:type :leaf, :by "root", :at 1521911507241, :text "when", :id "rkgPCLW49z"} + "L" {:type :leaf, :by "root", :at 1521911504664, :text "dev?", :id "S1-_CLWN5M"} + "T" { + :type :expr, :id "BJgRkVX62W", :by "root", :at 1507828710405 + :data { + "T" {:type :leaf, :text "comp-reel", :id "BJgRkVX62Wleaf", :by "root", :at 1507828712159} + "j" { + :type :expr, :id "HylruBmT3-", :by "root", :at 1507829101137 + :data { + "T" {:type :leaf, :text ":reel-length", :id "HyBgV7T2Z", :by "root", :at 1507830262253} + "j" {:type :leaf, :text "store", :id "S1MvOr7a2Z", :by "root", :at 1507829104010} + } + } + "r" { + :type :expr, :id "ByteVmTnZ", :by "root", :at 1507828721052 + :data { + "T" {:type :leaf, :text "{}", :id "ByxdeN7anb", :by "root", :at 1507828722268} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "comp-offline" { + :type :expr, :by "root", :at 1519314599832, :id "rJlxhID3DM" + :data { + "T" {:type :leaf, :by "root", :at 1521951399872, :text "defcomp", :id "HkWenLP2vM"} + "j" {:type :leaf, :by "root", :at 1519314599832, :text "comp-offline", :id "BJGx2Iv2Pz"} + "n" { + :type :expr, :by "root", :at 1521951400852, :id "r1lZnMsV9z" + :data {} + } + "r" { + :type :expr, :by "root", :at 1519314599832, :id "rkQx2Lv3vz" + :data { + "T" {:type :leaf, :by "root", :at 1519314599832, :text "div", :id "S14ghIw3Pf"} + "j" { + :type :expr, :by "root", :at 1519314599832, :id "H1Sx2Lw3PM" + :data { + "T" {:type :leaf, :by "root", :at 1519314599832, :text "{}", :id "ByIghIvhwG"} + "j" { + :type :expr, :by "root", :at 1519314599832, :id "rkDg2ID3DM" + :data { + "T" {:type :leaf, :by "root", :at 1519314599832, :text ":style", :id "HJueh8whDf"} + "j" { + :type :expr, :by "root", :at 1519314599832, :id "B1FenUDnPM" + :data { + "T" {:type :leaf, :by "root", :at 1519314599832, :text "merge", :id "SJcxhUvnvG"} + "j" {:type :leaf, :by "root", :at 1519314599832, :text "ui/global", :id "SJogn8whDG"} + "r" {:type :leaf, :by "root", :at 1519314599832, :text "ui/fullscreen", :id "Syhe3IwnDf"} + "v" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564672966, :text "ui/column-dispersive", :id "S1penIvhwM"} + "x" { + :type :expr, :by "B1y7Rc-Zz", :at 1535565529682, :id "-AFvTS2Xw" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565530129, :text "{}", :id "nUIE3znKRk"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1535565530397, :id "LAxp5ou8Oi" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565536637, :text ":background-color", :id "ZIQEbqIdeF"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1535565541430, :id "D9GGMXGBjd" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565542473, :text ":theme", :id "MkdHaM_v7_"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565546181, :text "config/site", :id "r7am1TeON"} + } + } + } + } + } + } + } + } + } + } + } + } + "l" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564983624, :id "z2rRVtYOQ" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565362594, :text "div", :id "z2rRVtYOQleaf"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564984947, :id "fp9nHzVG-C" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564985316, :text "{}", :id "-pfcoBbYO"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564985627, :id "PL7HRl9o2" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564987644, :text ":style", :id "_5OHbZKdQt"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1535565371727, :id "qlVM4N8m7_" + :data { + "D" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565373172, :text "{}", :id "0cX3axzT-0"} + "T" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564988232, :id "tbKi9HZ-m3" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564988883, :text ":height", :id "_jrfZ1j22p"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565472380, :text "0", :id "oNrq_1c5jP"} + } + } + } + } + } + } + } + } + } + } + "n" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564675845, :id "Fr2RBAP3W" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564681122, :text "div", :id "Fr2RBAP3Wleaf"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564681371, :id "QCgP6c48Rw" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564681741, :text "{}", :id "bxXTMaSmzT"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564681981, :id "T3goXWla86" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564682940, :text ":style", :id "CXGFQrJdrI"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564683257, :id "2Evw3L3U1J" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564683549, :text "{}", :id "tzLQL21KFG"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564683815, :id "dVh-zN_TPb" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564692026, :text ":background-image", :id "dAStA0OYDH"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564692507, :id "_Q8bCAx9n7" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564693703, :text "str", :id "VzZwtZoO6O"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564698133, :text "\"url(", :id "tJv55qj8Zk"} + "n" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564699933, :id "nsZZQVVLv" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564708041, :text ":icon", :id "4lGaBpyWK2"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564775736, :text "config/site", :id "sGz47mkdM"} + } + } + "r" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564696349, :text "\")", :id "6N8V6yQKRt"} + } + } + } + } + "r" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564726919, :id "5egZ0bR0I" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564728738, :text ":width", :id "5egZ0bR0Ileaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565090611, :text "128", :id "ef8YU_bZh"} + } + } + "v" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564733832, :id "K_yxszCR3z" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564736588, :text ":height", :id "K_yxszCR3zleaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565093711, :text "128", :id "c5KZ_3dEVg"} + } + } + "x" { + :type :expr, :by "B1y7Rc-Zz", :at 1535564741439, :id "zidWccE-tZ" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564745512, :text ":background-size", :id "zidWccE-tZleaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564749164, :text ":contain", :id "XvrhwspwQ"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1519314599832, :id "HyRx3IDnPM" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565436682, :text "div", :id "SJkll2LP2wM"} + "j" { + :type :expr, :by "root", :at 1519314599832, :id "BJgex3Lw3Pf" + :data { + "T" {:type :leaf, :by "root", :at 1519314599832, :text "{}", :id "HkbeenIw3wf"} + "j" { + :type :expr, :by "root", :at 1519314599832, :id "Syfgx28wnPf" + :data { + "T" {:type :leaf, :by "root", :at 1519314599832, :text ":style", :id "Symgxn8v2vG"} + "j" { + :type :expr, :by "root", :at 1519314599832, :id "rkVlg3LDnDG" + :data { + "T" {:type :leaf, :by "root", :at 1519314599832, :text "{}", :id "SkHxlhUv2vz"} + "j" { + :type :expr, :by "root", :at 1519314599832, :id "H1Lgg3UwhPz" + :data { + "T" {:type :leaf, :by "root", :at 1519314599832, :text ":cursor", :id "S1Pee2UD3wz"} + "j" {:type :leaf, :by "root", :at 1519314599832, :text ":pointer", :id "HyOgl2IvnPM"} + } + } + "r" { + :type :expr, :by "B1y7Rc-Zz", :at 1535565239666, :id "lWtf3D3AoP" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565243041, :text ":line-height", :id "O56zdbQMDleaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565498969, :text "\"32px", :id "3uSFrdhbOK"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1519314599832, :id "SkKle2LPnvf" + :data { + "T" {:type :leaf, :by "root", :at 1519314599832, :text ":on-click", :id "Hy9xl28D2PG"} + "j" { + :type :expr, :by "root", :at 1519314599832, :id "S1mufs49z" + :data { + "T" {:type :leaf, :by "root", :at 1521951336498, :text "action->", :id "r1GZl2Lw2wG"} + "j" {:type :leaf, :by "root", :at 1519314599832, :text ":effect/connect", :id "rkmZln8v2wG"} + "r" {:type :leaf, :by "root", :at 1519314599832, :text "nil", :id "HJNWe28w3wG"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1519314599832, :id "r1r-lhLPnvf" + :data { + "T" {:type :leaf, :by "root", :at 1519314599832, :text "<>", :id "r1Ube2LP2PM"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1535564856884, :text "|No connection...", :id "r1DWxhIP3wG"} + "r" { + :type :expr, :id "ryuSziE9f", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkxN5IggCSZ", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BkZ4qUxgABZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ByzE9Lxe0BW", :text ":font-family", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Skm4cUlgRrZ", :text "ui/font-fancy", :by "B1y7Rc-Zz", :at 1535565688657} + } + } + "v" { + :type :expr, :id "ByvVqIxlCBW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkuNcLlxRrW", :text ":font-size", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SJYNcUxxASZ", :text "24", :by "B1y7Rc-Zz", :at 1535565156897} + } + } + } + } + } + } + } + } + } + } + } + } + "comp-status-color" { + :type :expr, :by "root", :at 1524279216692, :id "Sket2DQd3f" + :data { + "T" {:type :leaf, :by "root", :at 1524279218316, :text "defcomp", :id "S1ZK3DXd3G"} + "j" {:type :leaf, :by "root", :at 1524279216692, :text "comp-status-color", :id "SkzYhwm_3f"} + "r" { + :type :expr, :by "root", :at 1524279216692, :id "SkmYnwXdnM" + :data { + "T" {:type :leaf, :by "root", :at 1524279220380, :text "color", :id "HkWi3Dmd2G"} + } + } + "v" { + :type :expr, :by "root", :at 1524279221052, :id "rJgTnPmu2G" + :data { + "T" {:type :leaf, :by "root", :at 1524279221503, :text "div", :id "rJgTnPmu2Gleaf"} + "j" { + :type :expr, :by "root", :at 1524279221753, :id "rJlA3DXOhf" + :data { + "T" {:type :leaf, :by "root", :at 1524279222145, :text "{}", :id "ByA3Dm_2f"} + "j" { + :type :expr, :by "root", :at 1524279222434, :id "r1ER2vQ_3G" + :data { + "T" {:type :leaf, :by "root", :at 1524279223333, :text ":style", :id "BJmAnP7_nz"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1533835122554, :id "02sFGkmU4" + :data { + "D" {:type :leaf, :by "B1y7Rc-Zz", :at 1533835132715, :text "let", :id "gdqZhoJ9D"} + "L" { + :type :expr, :by "B1y7Rc-Zz", :at 1533835132973, :id "UKFzdk9D7f" + :data { + "T" { + :type :expr, :by "B1y7Rc-Zz", :at 1533835133406, :id "-QOGS9FksS" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1533835134066, :text "size", :id "VZJGRva7JQ"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1533835156000, :text "24", :id "dH663gATGE"} + } + } + } + } + "T" { + :type :expr, :by "root", :at 1524279223555, :id "SyeTD7dnz" + :data { + "T" {:type :leaf, :by "root", :at 1524279223903, :text "{}", :id "H1S1TD7_2z"} + "j" { + :type :expr, :by "root", :at 1524279224175, :id "r1XlTDX_nf" + :data { + "T" {:type :leaf, :by "root", :at 1524279228958, :text ":width", :id "BJMlTDQu3z"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1533835137743, :text "size", :id "HJIpvXuhG"} + } + } + "r" { + :type :expr, :by "root", :at 1524279231457, :id "rJfDavmu3G" + :data { + "T" {:type :leaf, :by "root", :at 1524279232432, :text ":height", :id "rJfDavmu3Gleaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1533835138984, :text "size", :id "ByLuavmu3M"} + } + } + "v" { + :type :expr, :by "root", :at 1524279233724, :id "SycaPQO2f" + :data { + "D" {:type :leaf, :by "root", :at 1524279242067, :text ":position", :id "rJxCP7d2f"} + "T" {:type :leaf, :by "root", :at 1524279236076, :text ":absolute", :id "SycaPQO2fleaf"} + } + } + "x" { + :type :expr, :by "root", :at 1524279242693, :id "B1QAPmuhG" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1533835259111, :text ":bottom", :id "B1QAPmuhGleaf"} + "j" {:type :leaf, :by "root", :at 1524279295251, :text "60", :id "HyN0DXu3G"} + } + } + "y" { + :type :expr, :by "root", :at 1524279244626, :id "SyxSAwm_2z" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1533835114388, :text ":left", :id "SyxSAwm_2zleaf"} + "j" {:type :leaf, :by "root", :at 1524279252706, :text "8", :id "r1aCw7d2f"} + } + } + "yT" { + :type :expr, :by "root", :at 1524279259074, :id "S1eXJd7_3G" + :data { + "T" {:type :leaf, :by "root", :at 1524279265891, :text ":background-color", :id "S1eXJd7_3Gleaf"} + "j" {:type :leaf, :by "root", :at 1524279319762, :text "color", :id "S1WkQuQuhz"} + } + } + "yj" { + :type :expr, :by "root", :at 1524279300007, :id "B1e3Z_Xd2M" + :data { + "T" {:type :leaf, :by "root", :at 1524279306393, :text ":border-radius", :id "B1e3Z_Xd2Mleaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1533835148624, :text "\"50%", :id "Hy7f_md3z"} + } + } + "yr" { + :type :expr, :by "root", :at 1524279322054, :id "BkxzQO7_3G" + :data { + "T" {:type :leaf, :by "root", :at 1524279323711, :text ":opacity", :id "BkxzQO7_3Gleaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1533835161153, :text "0.6", :id "B1-VXdQ_3G"} + } + } + "yv" { + :type :expr, :by "B1y7Rc-Zz", :at 1533835167955, :id "VRmHRcaoLv" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1533835177358, :text ":pointer-events", :id "VRmHRcaoLvleaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1533835178211, :text ":none", :id "9jBAmSdCfv"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "style-body" { + :type :expr, :id "ry965UlxRH-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkoaq8ge0BW", :text "def", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Sk2p9UxgRBW", :text "style-body", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "BJ66q8egCSZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1ApqUxg0B-", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SJJR9Ueg0HZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sye0cIle0B-", :text ":padding", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rkWR58eeCHZ", :text "|8px 16px", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + :proc { + :type :expr, :id "S1om9LgxCBZ", :by nil, :at 1500541010211 + :data {} + } + } + "app.comp.dialog" { + :ns { + :type :expr, :by "root", :at 1539099056048, :id "kemZwNpb2h" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "ns", :id "ugq1zWzrhm"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "app.comp.dialog", :id "WLbtQqCagq"} + "r" { + :type :expr, :by "root", :at 1539099056048, :id "m7yb9Wu8by" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":require", :id "9ecc6Ig6A6"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "J2BaHXiZN3" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "[]", :id "rCsGK6xH1s"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "hsl.core", :id "lYR8uHQYid"} + "r" {:type :leaf, :by "root", :at 1539099056048, :text ":refer", :id "BA1imWehbS"} + "v" { + :type :expr, :by "root", :at 1539099056048, :id "VbEnPf0hcD" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "[]", :id "HR-GvlO0Su"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "hsl", :id "5mmtIM7EBm"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099056048, :id "tj7jybdNNA" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "[]", :id "7Xa91FuOP6"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "respo-ui.core", :id "9ffGaI1AIk"} + "r" {:type :leaf, :by "root", :at 1539099056048, :text ":as", :id "l3VvN8VGGJA"} + "v" {:type :leaf, :by "root", :at 1539099056048, :text "ui", :id "7QxWLwd41p3"} + } + } + "v" { + :type :expr, :by "root", :at 1539099056048, :id "9uQHcg8XJtS" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "[]", :id "YuG8CGvPU-R"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "respo-ui.colors", :id "l7BxHJ-tXmk"} + "r" {:type :leaf, :by "root", :at 1539099056048, :text ":as", :id "U_ERvnoDHom"} + "v" {:type :leaf, :by "root", :at 1539099056048, :text "colors", :id "1ekvfFxhLPN"} + } + } + "x" { + :type :expr, :by "root", :at 1539099056048, :id "0OsuvMVgYrJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "[]", :id "n9j8k1P34X8"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "respo.macros", :id "kZiX69_kHcc"} + "r" {:type :leaf, :by "root", :at 1539099056048, :text ":refer", :id "yzGbdarw_o4"} + "v" { + :type :expr, :by "root", :at 1539099056048, :id "cpc-7bFSs9u" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "[]", :id "sR-hAcnS7Lg"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "defcomp", :id "asbv7WWxdu7"} + "r" {:type :leaf, :by "root", :at 1539099056048, :text "<>", :id "ksgBs1VA7a-"} + "v" {:type :leaf, :by "root", :at 1539099056048, :text "action->", :id "3-P8Q-2iEOi"} + "x" {:type :leaf, :by "root", :at 1539099056048, :text "span", :id "a335DiIVlzE"} + "y" {:type :leaf, :by "root", :at 1539099056048, :text "div", :id "of8LDx8GGOY"} + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099056048, :id "pr7rRL89yot" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "[]", :id "4f-BnayRFLN"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "respo.comp.space", :id "XvM4q7JehJ9"} + "r" {:type :leaf, :by "root", :at 1539099056048, :text ":refer", :id "9DCUACyzbDY"} + "v" { + :type :expr, :by "root", :at 1539099056048, :id "uUphjy8jbS_" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "[]", :id "oa02ZHUi8Uo"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "=<", :id "yMQSBeeH3Qo"} + } + } + } + } + } + } + } + } + :defs { + "comp-dialog" { + :type :expr, :by "root", :at 1539099056048, :id "HYKIUO2C3Md" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "defcomp", :id "53YfRlWW6eC"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "comp-dialog", :id "9E0BupZi1qL"} + "r" { + :type :expr, :by "root", :at 1539099056048, :id "ID4ieY636y9" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "on-close!", :id "hkcASTiza1C"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "child-node", :id "-_0w52GQC4_"} + } + } + "v" { + :type :expr, :by "root", :at 1539099056048, :id "eVnE8civdaW" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "div", :id "8XTyC3jSzZU"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "YHXOxDkmQqF" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "{}", :id "u_k2qH4l08i"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "Lj6O8Cv1rS2" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":style", :id "PCmkMD60Mnp"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "FgvJ0Cq86vN" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "merge", :id "lYUf53RM-C7"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "ui/fullscreen", :id "J1DvEAAbs9K"} + "r" {:type :leaf, :by "root", :at 1539099056048, :text "ui/center", :id "8dOl21II_Ss"} + "v" { + :type :expr, :by "root", :at 1539099056048, :id "Gkbd_CAI8au" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "{}", :id "EMwOP2Ckp5K"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "T1r5ifeR8gX" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":position", :id "Qc4urVQP9Lr"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text ":absolute", :id "RzX5t_gntnr"} + } + } + "r" { + :type :expr, :by "root", :at 1539099056048, :id "WseGdIX4bkG" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":width", :id "xCPbDq--oiU"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "|100%", :id "CToy9c9HW_W"} + } + } + "v" { + :type :expr, :by "root", :at 1539099056048, :id "zcS1rKSAO3p" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":height", :id "os7kH0BPsvm"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "|100%", :id "novqhgBcBl4"} + } + } + "x" { + :type :expr, :by "root", :at 1539099056048, :id "0Npf-Uz05nT" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":background-color", :id "L2tQpWfQUr2"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "5RDt6NvFZFd" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "hsl", :id "o8JL65x9xV4"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "0", :id "EOgIYiac1ym"} + "r" {:type :leaf, :by "root", :at 1539099056048, :text "0", :id "G1e-2lIKbv5"} + "v" {:type :leaf, :by "root", :at 1539099056048, :text "0", :id "jLMRgdNl4fC"} + "x" {:type :leaf, :by "root", :at 1539099056048, :text "0.4", :id "pWzp3bRCz1o"} + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099056048, :id "ebOGff3SqYI" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":z-index", :id "bq7ON64RKsM"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "100", :id "RfY6LGtlBh2"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099056048, :id "3tsyATsQpyV" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":on-click", :id "3hdAzem66AB"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "jy3COs7-BBC" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "fn", :id "UJfDmp_H7cl"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "7VRCHZWD3Ez" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "e", :id "SmGP6P7cy0C"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "d!", :id "vBk-UrIqbnR"} + "r" {:type :leaf, :by "root", :at 1539099056048, :text "m!", :id "umUSKSQh9y9"} + } + } + "r" { + :type :expr, :by "root", :at 1539099056048, :id "Yjp3Z7THwF8" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "on-close!", :id "p2IhGtpsNh0"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "m!", :id "3PZUm0OfBx_"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099056048, :id "y0TWwQROF9W" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "div", :id "jkTNfucWn3x"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "Bu2XEZbb88a" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "{}", :id "ZCCSqiq32V0"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "ZWrzzAfaSJp" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":style", :id "kj9azkjB3Kw"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "3WkqdXLPSkl" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "{}", :id "8pB1ap9Thm4"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "3DpBmbUU_-c" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":padding", :id "4XbsbYuY8jk"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "16", :id "b8uNTf063jn"} + } + } + "r" { + :type :expr, :by "root", :at 1539099056048, :id "cDeEB-v0gDG" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":background-color", :id "vgZkVL6E0y_"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text ":white", :id "Kv8G1ecGZUc"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099056048, :id "EKtHa1kicpZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text ":on-click", :id "iYGBJ1zaGK3"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "dRTzxTG2ZTI" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "fn", :id "inyNHoA4zoI"} + "j" { + :type :expr, :by "root", :at 1539099056048, :id "00THRxMBVCz" + :data { + "T" {:type :leaf, :by "root", :at 1539099056048, :text "e", :id "YHY9fJLAjjL"} + "j" {:type :leaf, :by "root", :at 1539099056048, :text "d!", :id "Z_OFReAir0n"} + "r" {:type :leaf, :by "root", :at 1539099056048, :text "m!", :id "1drwwc9dRZF"} + } + } + } + } + } + } + } + } + "r" {:type :leaf, :by "root", :at 1539099056048, :text "child-node", :id "LsyxInycLJU"} + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539099056048, :id "tW_8xRlsHtD" + :data {} + } + } + "app.comp.header" { + :ns { + :type :expr, :by "root", :at 1539099073282, :id "_zzZGkzxa0" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "ns", :id "JHnn0bWIIs"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "app.comp.header", :id "trYXWI01U3"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "5B1eAsUF0U" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":require", :id "KZZYFBKt2B"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "xZSKHTwRCr" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "[]", :id "hNrUu_7nCf"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "hsl.core", :id "ZZvPsD8bNs"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text ":refer", :id "9wP1hya50O"} + "v" { + :type :expr, :by "root", :at 1539099073282, :id "_FgBODVjqV" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "[]", :id "Ogw-wu2dd2"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "hsl", :id "zeCeD6ub6_"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099073282, :id "Zr_vibqjo8" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "[]", :id "TAjBm8QGkH"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "respo-ui.core", :id "a5rCV1zdJK"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text ":as", :id "ZwVYsawM8j5"} + "v" {:type :leaf, :by "root", :at 1539099073282, :text "ui", :id "FDZx1RE1QPs"} + } + } + "v" { + :type :expr, :by "root", :at 1539099073282, :id "GD8nRUI2bvu" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "[]", :id "PchqF6Dhxbq"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "respo-ui.colors", :id "rsOCFuqNSNv"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text ":as", :id "auG8YvOZorP"} + "v" {:type :leaf, :by "root", :at 1539099073282, :text "colors", :id "Kcjw0-vM61f"} + } + } + "x" { + :type :expr, :by "root", :at 1539099073282, :id "Ipf8ix6mnfN" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "[]", :id "Z3qZ-tzfBEH"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "respo.macros", :id "p4Q_Ac2A-Tp"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text ":refer", :id "8xrofn08M4O"} + "v" { + :type :expr, :by "root", :at 1539099073282, :id "8eknzxvctkF" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "[]", :id "GuOzQk_G5gZ"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "defcomp", :id "9p7E-RwX-Il"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text "<>", :id "8cwU_8TUoqu"} + "v" {:type :leaf, :by "root", :at 1539099073282, :text "action->", :id "JHo037CG831"} + "x" {:type :leaf, :by "root", :at 1539099073282, :text "span", :id "Mxixgk_rYRK"} + "y" {:type :leaf, :by "root", :at 1539099073282, :text "div", :id "lAJ_A4kx3uk"} + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099073282, :id "loqTo5ydIaH" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "[]", :id "wKsgLrZGu0d"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "respo.comp.space", :id "s6txu8SnIcj"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text ":refer", :id "fvskAwbFSe4"} + "v" { + :type :expr, :by "root", :at 1539099073282, :id "seI4kbbEsVB" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "[]", :id "ELQjZ5fNKly"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "=<", :id "5_sjGwK2NxU"} + } + } + } + } + } + } + } + } + :defs { + "comp-header" { + :type :expr, :by "root", :at 1539099073282, :id "tcuGA4hP5n0" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "defcomp", :id "hmdE0Tc-UJp"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "comp-header", :id "Lav6CiATW1_"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "gVfdyFUuFbw" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "logged-in?", :id "7tcunAqgRky"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "router", :id "GOLpUz5xtJo"} + } + } + "v" { + :type :expr, :by "root", :at 1539099073282, :id "_OlfS7BkuL2" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "div", :id "jTTES9eP2DQ"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "PhNTvwn3z8b" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "{}", :id "6DLFNQo7VuQ"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "6hUdR5GpA_d" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":style", :id "Jbhp5NeyQgx"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "EcIVvhEbSZT" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "merge", :id "S_1RiClRoyz"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "ui/row-center", :id "iWJWK-Tht74"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text "style-header", :id "B5d_gLsmhZb"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099073282, :id "6izTV_OF3fp" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "div", :id "QgOCmlbFiS4"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "CM5Eb_gOG3p" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "{}", :id "n9yCcs71HYf"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "1jPODd4i3lS" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":style", :id "dGXZN_aG8sH"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "ui/row", :id "aL0d-0clBe_"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099073282, :id "1P7aY6jYRAd" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "render-entry", :id "ibg7eFJ__xT"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "router", :id "1oKc85B0Nt3"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text ":home", :id "SBNRsG2dyfn"} + "v" {:type :leaf, :by "root", :at 1539099073282, :text "|Termina", :id "fZdIDo3pU_S"} + } + } + "v" { + :type :expr, :by "root", :at 1539099073282, :id "0A66S55ZaCQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "=<", :id "TTqt0qN3Js2"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "16", :id "_yRekwQnDrS"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text "nil", :id "i-ItXDXA_Lz"} + } + } + "x" { + :type :expr, :by "root", :at 1539099073282, :id "W2T3IbL0pPs" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "render-entry", :id "_hXfoIbnDzl"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "router", :id "PAWlwiST_GK"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text ":workflows", :id "wG0heQ2HvCH"} + "v" {:type :leaf, :by "root", :at 1539099073282, :text "|Workflows", :id "zLIrnW5FpIC"} + } + } + "y" { + :type :expr, :by "root", :at 1539099073282, :id "p86jDQirWYF" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "=<", :id "-YgmQ-IiCfU"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "16", :id "nDPNC17ag0c"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text "nil", :id "x01ef3Bm3-M"} + } + } + "yT" { + :type :expr, :by "root", :at 1539099073282, :id "K2FPtWO_-Fm" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "render-entry", :id "UK6_6nm0chi"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "router", :id "mS3UxS1e1vN"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text ":history", :id "y99uzAEwga6"} + "v" {:type :leaf, :by "root", :at 1539099073282, :text "|History", :id "_iFlFTrVtXQ"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099073282, :id "Atcm-OMxvtf" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "div", :id "pviE5XyWnOF"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "eekrnlX2AXS" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "{}", :id "9UrK7e3clhx"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "jmq0AhORUug" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":style", :id "y_Ud2tBEG-S"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "style-pointer", :id "rAziFVLvSRG"} + } + } + "r" { + :type :expr, :by "root", :at 1539099073282, :id "K-akYNIcOe7" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":on-click", :id "HiXBDOFB1G1"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "on-profile", :id "OYJ2_JVGFnZ"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099073282, :id "gDxj_TwQiP3" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "<>", :id "XxbOqV9oj2l"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "span", :id "BQPB1_hJpM2"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "9mYoR3HK-cZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "if", :id "X8OGyUPoD8q"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "logged-in?", :id "j0QgKdM1P80"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text "|Me", :id "KQb-XNHVKwS"} + "v" {:type :leaf, :by "root", :at 1539099073282, :text "|Guest", :id "3jrVH6JFtHQ"} + } + } + "v" {:type :leaf, :by "root", :at 1539099073282, :text "nil", :id "EyURGSAXYFM"} + } + } + } + } + } + } + } + } + "on-profile" { + :type :expr, :by "root", :at 1539099073282, :id "bYBoAniddG-" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "defn", :id "wvw9rBJ8h8V"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "on-profile", :id "PuyCgDsE1Jq"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "_FRA64eAXmy" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "e", :id "QfhzayXpEug"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "dispatch!", :id "UaQ27gfk_x6"} + } + } + "v" { + :type :expr, :by "root", :at 1539099073282, :id "EyedAtAuitC" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "dispatch!", :id "8ZMMcnF-mZh"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text ":router/change", :id "ADTdv6Vh6Oh"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "7qs1MvjwZSy" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "{}", :id "iMzWmFvk1Mf"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "jDSb_jiINNP" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":name", :id "uBYExLQdfYZ"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text ":profile", :id "4-Jfdd_VXNi"} + } + } + "r" { + :type :expr, :by "root", :at 1539099073282, :id "XCulhDNOmQl" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":data", :id "IdzvWI8fUkq"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "nil", :id "U_80LdaDm-N"} + } + } + "v" { + :type :expr, :by "root", :at 1539099073282, :id "QWZwkte_a2o" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":router", :id "4p6qPnyHQjV"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "nil", :id "y0oU6UtPRmJ"} + } + } + } + } + } + } + } + } + "render-entry" { + :type :expr, :by "root", :at 1539099073282, :id "bWxwZpMHMcX" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "defn", :id "s65L04Hxmz_"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "render-entry", :id "luHYVhW9i6g"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "83s3PZkCo2K" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "router", :id "O5ESb8itYnX"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "router-name", :id "W5lKBHiANuv"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text "title", :id "6pMKx69y1m6"} + } + } + "v" { + :type :expr, :by "root", :at 1539099073282, :id "dlkIpEMz5sF" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "div", :id "59JwveFiVE3"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "QhSMBZKjELy" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "{}", :id "kbiRc0z1Hxv"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "AmZ1JKCEwL-" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":style", :id "dixCxfSpCdW"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "0KcAEXQHbK2" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "merge", :id "eNQXnmOqy_z"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "style-logo", :id "KoQrIlnm1gR"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "rMe5UGk01MF" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "if", :id "PXh8F_RrHrA"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "vpAj57HUs_P" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "=", :id "3xbwn7NRxDW"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "router-name", :id "ZJ8_CWGY4T8"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "Re0XG_biNrP" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":name", :id "qlJ84k7uT1C"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "router", :id "tQLyCMrm6uW"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099073282, :id "3jsYaaL5tBO" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "{}", :id "h-VPx_SEhRz"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "-EH-dowSWsk" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":color", :id "U5nlAogcy9Z"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text ":black", :id "a_FBofH3gfB"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099073282, :id "yJcX8ML1RJ4" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":on-click", :id "RW5b-utOuIE"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "CB6SJVWmLZY" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "action->", :id "4TwPaOHU4g-"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text ":router/change", :id "d72I3xiQEtz"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "5fMZYWVbVGc" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "{}", :id "pqCjEWLq2Er"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "L1WBtdowseH" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":name", :id "MIeNpuRAHxn"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "router-name", :id "lE4J4133eTe"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099073282, :id "wJbLZKNS7tR" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "<>", :id "wo8ywrSkWuK"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "title", :id "dg1Kje8E1-f"} + } + } + } + } + } + } + "style-header" { + :type :expr, :by "root", :at 1539099073282, :id "jvoguJY4vik" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "def", :id "Ex_rxB9nbH9"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "style-header", :id "4CYNThtZYvE"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "8L8IFb-WM9v" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "{}", :id "sz5EdevfT6R"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "Chhz-M8ud3I" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":height", :id "14Mw_u_WsTB"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "48", :id "Pzzao-HiXEs"} + } + } + "r" { + :type :expr, :by "root", :at 1539099073282, :id "_lGLPhDrZCq" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":justify-content", :id "7I_ZGdptri-"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text ":space-between", :id "Dyxw_R0Noi0"} + } + } + "v" { + :type :expr, :by "root", :at 1539099073282, :id "MekNvkuio9q" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":padding", :id "r8tDCOZVOfG"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "|0 16px", :id "-GiHVaAqfgW"} + } + } + "x" { + :type :expr, :by "root", :at 1539099073282, :id "fQ01xsps5pL" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":font-size", :id "lwYK7WqIhGp"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "16", :id "M-XyZUGZ6mt"} + } + } + "y" { + :type :expr, :by "root", :at 1539099073282, :id "aZxu056PGcS" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":border-bottom", :id "eHToA82aVsK"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "NpUlQ8UV5Ek" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "str", :id "-hmTEzEtN_s"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "|1px solid ", :id "TwMYSTHNRut"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "jxTDXupBd0A" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "hsl", :id "c1TSfnIOYmI"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "0", :id "awMGDSbpc1I"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text "0", :id "aCxdmVui4F5"} + "v" {:type :leaf, :by "root", :at 1539099073282, :text "94", :id "JqwMGwIkG0R"} + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099073282, :id "ACZ3oljKZJT" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":font-family", :id "DJLcUM_9BBJ"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "ui/font-fancy", :id "KXiu2OS53Qh"} + } + } + } + } + } + } + "style-logo" { + :type :expr, :by "root", :at 1539099073282, :id "qLxK-BcwSCD" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "def", :id "w9bizc0K-5B"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "style-logo", :id "xY51JcsOFkY"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "-J9aPjPFjNf" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "{}", :id "oDjAaU8LEb9"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "PNDIHyJGXJB" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":cursor", :id "aegelpMo8gb"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text ":pointer", :id "MC9lz8RezlP"} + } + } + "r" { + :type :expr, :by "root", :at 1539099073282, :id "mWPk9EPFcfi" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":color", :id "ynorFuWdaML"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "KgDrhCsUl2g" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "hsl", :id "ERI-vaboXZ_"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "0", :id "b069YaOKukJ"} + "r" {:type :leaf, :by "root", :at 1539099073282, :text "0", :id "YU9PkMDQ2KW"} + "v" {:type :leaf, :by "root", :at 1539099073282, :text "60", :id "J03yYtpX6pm"} + } + } + } + } + } + } + } + } + "style-pointer" { + :type :expr, :by "root", :at 1539099073282, :id "6fD2KJ87SFu" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "def", :id "SPmQMPV4S3U"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "style-pointer", :id "pdZ5ht1bwAp"} + "r" { + :type :expr, :by "root", :at 1539099073282, :id "PS5K9smLTiJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text "{}", :id "U-n825Me-xB"} + "j" { + :type :expr, :by "root", :at 1539099073282, :id "GpT7CXXS9XZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099073282, :text ":cursor", :id "SNo-U3HKhWo"} + "j" {:type :leaf, :by "root", :at 1539099073282, :text "|pointer", :id "KHEIlx7gfWw"} + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539099073282, :id "tACcm_KOovU" + :data {} + } + } + "app.comp.history" { + :ns { + :type :expr, :by "root", :at 1539099086648, :id "dvhRbeRSHX" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "ns", :id "M7QBaQ4Y8N"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "app.comp.history", :id "2LVbPvtsS1"} + "r" { + :type :expr, :by "root", :at 1539099086648, :id "SbzUK-Hlva" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text ":require", :id "2mdtHnQTJx"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "L20S1_i51E" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "[]", :id "Or7NXizOfF"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "hsl.core", :id "uUClBKsjt5"} + "r" {:type :leaf, :by "root", :at 1539099086648, :text ":refer", :id "rcmaJcLwK6"} + "v" { + :type :expr, :by "root", :at 1539099086648, :id "ARly7N9mWB" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "[]", :id "jaap6Ljg27"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "hsl", :id "naYS71Zaa2"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099086648, :id "rFT4p798vl" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "[]", :id "ISuOzc-wOe"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "respo-ui.core", :id "vLw3dR66c0"} + "r" {:type :leaf, :by "root", :at 1539099086648, :text ":as", :id "TFBpwWxiL8Y"} + "v" {:type :leaf, :by "root", :at 1539099086648, :text "ui", :id "tdh_6fjHL8G"} + } + } + "v" { + :type :expr, :by "root", :at 1539099086648, :id "TZxg9cpLbWL" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "[]", :id "1OtjLkPcN1I"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "respo-ui.colors", :id "EygcFCvcvbY"} + "r" {:type :leaf, :by "root", :at 1539099086648, :text ":as", :id "MohWx4UX1Yr"} + "v" {:type :leaf, :by "root", :at 1539099086648, :text "colors", :id "14uY8wATbiO"} + } + } + "x" { + :type :expr, :by "root", :at 1539099086648, :id "ZO8JC_OfNaO" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "[]", :id "AZv7Kl-DcOT"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "respo.macros", :id "BSCp5b0_XN5"} + "r" {:type :leaf, :by "root", :at 1539099086648, :text ":refer", :id "dTK6fc0Irxq"} + "v" { + :type :expr, :by "root", :at 1539099086648, :id "-d-PPXKd3eH" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "[]", :id "a0_seTycXj8"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "defcomp", :id "M0gSA6Yfad7"} + "r" {:type :leaf, :by "root", :at 1539099086648, :text "<>", :id "SASzJmK9NRy"} + "v" {:type :leaf, :by "root", :at 1539099086648, :text "action->", :id "LW7spB-F7od"} + "x" {:type :leaf, :by "root", :at 1539099086648, :text "list->", :id "RUUMTcY47QN"} + "y" {:type :leaf, :by "root", :at 1539099086648, :text "span", :id "ZC8MAMwpc7P"} + "yT" {:type :leaf, :by "root", :at 1539099086648, :text "div", :id "9adI9dF8exB"} + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099086648, :id "3vcYDg6juTW" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "[]", :id "Ytq_SosCApu"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "respo.comp.space", :id "LgkBoAvM7Nz"} + "r" {:type :leaf, :by "root", :at 1539099086648, :text ":refer", :id "C1mJbNQ4_pN"} + "v" { + :type :expr, :by "root", :at 1539099086648, :id "gejafIkwFO3" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "[]", :id "hjFqE2BaAXq"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "=<", :id "2lfyq4cIPW1"} + } + } + } + } + } + } + } + } + :defs { + "comp-history" { + :type :expr, :by "root", :at 1539099086648, :id "zg43NJ5Gd1s" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "defcomp", :id "s9NW5mnWY0J"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "comp-history", :id "bJ8Yh5pZHSj"} + "r" { + :type :expr, :by "root", :at 1539099086648, :id "mBqx6Ri0sHa" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "histories", :id "oO_Nl-tIOVk"} + } + } + "v" { + :type :expr, :by "root", :at 1539099086648, :id "T5gt1QN7BnG" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "div", :id "a3TnjQAKQt7"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "hgbQlreU2tF" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "{}", :id "e15PjcvyJ5H"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "HMy-c3wZC0U" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text ":style", :id "VQjazSMASd3"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "xOHCfTDcmCf" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "{}", :id "82Z4ixP9Hh6"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "p51-dtrPcZl" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text ":padding", :id "phob51_DxmF"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "|0 16px", :id "NaKv7iBbKSp"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099086648, :id "tP7HOJU7KnZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "list->", :id "Z-rqatr3ULc"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "xc-HLLx-bXw" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "{}", :id "ikXRuoLj9jy"} + } + } + "r" { + :type :expr, :by "root", :at 1539099086648, :id "ottsb_XqeM5" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "->>", :id "UEswS7mJS4N"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "histories", :id "9EuQdjgujmd"} + "r" { + :type :expr, :by "root", :at 1539099086648, :id "g8pC7Ej3H0q" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "map", :id "pgfLxanGfFQ"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "6QgnmcJlArY" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "fn", :id "3sHC4qh9Gpm"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "sbjfSJZIWqp" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "history", :id "JGlIYinNwNU"} + } + } + "r" { + :type :expr, :by "root", :at 1539099086648, :id "l-lpEko6CBx" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "[]", :id "2yvZi4IfNHv"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "RkVNlACieei" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text ":id", :id "9VoKONIIyq8"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "history", :id "Y80w9B82MEE"} + } + } + "r" { + :type :expr, :by "root", :at 1539099086648, :id "Mg5NBLplDRB" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "div", :id "cfcuetu2xxF"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "Er8wAwoGT_D" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "{}", :id "nv2QDkt4B85"} + } + } + "r" { + :type :expr, :by "root", :at 1539099086648, :id "m-heL5sw6ps" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "<>", :id "UXJ3Y4e-20S"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "SYTtgiF8YXT" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text ":command", :id "73qT0fR3KpZ"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "history", :id "cr5O8dradXe"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099086648, :id "DNS5rjpR4Fi" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "=<", :id "VX8PCaMiPb8"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "16", :id "kvbD8_iLXej"} + "r" {:type :leaf, :by "root", :at 1539099086648, :text "nil", :id "815cC8UhXZE"} + } + } + "x" { + :type :expr, :by "root", :at 1539099086648, :id "TUFfXqRamn-" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "<>", :id "CCzR-frTiw9"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "qQALTmSsR0f" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text ":cwd", :id "n0BGXJ-yF2s"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "history", :id "IbDiwS0R4oe"} + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099086648, :id "eGerFoRqGOV" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "=<", :id "jLt5c8iXVYa"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "16", :id "ZrKxVOYaAiq"} + "r" {:type :leaf, :by "root", :at 1539099086648, :text "nil", :id "q8QbKXzqE1h"} + } + } + "yT" { + :type :expr, :by "root", :at 1539099086648, :id "sjbqnKv_Lw_" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text "<>", :id "mpSW9uwwc_t"} + "j" { + :type :expr, :by "root", :at 1539099086648, :id "wMBBFkh6pDe" + :data { + "T" {:type :leaf, :by "root", :at 1539099086648, :text ":started-at", :id "9gRhAUWdGm2"} + "j" {:type :leaf, :by "root", :at 1539099086648, :text "history", :id "hHqtPvIRm36"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539099086648, :id "XG7SwJPVhrh" + :data {} + } + } + "app.comp.home" { + :ns { + :type :expr, :by "root", :at 1539099101998, :id "jL0KJ7NViR" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "ns", :id "9qI_vpD_Qy"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "app.comp.home", :id "DXvLHFsoE6"} + "r" { + :type :expr, :by "root", :at 1539099101998, :id "ZkdCj0M_dX" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":require", :id "Xww7Jrm8L7"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "n2xx_-p9-B" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "_AisraMU69"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "hsl.core", :id "6V4qhrk7Y0"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text ":refer", :id "hWLB4Oem1Y"} + "v" { + :type :expr, :by "root", :at 1539099101998, :id "KnFGzb7ONc" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "1hYdWLo0Y-"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "hsl", :id "JpUhhU-h_A"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "nZzk50_Y_G" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "4quFE6Kf_3"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "respo-ui.core", :id "vrOmMXGD5Z"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text ":as", :id "c3zu0h_Q0HP"} + "v" {:type :leaf, :by "root", :at 1539099101998, :text "ui", :id "fOjcaaJOA_2"} + } + } + "v" { + :type :expr, :by "root", :at 1539099101998, :id "tw_1Zqd1tSv" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "U_23E8nz9JR"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "respo.comp.space", :id "7HCs2jA2IJS"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text ":refer", :id "PREE45TvG5R"} + "v" { + :type :expr, :by "root", :at 1539099101998, :id "e3oTg1PucUf" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "FzbyhcNRL5B"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "=<", :id "8gCHhGZxjDB"} + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539099101998, :id "5jd54SBZK_R" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "qfECyJ6a4vS"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "respo-ui.colors", :id "gJWOwgChfh9"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text ":as", :id "sdo9Htry7B_"} + "v" {:type :leaf, :by "root", :at 1539099101998, :text "colors", :id "HNXO0xLPDWn"} + } + } + "y" { + :type :expr, :by "root", :at 1539099101998, :id "2htE1QAFpkF" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "pHkbpix3pRc"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "respo.macros", :id "bJCfko8iMJH"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text ":refer", :id "ndDmhGmzutA"} + "v" { + :type :expr, :by "root", :at 1539099101998, :id "H4rd5HDyKib" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "wCrFQyRs6uF"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "defcomp", :id "lWVyJB76X07"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text "cursor->", :id "1c66b0x-yj4"} + "v" {:type :leaf, :by "root", :at 1539099101998, :text "action->", :id "qqOkRsLOEkf"} + "x" {:type :leaf, :by "root", :at 1539099101998, :text "list->", :id "Ymx6QQ4VkTb"} + "y" {:type :leaf, :by "root", :at 1539099101998, :text "button", :id "KUqEM7E8e36"} + "yT" {:type :leaf, :by "root", :at 1539099101998, :text "<>", :id "5YiyIbI5roJ"} + "yj" {:type :leaf, :by "root", :at 1539099101998, :text "span", :id "-6jrzmFLkzo"} + "yr" {:type :leaf, :by "root", :at 1539099101998, :text "div", :id "G4PTEyfGbXM"} + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099101998, :id "32b0-h88Nf9" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "SlakVrfXfta"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "app.comp.commander", :id "z1ZOMS9_JL7"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text ":refer", :id "Kv8ctG-15gN"} + "v" { + :type :expr, :by "root", :at 1539099101998, :id "Djel2fdk-kj" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "MyT69eWmUGT"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "comp-commander", :id "T-8129RFQjr"} + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1539099101998, :id "FE6UVtmjTu0" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "HNfu3YMO-HI"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "app.comp.process", :id "_tb-shTRAqs"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text ":refer", :id "k89IpKARITV"} + "v" { + :type :expr, :by "root", :at 1539099101998, :id "buVK_eF4rPS" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "Peq80XyeZPu"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "comp-process", :id "94nB33ydBRL"} + } + } + } + } + "yr" { + :type :expr, :by "root", :at 1539099101998, :id "tDn27taKTnG" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "G8BBYVLSACR"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "app.util", :id "w2-SLaWB1un"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text ":refer", :id "qcSdwFsbQjv"} + "v" { + :type :expr, :by "root", :at 1539099101998, :id "0MmqGs965Yd" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "qWyEBzurEMO"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "join-path", :id "jvm0t-Bz9A7"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text "map-val", :id "s2Fs8yELzNe"} + } + } + } + } + "yv" { + :type :expr, :by "root", :at 1539099101998, :id "DjghxrAiSxF" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "hRAdvgZfEo2"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "app.style", :id "gBMxDOmcGW1"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text ":as", :id "XN6fVE5A-2n"} + "v" {:type :leaf, :by "root", :at 1539099101998, :text "style", :id "vb2lFJXOk7_"} + } + } + } + } + } + } + :defs { + "comp-home" { + :type :expr, :by "root", :at 1539099101998, :id "S_VXF5VNwVL" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "defcomp", :id "mx6fW9D_1b5"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "comp-home", :id "2mW_hiUBrwX"} + "r" { + :type :expr, :by "root", :at 1539099101998, :id "7kV6Lr0t4g-" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "router-data", :id "48cPnrrME5J"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "states", :id "KCWmwGO2Y-5"} + } + } + "v" { + :type :expr, :by "root", :at 1539099101998, :id "n8dujRfgwYy" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "div", :id "Q8ehkpyKrF9"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "z-5AJYItGVN" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "UwYSk2Grehu"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "AQR_X9Bmbqz" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":style", :id "n8EDCfZQMwX"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "b5R5xzXgEua" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "6dX2LWQWBU_"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "f_AqPxH44Hd" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":padding", :id "xvL8Krp2Qnk"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "8", :id "YSZV5Tz8SLx"} + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "wkAPLdniit_" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":overflow", :id "S5p8K4YKm1_"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text ":auto", :id "qz2Hr3Xb97l"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "tSoWHZz1rhC" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "div", :id "jiFy_Hpfo_k"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "bKBVhXlf3Bw" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "N-l8tmMkSqo"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "JYO26SdQNwq" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":style", :id "3RPKtoszJJg"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "_1KEJdJPkyG" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "merge", :id "gYxadlsYJSO"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "ui/row-parted", :id "zFGCF1ECFYq"} + "r" { + :type :expr, :by "root", :at 1539099101998, :id "e0YWqj5glll" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "oQb8OdWH_xj"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "NiYXyHOzble" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":align-items", :id "AZSrEPuea-p"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text ":center", :id "Zb4eUL-Q2vc"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "2jG0TnPHltt" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "list->", :id "wc9WkeZrywI"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "1pYAR8fSOUy" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "n8ic2Omcdt4"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "nUlUSiMi1X8" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":style", :id "1hIwQfrRFOV"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "ui/row", :id "mv7y-QrmQYb"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "PW0dcdFt53b" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "->>", :id "XTVfmEyAAZE"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "nuc4EqvCFDu" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":workflows", :id "OIaIIA-_137"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "router-data", :id "PfPZahg_KJl"} + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "GbYUMgur9Rl" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "map-val", :id "-TlcxeDtY_j"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "cEHNPovI00Z" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "fn", :id "xnUnxdcUEXM"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "YrwBxQi1a5l" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "workflow", :id "H0Zq2g48Q5H"} + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "-FcEu_VfC9V" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "div", :id "ezo3rIuqki8"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "2V-bYH0YlL2" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "_3e1eUydaSf"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "2UMRjC71_KL" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":style", :id "UmZweZJ-hn5"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "5_9Wno9ypu_" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "mzLKGEDMYrp"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "ETely7dc8f3" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":background-color", :id "tup-AWf2fao"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "spQByKHqCM-" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "hsl", :id "o7JtS0FCIOK"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "60", :id "dCKHNCaAk47"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text "90", :id "kKRBx53fYmE"} + "v" {:type :leaf, :by "root", :at 1539099101998, :text "47", :id "Q1Y1qB3YtZy"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "XONUKpYLkAF" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":padding", :id "iquPe5DsZb7"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "|0 8px", :id "IQ4_WIIosPi"} + } + } + "v" { + :type :expr, :by "root", :at 1539099101998, :id "03VfidzMSq_" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":display", :id "1WTrKaJeASa"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text ":inline-block", :id "WNl65jvKb1R"} + } + } + "x" { + :type :expr, :by "root", :at 1539099101998, :id "_sqL9d04N_v" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":cursor", :id "bHlBjW8-Pam"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text ":pointer", :id "BfrkCr2NeoS"} + } + } + "y" { + :type :expr, :by "root", :at 1539099101998, :id "XJP9w3YhNSS" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":margin", :id "_3OnGX4y6W9"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "8", :id "mWM_o5mef1C"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "JpPmfInrxBd" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":on-click", :id "1wFSzc5UiMG"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "yMoklJ1ZRaQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "fn", :id "jlIxkk1qvYZ"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "CWBlrAMV4Yf" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "e", :id "1UF-oAV5FNK"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "d!", :id "QneNWtjT9qh"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text "m!", :id "IgVVQlLibXn"} + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "cVZPWUFKE6Y" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "doseq", :id "Sx-v47jLjrF"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "A0_tGCYpiwB" + :data { + "T" { + :type :expr, :by "root", :at 1539099101998, :id "WFl2EO0we2U" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "command", :id "d786A370mUC"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "S3FIwkZ7GyC" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "vals", :id "S87QDdsQ4W0"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "9DJPQ8qOrYU" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":commands", :id "0yOrbfOyhxu"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "workflow", :id "CiNqnvIV_ms"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "DG1wwgi5y97" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "d!", :id "XGzkhm3wiUv"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text ":effect/run", :id "p_RUbFkqm0X"} + "r" { + :type :expr, :by "root", :at 1539099101998, :id "gHw1LAW_J25" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "_2ytGCQtbae"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "jtPTRAIqEKj" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":command", :id "o5o1ilNipFU"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "zau9MaG94ww" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":code", :id "KvXJW8MEQJ7"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "command", :id "NDEcL_GJM0I"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "Z9mhQCzYpuJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":cwd", :id "VhUK_eM2JqX"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "9BiyvjxJzS7" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "join-path", :id "M_2LPPO4ALn"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "sz_EiZomQyT" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":base-dir", :id "yiIWBld8GsB"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "workflow", :id "brl3ob_6HpA"} + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "Ax3PI6vX2jT" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":path", :id "qQQ5GgiT1cM"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "command", :id "8oegVBib0w6"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "54v-th0vI5o" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "<>", :id "m9zk9jwItMJ"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "ZoQ1sriuOcy" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":name", :id "_ZzteJtMGLv"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "workflow", :id "Gy-5K9Fq6Fn"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099101998, :id "8q0Zjwf43AP" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "button", :id "td_fDnO_p6p"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "rV6wpuC7l1a" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "ATtAXsQdCK1"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "GhZj2cFqdqz" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":style", :id "T2aHnA20IQq"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "style/button", :id "qmBtpDEUJJZ"} + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "t6vRvx6kf01" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":on-click", :id "RKPghlBs4-s"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "kmoM7X14ekN" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "action->", :id "ckfZWYR4uZ1"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text ":process/clear", :id "8SABeC8bHK_"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text "nil", :id "QwHtimRJ-O8"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "z5Rkx-4zuUk" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "<>", :id "M6nM0PSb8MH"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "|Clear", :id "-dlCJ8I-P67"} + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099101998, :id "f45BiVJ6nfy" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "=<", :id "UXDROJkPIcn"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "nil", :id "pUSNBuZxiTI"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text "8", :id "tFApZrJ2w2y"} + } + } + "x" { + :type :expr, :by "root", :at 1539099101998, :id "G6kR_m2htUo" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "list->", :id "ryAbi5k05A-"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "HsWoGB4u5v9" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "LbxeD1FzslB"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "cqpdHhjj0IA" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":style", :id "Vd3Y7lyn9tR"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "R4xLF71naVf" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "merge", :id "YOSJbQVZ-AH"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "ui/row", :id "zCKzzkQFQj3"} + "r" { + :type :expr, :by "root", :at 1539099101998, :id "TQNI9ygf8W6" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "JnQlegw87RB"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "1XZXaOeCHva" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":align-items", :id "-kFSUGNTOLP"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text ":flex-start", :id "ebV0fqfAYUi"} + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "PNFqiuZqofK" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":flex-wrap", :id "tv7wH_6ylqm"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text ":wrap", :id "bTRZfcVF_Qt"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "RtyT3pYRj5h" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "->>", :id "YTgJPce0BpY"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "XM5aBeYAwz9" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":processes", :id "HKXAH4hxXdw"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "router-data", :id "g-lTUQvuxMf"} + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "6-lMgOrH53G" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "sort", :id "tu-GtpUGtP1"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "ewq7iUaRiy2" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "fn", :id "1HUCPVE4tLD"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "6aIxaRo-ONP" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "x", :id "rEXiQ1PXTKR"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "y", :id "Fp3b2ftotwL"} + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "2YGSF8pDGaH" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "-", :id "Fhh7PUmpAHq"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "AD7aPbQPcmp" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":started-at", :id "wZV0_r7Ghnl"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "2GF6ZTWUqp5" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "val", :id "9gUd1NxY3y8"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "y", :id "w0VVtSy54jG"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "iNRmxnU_ENf" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":started-at", :id "YC0KYoH6ypJ"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "2pT75ZZAkh1" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "val", :id "BHMvaczjy5Q"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "x", :id "KIpqXzUPMCG"} + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099101998, :id "9srmE_7-lgo" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "map", :id "52Y9pbj7eD-V"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "zZC45y7AZY8A" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "fn", :id "_cDWWfu2YYJG"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "F-UA10Bajpvl" + :data { + "T" { + :type :expr, :by "root", :at 1539099101998, :id "tRDVzEqyw5x-" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "wQ9Xtxw4R4vR"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "pid", :id "U2vba8ycvijJ"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text "process", :id "7yK6efK20bv-"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "6NEQieCa_xQh" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "[]", :id "A8CdOlK_bDTi"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "pid", :id "ECmMcfZJYUoX"} + "r" { + :type :expr, :by "root", :at 1539099101998, :id "8ir2kOcaGKIy" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "comp-process", :id "9DHdj8vMuR1t"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "process", :id "PXohPFedzRJy"} + } + } + } + } + } + } + } + } + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099101998, :id "0TXKKVO8zMnO" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "=<", :id "qr4HIcvRlWS8"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "nil", :id "P6HaE2dtaOoM"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text "8", :id "luBJczugA6n7"} + } + } + "yT" { + :type :expr, :by "root", :at 1539099101998, :id "RxpCDg3PIIDd" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "div", :id "Pzsr1takpbmc"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "HmkturoSXZKO" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "_Kb8qIqdo3Ow"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "pIgtQssiMV2f" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text ":style", :id "QiQ7ciMXM1yn"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text "ui/row-parted", :id "dY34B7yGrMOh"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099101998, :id "Fj2N6avBU8rj" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "span", :id "T2ASdYy7yGLQ"} + "j" { + :type :expr, :by "root", :at 1539099101998, :id "rvjLMDiJIMRF" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "{}", :id "uGDni4GPybW7"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099101998, :id "XEktXsWRTHd7" + :data { + "T" {:type :leaf, :by "root", :at 1539099101998, :text "cursor->", :id "RAFsinwe9LsJ"} + "j" {:type :leaf, :by "root", :at 1539099101998, :text ":commander", :id "TbaZv25chIfE"} + "r" {:type :leaf, :by "root", :at 1539099101998, :text "comp-commander", :id "llKWs5hIEQEC"} + "v" {:type :leaf, :by "root", :at 1539099101998, :text "states", :id "yQtiSTLSh0cN"} + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539099101998, :id "5W6z5j8597Q" + :data {} + } + } + "app.comp.login" { + :ns { + :type :expr, :id "Hys_eqLgeAH-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hk3Ox5LleArW", :text "ns", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ry6_xqLxgCS-", :text "app.comp.login", :by "root", :at 1510936619134} + "v" { + :type :expr, :id "SJ3YeqUlxABZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "By6Fe5LlgRr-", :text ":require", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rJxw4e52kz", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1-Yg5UelCSZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HyfFecIgxCSZ", :text "respo.macros", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "rkQKx5Lxg0rZ", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "B1VFg98ex0Sb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1HtxqIelASb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJLFecUle0S-", :text "defcomp", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "r1Dtg9Igg0rW", :text "<>", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "SydYe98xe0BW", :text "div", :by "root", :at 1500541010211} + "x" {:type :leaf, :id "HJttec8elRrW", :text "input", :by "root", :at 1500541010211} + "y" {:type :leaf, :id "HJ9tl98xxAHb", :text "button", :by "root", :at 1500541010211} + "yT" {:type :leaf, :id "SyoYl9LelCBW", :text "span", :by "root", :at 1500541010211} + } + } + } + } + "r" { + :type :expr, :id "rkBqe58el0HZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S189lq8leAHW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "B1DcxqUexABZ", :text "respo.comp.space", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "r1dcgc8xg0HZ", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "SyF5x98llCSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJc9g58xg0HZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1j9g98ggCB-", :text "=<", :by "root", :at 1500541010211} + } + } + } + } + "v" { + :type :expr, :id "S129ecIxeAHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "By6cgq8llCr-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJ09lqUxeRBb", :text "respo.comp.inspect", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "BkJoxqUeg0r-", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "HJxigqIex0Sb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkWslq8eeCH-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S1Gsg98geRrb", :text "comp-inspect", :by "root", :at 1500541010211} + } + } + } + } + "x" { + :type :expr, :id "rk7ol9IxxABZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ry4ie5IgeArW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "B1Bjgc8gxRrW", :text "respo-ui.core", :by "root", :at 1516547410331} + "r" {:type :leaf, :id "BkIjeq8xxCBZ", :text ":as", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "r1vixqLll0SZ", :text "ui", :by "root", :at 1500541010211} + } + } + "y" { + :type :expr, :id "ry_sxqUeeAHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1Kie58xlAHb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJ9sgqLxxABW", :text "app.schema", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SkjsgcIxeCHZ", :text ":as", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "r1niecUxlCrZ", :text "schema", :by "root", :at 1500541010211} + } + } + "yT" { + :type :expr, :id "SJdID4pPz", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1Kie58xlAHb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJ9sgqLxxABW", :text "app.style", :by "root", :at 1519368017028} + "r" {:type :leaf, :id "SkjsgcIxeCHZ", :text ":as", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "r1niecUxlCrZ", :text "style", :by "root", :at 1519368019779} + } + } + "yj" { + :type :expr, :by "root", :at 1527788911549, :id "H1d_S2a1Q" + :data { + "T" {:type :leaf, :by "root", :at 1527788911897, :text "[]", :id "H1d_S2a1Qleaf"} + "j" {:type :leaf, :by "root", :at 1527788913217, :text "app.config", :id "HJGd_rnakm"} + "r" {:type :leaf, :by "root", :at 1527788914516, :text ":as", :id "S1IKdB3aJQ"} + "v" {:type :leaf, :by "root", :at 1527788915188, :text "config", :id "rJouHhpkQ"} + } + } + } + } + } + } + :defs { + "comp-login" { + :type :expr, :id "HkN1-cUxxRB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJBy-qUle0SW", :text "defcomp", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S1LyWcUxe0rZ", :text "comp-login", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "HkPy-qLxlRHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sy_yZ5LxlCBZ", :text "states", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "ryK1bqLeg0rZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ry9JbqLlgRHb", :text "let", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "H1j1WcUxxRSb", :by nil, :at 1500541010211 + :data { + "T" { + :type :expr, :id "HynkWcIee0Hb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkT1bqUxlASZ", :text "state", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "Hy0yb98gxABW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkJxWc8lxCBW", :text "or", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BJllZ5Lle0Sb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hy-eb9Uxx0HZ", :text ":data", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S1GeZq8glCrW", :text "states", :by "root", :at 1500541010211} + } + } + "r" {:type :leaf, :id "B1Xeb9UleCrW", :text "initial-state", :by "root", :at 1500541010211} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1519368111046, :id "HyxD3wVpvM" + :data { + "D" {:type :leaf, :by "root", :at 1519368111912, :text "div", :id "rJZPnw4TvG"} + "L" { + :type :expr, :by "root", :at 1519368112156, :id "SJXO3vNaDM" + :data { + "T" {:type :leaf, :by "root", :at 1519368113787, :text "{}", :id "S1fd3wN6Dz"} + "j" { + :type :expr, :by "root", :at 1519368114295, :id "SyGqhw46wG" + :data { + "T" {:type :leaf, :by "root", :at 1519368116587, :text ":style", :id "SJ-9hDETDf"} + "j" { + :type :expr, :by "root", :at 1519368119982, :id "Byg6DV6wz" + :data { + "5" {:type :leaf, :by "root", :at 1519368124581, :text "merge", :id "H1lV6vNaPf"} + "D" {:type :leaf, :by "root", :at 1519368123630, :text "ui/flex", :id "BJxe6vNavM"} + "T" {:type :leaf, :by "root", :at 1519368119197, :text "ui/center", :id "rJlpnDVawM"} + } + } + } + } + } + } + "T" { + :type :expr, :id "ryEx-5IxlRSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJrgZ5Llg0Sb", :text "div", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BJIg-9Ule0rZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJvxZcIxlASZ", :text "{}", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "BJOg-5Igx0S-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1Fx-cUegRrb", :text "div", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "ry5gWc8exRSZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BkixZ9LxgRBZ", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SJhlW5Ugl0rb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1Te-58xeAHb", :text ":style", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "H1AgbqLleRrW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Bk1WZq8lgCS-", :text "{}", :by "root", :at 1500541010211} + } + } + } + } + } + } + "r" { + :type :expr, :id "BkxZZ98xeCH-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJWb-5UlxRrZ", :text "div", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "H1M-WcUggRHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hym-ZqLleAS-", :text "{}", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "SJNWb9UexCSZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1H-WqIle0rZ", :text "input", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rkU-bcUleASZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1wbZqLeeASW", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rJObbc8leRS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJYWWcLxx0rW", :text ":placeholder", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H15Wb9Ugg0r-", :text "|Username", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "SyoWb5UleCSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hy2bWqIlg0rW", :text ":value", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "HJpWZc8ggRH-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BkRZ-cIle0H-", :text ":username", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HyyM-9UglArZ", :text "state", :by "root", :at 1500541010211} + } + } + } + } + "v" { + :type :expr, :id "rklGb9LxlRSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sy-fW58glCSZ", :text ":style", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SJGf-5Llx0SW", :text "ui/input", :by "root", :at 1500541010211} + } + } + "x" { + :type :expr, :id "rJFis1lQM", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1_f-5UlxAr-", :text ":on-input", :by "root", :at 1514302367311} + "j" { + :type :expr, :id "S1KMWqIleASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S15MZ9UllCH-", :text "on-input", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S1sG-98gxArZ", :text "state", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "rk2fW9IeeRSW", :text ":username", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :id "rJ6MW9IxgAH-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1RzbqIxl0Sb", :text "=<", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Sy17-5Iex0SW", :text "nil", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "B1gQWqUxe0rZ", :text "8", :by "root", :at 1500541010211} + } + } + "x" { + :type :expr, :id "rybQZcLeeABW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkfm-5IxgASW", :text "div", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SJX7ZqIeeCB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hk4mZ5IxgASW", :text "{}", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "rJHQb58xxRBW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJU7Zc8xlCSW", :text "input", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SyPX-qIxxRBb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ry_XZ5UglRrZ", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "HyK7bcIexCS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Bk9XZqLglArZ", :text ":placeholder", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HkomWcUlxCBb", :text "|Password", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "S1hmb98glRSZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H16XZc8ee0rb", :text ":value", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "r1C7bcLel0BZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BykV-cLlgAHW", :text ":password", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rylNWcLelArZ", :text "state", :by "root", :at 1500541010211} + } + } + } + } + "v" { + :type :expr, :id "rkb4Zq8le0BW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1zEb9Leg0H-", :text ":style", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r174W9LllRB-", :text "ui/input", :by "root", :at 1500541010211} + } + } + "x" { + :type :expr, :id "S1Znooygmf", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkYEbqUleRr-", :text ":on-input", :by "root", :at 1514302370752} + "j" { + :type :expr, :id "rJ54-5LegAHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HysEZcIglRHZ", :text "on-input", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Sy24ZcUggArb", :text "state", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "rJaVb9UglCrb", :text ":password", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :id "HkCEZcIegCSb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJyBZc8xgCSZ", :text "=<", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJlHZ98eg0SZ", :text "nil", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "B1WSZ58lxArb", :text "8", :by "root", :at 1500541010211} + } + } + "x" { + :type :expr, :id "rJfHW98egCSb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ByXH-cLlx0S-", :text "div", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "r1NBZ5Uxg0BZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyHSb58leCHb", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BJLSb9LxeASZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkDrZqUlxRBb", :text ":style", :by "root", :at 1500541010211} + "j" { + :type :expr, :by "root", :at 1519368067092, :id "SyGsFwVaDf" + :data { + "T" {:type :leaf, :by "root", :at 1519368067501, :text "{}", :id "HyWoFDNaDf"} + "j" { + :type :expr, :by "root", :at 1519368135916, :id "B1xl0wE6wf" + :data { + "T" {:type :leaf, :by "root", :at 1519368141461, :text ":text-align", :id "HyeAv4TPf"} + "j" {:type :leaf, :by "root", :at 1519368142240, :text ":right", :id "B1I0wN6DG"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "BJtHWq8llRSb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJ9BZcIeeCSb", :text "span", :by "root", :at 1519367924372} + "j" { + :type :expr, :id "H1sBZ98geRSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkhSb5UleABb", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rJTH-9UlgCHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJ0SZ5Ilx0SW", :text ":inner-text", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJyIZqUleAH-", :text "|Sign up", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "rJeIW5Ugx0HZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1bIZ9IxxAHb", :text ":style", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SkfLZ5UglArZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H178Wq8exCSb", :text "merge", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJVIb58xe0B-", :text "style/link", :by "root", :at 1519368006916} + } + } + } + } + "v" { + :type :expr, :id "Syxb3iJg7G", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkMP-cIgl0rb", :text ":on-click", :by "root", :at 1514302375364} + "j" { + :type :expr, :id "rJ7wZ9Lxx0S-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sy4PbcUxgRHZ", :text "on-submit", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "ryBvWcUgeCBb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkLPZ9Lgx0rW", :text ":username", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ryPv-5UgxAHZ", :text "state", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "Byuw-cLxgCBb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyFvW5LglAH-", :text ":password", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r1qDZ98geRSW", :text "state", :by "root", :at 1500541010211} + } + } + "v" {:type :leaf, :id "HkjwbqLxlAHb", :text "true", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + "v" { + :type :expr, :id "B13wW9IgxCrb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJTPZc8xxAHW", :text "=<", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ryCvbqIxlCHZ", :text "8", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "HyyO-q8glAS-", :text "nil", :by "root", :at 1500541010211} + } + } + "x" { + :type :expr, :id "Skg_WqIxx0S-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkWu-qIgeRrW", :text "span", :by "root", :at 1519367939048} + "j" { + :type :expr, :id "HkfdZ9IelABZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S17d-5UgxCr-", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "Sk4_bq8leCHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkB_W98xxABZ", :text ":inner-text", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Sk8OW5LexRrW", :text "|Log in", :by "root", :at 1519368084428} + } + } + "r" { + :type :expr, :id "HywdZ9LeeRHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJ_OZc8lx0Bb", :text ":style", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "r1gEIv46Df", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H178Wq8exCSb", :text "merge", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJVIb58xe0B-", :text "style/link", :by "root", :at 1519368006916} + } + } + } + } + "v" { + :type :expr, :id "HJlw3skxQM", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJYF-5Uxe0S-", :text ":on-click", :by "root", :at 1514302381488} + "j" { + :type :expr, :id "rk9F-cUex0H-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyoKb98elRr-", :text "on-submit", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "B1hYZcIxxASb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Skptbq8xeCBb", :text ":username", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJRFWc8eeRr-", :text "state", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "Sk15Z9LleCS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Bkl9-5IlxRB-", :text ":password", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SJWq-58llAHW", :text "state", :by "root", :at 1500541010211} + } + } + "v" {:type :leaf, :id "rJfq-9Lge0B-", :text "false", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "initial-state" { + :type :expr, :id "BkQcW5IlxCrb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJN9bcIlg0rW", :text "def", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "B1B9-9Uel0Hb", :text "initial-state", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "H1IqZcLgg0BW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hyvq-qIllRrZ", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "Hkd9b5UxgCBW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ryF5b9IgxRB-", :text ":username", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SJq5-qUll0rb", :text "|", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "SJs5-qLel0H-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyhcbqUggRHb", :text ":password", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S16cbc8lx0Bb", :text "|", :by "root", :at 1500541010211} + } + } + } + } + } + } + "on-input" { + :type :expr, :id "r1JRxcIleCS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJlAg5Iee0B-", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1bAg5Ilg0B-", :text "on-input", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "H1M0e9UxgRBW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sk7Aeq8ge0rZ", :text "state", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJVReqLlgRB-", :text "k", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "BJHRe5LlgCSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hy8Cx58glAH-", :text "fn", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "B1vAx5LexRBW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkuAx5IxlRSZ", :text "e", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1Y0x58xeRHb", :text "dispatch!", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "r190g9LleRSZ", :text "mutate!", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "SkiRl9Lgl0SW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sy2CxqLegCHZ", :text "mutate!", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "ByaRe5UleRrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyCAlq8xx0SW", :text "assoc", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SkJ1Z5UlxRSZ", :text "state", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "HyeyZq8ge0BZ", :text "k", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "S1bkZ5UxxAHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJMk-qIggRBZ", :text ":value", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Bk7kb98eeCBW", :text "e", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + } + } + "on-submit" { + :type :expr, :id "ryRox98ggCBW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1k3e58glCr-", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SylnxqLgg0H-", :text "on-submit", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "Hk-2e9IglCrW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkG2lqIxe0SW", :text "username", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r172xqLexCr-", :text "password", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SkEhlqIegRB-", :text "signup?", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "SyB2gqIleArb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJLhecIxg0rb", :text "fn", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "HJDne5LgxASZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJOnxqUxx0Sb", :text "e", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJK2xcLglCHZ", :text "dispatch!", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "BJ93x98gg0rW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkshx5Lgx0HZ", :text "dispatch!", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "By22eqIxxRB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkT3gqIlgArb", :text "if", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SJR3gqLegCr-", :text "signup?", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "r11Te5UxgABZ", :text ":user/sign-up", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "r1l6e5IgxCBb", :text ":user/log-in", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "By-Tx58xgRSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1GTxcIleAHb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Hy7ax5LexRHb", :text "username", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "S1E6l9Lle0r-", :text "password", :by "root", :at 1500541010211} + } + } + } + } + "v" { + :type :expr, :id "BySax58xgRBb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJ8Te9IgeABZ", :text ".setItem", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rkPpe9IglASZ", :text "js/localStorage", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "ryO6eq8ex0r-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1Kal58gl0HZ", :text ":storage-key", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ry5alqLglAr-", :text "config/site", :by "root", :at 1527788909281} + } + } + "v" { + :type :expr, :id "Hyj6eqIle0S-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkhaecLxlRBW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Hk6al98leAHZ", :text "username", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "BJ0Te9LexCHZ", :text "password", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "Bkajg9LggCH-", :by nil, :at 1500541010211 + :data {} + } + } + "app.comp.missing" { + :ns { + :type :expr, :by "root", :at 1539099122986, :id "I3MhrP2hhq" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "ns", :id "kEOe5cJ8Sy"} + "j" {:type :leaf, :by "root", :at 1539099122986, :text "app.comp.missing", :id "m4xldo-v-X"} + "r" { + :type :expr, :by "root", :at 1539099122986, :id "1FonX6RebK" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text ":require", :id "wAABgxTmqb"} + "j" { + :type :expr, :by "root", :at 1539099122986, :id "rrL4tglumu" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "[]", :id "KpDeUEtVvf"} + "j" {:type :leaf, :by "root", :at 1539099122986, :text "hsl.core", :id "t_-3WyVCNq"} + "r" {:type :leaf, :by "root", :at 1539099122986, :text ":refer", :id "Vjmn4TjDIG"} + "v" { + :type :expr, :by "root", :at 1539099122986, :id "LrgtPqhoYo" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "[]", :id "-XZTyD6Qp0"} + "j" {:type :leaf, :by "root", :at 1539099122986, :text "hsl", :id "Z5iikTaXVA"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099122986, :id "xmIO-9SHqW" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "[]", :id "KegBVVPUrQ"} + "j" {:type :leaf, :by "root", :at 1539099122986, :text "respo-ui.core", :id "dp_PYrAJfc"} + "r" {:type :leaf, :by "root", :at 1539099122986, :text ":as", :id "H0Nm1yuyPO_"} + "v" {:type :leaf, :by "root", :at 1539099122986, :text "ui", :id "NJriCanjziI"} + } + } + "v" { + :type :expr, :by "root", :at 1539099122986, :id "YmsvZ2nKELa" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "[]", :id "MAEsPAs37bc"} + "j" {:type :leaf, :by "root", :at 1539099122986, :text "respo.macros", :id "zBxD8wb1VhO"} + "r" {:type :leaf, :by "root", :at 1539099122986, :text ":refer", :id "Puvbxi0jQba"} + "v" { + :type :expr, :by "root", :at 1539099122986, :id "0SEVjfygHQo" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "[]", :id "hKRzJICW__U"} + "j" {:type :leaf, :by "root", :at 1539099122986, :text "defcomp", :id "qOHMtUR0vUH"} + "r" {:type :leaf, :by "root", :at 1539099122986, :text "<>", :id "nMI9i4EyDky"} + "v" {:type :leaf, :by "root", :at 1539099122986, :text "span", :id "HqsKiSOFho8"} + "x" {:type :leaf, :by "root", :at 1539099122986, :text "div", :id "oANDORQvCgW"} + } + } + } + } + } + } + } + } + :defs { + "comp-missing" { + :type :expr, :by "root", :at 1539099122986, :id "nubjTwXsplb" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "defcomp", :id "ZUg8gQg--0P"} + "j" {:type :leaf, :by "root", :at 1539099122986, :text "comp-missing", :id "oglZHPQtLSf"} + "r" { + :type :expr, :by "root", :at 1539099122986, :id "i6GCOTmDazo" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "router", :id "lZj72PzUFKN"} + } + } + "v" { + :type :expr, :by "root", :at 1539099122986, :id "uNhWaWP2j-b" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "div", :id "2RQDhLpdJKG"} + "j" { + :type :expr, :by "root", :at 1539099122986, :id "2hTzAc9qwG_" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "{}", :id "jcJoxnYf3UQ"} + } + } + "r" { + :type :expr, :by "root", :at 1539099122986, :id "Upr9IxKe-ZQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "<>", :id "A0jBuMCEoXI"} + "j" {:type :leaf, :by "root", :at 1539099122986, :text "|Page missing", :id "y1Ej4kKMxXM"} + } + } + "v" { + :type :expr, :by "root", :at 1539099122986, :id "lq7x4fxWSRd" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "div", :id "Yf-CCz5ojpQ"} + "j" { + :type :expr, :by "root", :at 1539099122986, :id "KGgusJCsKPV" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "{}", :id "30j3lZP8foY"} + "j" { + :type :expr, :by "root", :at 1539099122986, :id "vS9AcXws028" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text ":style", :id "OmEiz7-Mh_O"} + "j" { + :type :expr, :by "root", :at 1539099122986, :id "TPshBgjbiNS" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "{}", :id "H4WSwffLjJI"} + "j" { + :type :expr, :by "root", :at 1539099122986, :id "j8B-7y1obAi" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text ":font-family", :id "JWoSsb2D7s8"} + "j" {:type :leaf, :by "root", :at 1539099122986, :text "ui/font-code", :id "AkDpoW3PTtR"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099122986, :id "h4rZag0h6gJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099122986, :text "<>", :id "Yh5NlQzR6E0"} + "j" {:type :leaf, :by "root", :at 1539099122986, :text "router", :id "53W6SncYMht"} + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539099122986, :id "u07JymfGXau" + :data {} + } + } + "app.comp.navigation" { + :ns { + :type :expr, :id "BkUXGcUegABW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1DXG98elCSb", :text "ns", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HkO7fcLel0SZ", :text "app.comp.navigation", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "S1HVf5UxlRHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} + } + } + } + } + "r" { + :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547394445} + "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} + } + } + "w" { + :type :expr, :by "root", :at 1523120376505, :id "BkxlWtdUjM" + :data { + "T" {:type :leaf, :by "root", :at 1523120376949, :text "[]", :id "BkxlWtdUjMleaf"} + "j" {:type :leaf, :by "root", :at 1523120379036, :text "respo.comp.space", :id "Sk--WFuIoG"} + "r" {:type :leaf, :by "root", :at 1523120382218, :text ":refer", :id "By4XbFu8oG"} + "v" { + :type :expr, :by "root", :at 1523120382545, :id "r1DWtdUjM" + :data { + "T" {:type :leaf, :by "root", :at 1523120382719, :text "[]", :id "SJEUbFOLjG"} + "j" {:type :leaf, :by "root", :at 1523120383255, :text "=<", :id "BkGPZKu8oM"} + } + } + } + } + "x" { + :type :expr, :id "SkVQg5h1z", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} + "t" {:type :leaf, :by "root", :at 1521951545529, :text "action->", :id "ByeeHmjE5f"} + "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} + "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} + } + } + } + } + "y" { + :type :expr, :by "B1y7Rc-Zz", :at 1536561755369, :id "3JW2PGwjK4" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536561755369, :text "[]", :id "3Q4lXqy0N7"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1536561755369, :text "app.config", :id "Y_HhVDj3zn"} + "r" {:type :leaf, :by "B1y7Rc-Zz", :at 1536561758845, :text ":as", :id "D0d_mzNKRn"} + "v" {:type :leaf, :by "B1y7Rc-Zz", :at 1536561761903, :text "config", :id "sJXt922sWs"} + } + } + } + } + } + } + :defs { + "comp-navigation" { + :type :expr, :id "Bk2vfqUxl0BZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sy6DG9UglCrb", :text "defcomp", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJRPfqLgxArb", :text "comp-navigation", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "H11df58le0Bb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJxuzcLle0S-", :text "logged-in?", :by "root", :at 1500541010211} + "j" {:type :leaf, :by "root", :at 1523120365880, :text "count-members", :id "r1W-lK_Lsz"} + } + } + "v" { + :type :expr, :id "rkW_zqUxlCrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJM_fc8elAHW", :text "div", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "H1QdzqLge0SW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJNOG5LleABZ", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SyBufq8elAHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkUOfqIxxRS-", :text ":style", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "r1vdGcUglRr-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1u_z9Ixe0HZ", :text "merge", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1YdfcUxxCB-", :text "ui/row-center", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "BkAw7iE5z", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Byb2zcIlx0SW", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "Byz3z9UxgCBb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJQ2f5LglCSb", :text ":height", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SyEnGqLggRSZ", :text "48", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "BJO3GqIex0Bb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJY3GqLxgAHb", :text ":justify-content", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1qhGq8leCSW", :text ":space-between", :by "root", :at 1500541010211} + } + } + "x" { + :type :expr, :id "S1s3M5LglCr-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sy3nMqLexRBW", :text ":padding", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1a2M5LleAH-", :text "|0 16px", :by "root", :at 1500541010211} + } + } + "y" { + :type :expr, :id "SJR2MqIlx0S-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkkpfcUxeCHb", :text ":font-size", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SJeazq8llABZ", :text "16", :by "root", :at 1500541010211} + } + } + "yT" { + :type :expr, :by "root", :at 1519314625999, :id "Bkl9pLP2Pf" + :data { + "T" {:type :leaf, :by "root", :at 1519314630138, :text ":border-bottom", :id "Bkl9pLP2Pfleaf"} + "j" { + :type :expr, :by "root", :at 1519314630743, :id "rkgy08vnwf" + :data { + "T" {:type :leaf, :by "root", :at 1519314632214, :text "str", :id "SJk0UDhDG"} + "j" {:type :leaf, :by "root", :at 1519314635000, :text "|1px solid ", :id "rJEl08P3wf"} + "r" { + :type :expr, :by "root", :at 1519314635976, :id "SyxNRUw2Pz" + :data { + "T" {:type :leaf, :by "root", :at 1519314636519, :text "hsl", :id "BJVRIPnvM"} + "j" {:type :leaf, :by "root", :at 1519314637558, :text "0", :id "SklrAUwhvz"} + "r" {:type :leaf, :by "root", :at 1519314637788, :text "0", :id "HJeIRIwnPG"} + "v" {:type :leaf, :by "root", :at 1519314638678, :text "0", :id "ByMUC8vnPM"} + "x" {:type :leaf, :by "root", :at 1519314643853, :text "0.1", :id "HkgD0IwhPM"} + } + } + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1519314651278, :id "B1-mkPw2DG" + :data { + "T" {:type :leaf, :by "root", :at 1519314653842, :text ":font-family", :id "B1-mkPw2DGleaf"} + "j" {:type :leaf, :by "root", :at 1519314661374, :text "ui/font-fancy", :id "Bkg81wD2wz"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "Bkj_M9LlxCHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hk3dfcUex0rW", :text "div", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BJT_z5UgeRB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkCufcIex0rb", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BkxztoJgmz", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJVtzcUllCSW", :text ":on-click", :by "root", :at 1514302328636} + "j" { + :type :expr, :id "HyloNmsVcf", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1iaGcIexAHZ", :text "action->", :by "root", :at 1521951542710} + "j" {:type :leaf, :id "H126zqIglRB-", :text ":router/change", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "Sy6pz58llCrW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJRaG9IxlAB-", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BJk0zq8xxCr-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJg0MqUxe0r-", :text ":name", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SyWCG5IlgAS-", :text ":home", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "ByIFGc8leCBW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BywKzqUegArW", :text ":style", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "B1BEXo45f", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HydPGq8xeRBb", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "B1FvfqIxgAS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJ9wM98lg0B-", :text ":cursor", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rkjwMc8xl0Sb", :text ":pointer", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "rJYKf5Leg0BW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rycKz9UxxABZ", :text "<>", :by "root", :at 1500541010211} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1536561771096, :id "PJz4UIM8Cy" + :data { + "T" {:type :leaf, :id "SJsFG98lxASW", :text ":title", :by "B1y7Rc-Zz", :at 1536561772481} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1536561776186, :text "config/site", :id "IpyFO2t-G"} + } + } + "v" {:type :leaf, :id "SyTtGq8xeASb", :text "nil", :by "root", :at 1500541010211} + } + } + } + } + "v" { + :type :expr, :id "H10FM9IeeRBb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ByyqzcUglRHZ", :text "div", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rkl5GcLglABW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HybqMqUge0SW", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BkfcMq8ge0HZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkX5G5Ueg0rW", :text ":style", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SybUXoVcf", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyYjz9UgxCrZ", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "B1ciG9UlxRrW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJjozqIgl0Sb", :text ":cursor", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BknsM58xxRrW", :text "|pointer", :by "root", :at 1500541010211} + } + } + } + } + } + } + "r" { + :type :expr, :id "SJeLFokgXG", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hkc5MqUgeCBb", :text ":on-click", :by "root", :at 1514302332444} + "j" { + :type :expr, :id "SkwUXjN5z", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyvLfcIelAHb", :text "action->", :by "root", :at 1521951570434} + "j" {:type :leaf, :id "r1_8fqLxgRHZ", :text ":router/change", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "S1KIfc8xx0Sb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJqIM5LexCH-", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SyjIfc8ggAHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJ3LM5LgxABb", :text ":name", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJT8GqIgxRr-", :text ":profile", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "Hkhcfq8gx0Sb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJ69McLelASZ", :text "<>", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "ByysG5UgxABb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkesM9IllRBZ", :text "if", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1bjz98xxRSb", :text "logged-in?", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "Syziz98ggAS-", :text "|Me", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "Hk7izqLel0rb", :text "|Guest", :by "root", :at 1500541010211} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1523120369216, :id "BkeFgYdUif" + :data { + "T" {:type :leaf, :by "root", :at 1523120369974, :text "=<", :id "BkeFgYdUifleaf"} + "j" {:type :leaf, :by "root", :at 1523120371053, :text "8", :id "S1lcgFd8if"} + "r" {:type :leaf, :by "root", :at 1523120371555, :text "nil", :id "HyeogYO8jM"} + } + } + "x" { + :type :expr, :by "root", :at 1523120371997, :id "Hk-2xtuUjf" + :data { + "T" {:type :leaf, :by "root", :at 1523120372630, :text "<>", :id "Hk-2xtuUjfleaf"} + "j" {:type :leaf, :by "root", :at 1523120373023, :text "count-members", :id "HkZpxFdIiM"} + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "SJ1Uz9LeeAB-", :by nil, :at 1500541010211 + :data {} + } + } + "app.comp.process" { + :ns { + :type :expr, :by "root", :at 1539099135480, :id "2DtTnigzz7" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "ns", :id "KyPhjKfHmT"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "app.comp.process", :id "GWzZa4zajX"} + "r" { + :type :expr, :by "root", :at 1539099135480, :id "8TOe2wAK3E" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":require", :id "VIFNPEhep-"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "hymNOtsbKb" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "[]", :id "5JUJkkGE9m"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "hsl.core", :id "BabpWRjf3k"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text ":refer", :id "mK7OSnq7_g"} + "v" { + :type :expr, :by "root", :at 1539099135480, :id "rV9j0L4CZD" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "[]", :id "WyNNOij9CX"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "hsl", :id "HvOLICGWDL"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "gWhJK4dicA" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "[]", :id "H4hLmsLFoQ"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "respo-ui.core", :id "QnKB25K2hu"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text ":as", :id "ufM0ceryMEg"} + "v" {:type :leaf, :by "root", :at 1539099135480, :text "ui", :id "YUjhvuJYQeq"} + } + } + "v" { + :type :expr, :by "root", :at 1539099135480, :id "MMzjrlQPU30" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "[]", :id "yPlNTSxWmjH"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "respo-ui.colors", :id "GrtCTYxkOLZ"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text ":as", :id "Yrdm6YYYjiZ"} + "v" {:type :leaf, :by "root", :at 1539099135480, :text "colors", :id "tD1VPvMD0J4"} + } + } + "x" { + :type :expr, :by "root", :at 1539099135480, :id "IJxXThizvWZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "[]", :id "08iHkFqZh4c"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "respo.comp.space", :id "rpzcOzrC5cH"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text ":refer", :id "mTEX1SttBc4"} + "v" { + :type :expr, :by "root", :at 1539099135480, :id "ptIBQWMSSAM" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "[]", :id "cyww7oP7msi"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "=<", :id "-fHpoCKFFLA"} + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099135480, :id "HpsEzuu0jB1" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "[]", :id "H71n_f0Hdvt"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "respo.macros", :id "IeS-cQGNKMi"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text ":refer", :id "LWKCPY3ZpWt"} + "v" { + :type :expr, :by "root", :at 1539099135480, :id "aoQKVXZXfSb" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "[]", :id "viy6PHG8j6W"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "defcomp", :id "5fZVcfkaftJ"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text "list->", :id "8Wzoa2mnk5W"} + "v" {:type :leaf, :by "root", :at 1539099135480, :text "action->", :id "VgN64aq3ddA"} + "x" {:type :leaf, :by "root", :at 1539099135480, :text "<>", :id "K3V_g8F-BIN"} + "y" {:type :leaf, :by "root", :at 1539099135480, :text "span", :id "osh91bBqveS"} + "yT" {:type :leaf, :by "root", :at 1539099135480, :text "div", :id "Z2jahw1dYb1"} + "yj" {:type :leaf, :by "root", :at 1539099135480, :text "button", :id "yOgrWYrb-da"} + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099135480, :id "iBdt17ygoFH" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "[]", :id "hho_a0p6Fvf"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "app.style", :id "_C-JTIqai9D"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text ":as", :id "vhnvg-psXZ8"} + "v" {:type :leaf, :by "root", :at 1539099135480, :text "style", :id "Vx95OqAtCft"} + } + } + "yj" { + :type :expr, :by "root", :at 1539099135480, :id "EuCqnMUCD12" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "[]", :id "9cERvUCxU2F"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "app.util", :id "6PI8kdfe8_9"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text ":refer", :id "u-tdkSjysVL"} + "v" { + :type :expr, :by "root", :at 1539099135480, :id "b4o3fQJEs8V" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "[]", :id "IJqCqp5f9oe"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "map-with-index", :id "FzKMCW6cucb"} + } + } + } + } + } + } + } + } + :defs { + "comp-process" { + :type :expr, :by "root", :at 1539099135480, :id "HgV5A2CEkCQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "defcomp", :id "o_BeNPc10iW"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "comp-process", :id "sEbVBFEHLMi"} + "r" { + :type :expr, :by "root", :at 1539099135480, :id "EoWOlCrBMow" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "process", :id "ptCFkeuTbaB"} + } + } + "v" { + :type :expr, :by "root", :at 1539099135480, :id "dCTTTKPRL-O" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "div", :id "VgB7smKtstq"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "-7i5wvskwyD" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "3ha9R5uo5lA"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "lTYLXTqHHex" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":style", :id "HreBigBDs-9"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "UjXS-mzCQ78" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "0Ws5bhl2vpF"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "zW9YjfuQ4a_" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":padding", :id "uZKEq7oCLVF"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "8", :id "7-rtDvJejsg"} + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "fDPy9wZ0LwB" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":margin", :id "7irvEpmOrcf"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "8", :id "4lWJNL0Xiy1"} + } + } + "v" { + :type :expr, :by "root", :at 1539099135480, :id "211ePkv0yhA" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":font-family", :id "L4ypDsHn_gX"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "ui/font-code", :id "LkYpew4XVK9"} + } + } + "x" { + :type :expr, :by "root", :at 1539099135480, :id "YHeCThsJ7ss" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":background-color", :id "Zjapb2yXRqt"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "RR7hRUIGxCe" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "if", :id "KbawkU78nvr"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "Ehpo_RUqJ72" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":alive? process", :id "wi4I5h5WS7G"} + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "Ssr2jyyOxJM" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "hsl", :id "C0qYBzeu8-u"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "120", :id "FDKUb_CTZUU"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text "100", :id "zi5JKKv0NSW"} + "v" {:type :leaf, :by "root", :at 1539099135480, :text "90", :id "bUs41Z1DZhL"} + } + } + "v" { + :type :expr, :by "root", :at 1539099135480, :id "5q6OGOP4CeI" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "hsl", :id "2qEYxiqq-lH"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "240", :id "psgMfjJLbHa"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text "50", :id "uT26BGg4dXX"} + "v" {:type :leaf, :by "root", :at 1539099135480, :text "98", :id "0x2BDFXPVtT"} + } + } + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "aFbV03zO-ql" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "div", :id "56gzqpZeClX"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "OrW6euGfR4B" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "RaSGyrDTeSe"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "IXB_9-Jq_gu" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":style", :id "Q-NTeY1QtN2"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "rgOXcs9mFSt" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "merge", :id "L_7e098UTia"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "ui/row", :id "NDatx9ksh_2"} + "r" { + :type :expr, :by "root", :at 1539099135480, :id "7vpe96WnMjj" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "ktRXXI4sJIk"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "2JTmB5WFTAq" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":align-items", :id "v4iw1fdmuio"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text ":center", :id "ExoRSBaxjJz"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "-wnxo07-6n2" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "<>", :id "lBtnd97Fe9s"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "ydMO_yCTaad" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":command", :id "BEHeRV5p90J"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "process", :id "JzbE4SW3en_"} + } + } + } + } + "t" { + :type :expr, :by "root", :at 1539100441290, :id "n6X5jUHly6" + :data { + "T" {:type :leaf, :by "root", :at 1539100442163, :text "=<", :id "n6X5jUHly6leaf"} + "j" {:type :leaf, :by "root", :at 1539100442846, :text "8", :id "4w4flM81c"} + "r" {:type :leaf, :by "root", :at 1539100443421, :text "nil", :id "d2aVb3cFoT"} + } + } + "v" { + :type :expr, :by "root", :at 1539099135480, :id "9H9NB2CrDOK" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "span", :id "iTPQQkcofhC"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "IlaZylPfMSv" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "uuor-yTvqZC"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "EXn8fL3xvff" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":on-click", :id "5p6BiGef9pB"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "zbhTzhUS4uU" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "action->", :id "ivtWiofeG8P"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text ":router/change", :id "C_9biCMZglF"} + "r" { + :type :expr, :by "root", :at 1539099135480, :id "yKIkWTx65uf" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "v3hfIm6KuEd"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "ULMPkuPV8Gv" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":name", :id "lZ7jO2FSG_t"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text ":process", :id "-O8Dy3YiX3V"} + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "Qr66e-x4fOp" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":params", :id "DHaabE3dHhl"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "4YawivTXpnN" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "58d2EjB1WSk"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "cT6mnbi9kQa" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":id", :id "Gy8_xJbsV-M"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "4Ijvke2QjV0" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":pid", :id "TrsUnQn4-zm"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "process", :id "2Yixy8FyJ3I"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "HC-4JAQbjmF" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "<>", :id "w0DPPbnbDSJ"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "|view", :id "2ZOm3gYgYhM"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text "style/link", :id "tDPQUQO6459"} + } + } + } + } + "w" { + :type :expr, :by "root", :at 1539100445367, :id "xRu3oGu317" + :data { + "T" {:type :leaf, :by "root", :at 1539100445367, :text "=<", :id "2t0BzbIKMa"} + "j" {:type :leaf, :by "root", :at 1539100445367, :text "8", :id "un3haFMPFC"} + "r" {:type :leaf, :by "root", :at 1539100445367, :text "nil", :id "g_L1tSrU9T"} + } + } + "x" { + :type :expr, :by "root", :at 1539099135480, :id "L3Rhjbwnggi" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "if", :id "0JZte3zf1P4"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "Yv_orG0Sqfr" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":alive?", :id "v7xEWs5OTBf"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "process", :id "Br9-zpPMOh9"} + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "wmkyER9VXj1" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "button", :id "0Fxb_AYXwQj"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "dKzS5M8NSPq" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "wpv_q8ti1UV"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "BSFF0bl3YnQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":style", :id "fJ4IX0R48S4"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "style/button", :id "TfgfWf1uMCA"} + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "aKdghL8pDti" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":on-click", :id "HklQTSdaZ1h"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "4dpQo8Z6pDX" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "action->", :id "5jYn6mC4-DI"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text ":effect/kill", :id "B1TGxECOiGb"} + "r" { + :type :expr, :by "root", :at 1539099135480, :id "qvqKfLkX8XI" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":pid", :id "iNLbaBlhwGQ"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "process", :id "BxXrAvIOmSz"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "m_KqCswXobn" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "<>", :id "zylffJdOm0v"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "|Kill", :id "vjnCGWHuGCV"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099135480, :id "ieNGz5It2Fp" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "button", :id "7ai_ZI0ffPo"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "JQWBjnkH7XI" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "UCdv0vx_JcP"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "hXtfb8hhxKw" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":style", :id "LUJOR3GgBg4"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "style/button", :id "w_0OPaI6tli"} + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "bUGzT59dbWI" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":on-click", :id "AhB4SRhEqW8"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "exAkg3_B5wE" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "action->", :id "pP_m7Xm-8m4"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text ":effect/run", :id "j8Oq5pKf3HU"} + "r" { + :type :expr, :by "root", :at 1539099135480, :id "HENeh2AQqmI" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "cCbOwRqTHaG"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "ufefzEP_YmG" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":cwd", :id "tqnbRSvqQqJ"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "aTtcqBITv3o" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":cwd", :id "1QgeULt7a_A"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "process", :id "2sSQJEUN-hg"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "qpuKLXUMg9t" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":command", :id "71vHZMeF4ss"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "iWTjuy9hKAJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":command", :id "UH5Eb71_5Dw"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "process", :id "N4EIToPrl6m"} + } + } + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "K4R0dfPofM9" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "<>", :id "elO8O7I2MSk"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "|Redo", :id "lqJXgs9T9y0"} + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099135480, :id "dIPoOm3RsMB" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "list->", :id "IPE-piwsbA0"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "fokZqVvav1V" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "cDW7rfRU9r8"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "12l5buyX3mv" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":style", :id "3sOEcUNnUnd"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "B4l3gl1ikrf" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "9lXd5jducaG"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "_wF1vnpXOGZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":font-family", :id "UTpy2gOT7r5"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "ui/font-code", :id "wd_LCidnxmV"} + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "gfbEGDH_74P" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":white-space", :id "0Rl3Oz5g_ti"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text ":pre", :id "ePT4M14tM91"} + } + } + "v" { + :type :expr, :by "root", :at 1539099135480, :id "MOvC7jipRca" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":font-size", :id "Bm6iEdtoh6T"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "12", :id "12o87WyMksM"} + } + } + "x" { + :type :expr, :by "root", :at 1539099135480, :id "KnDbS-unuo1" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":line-height", :id "C7l6HZ9YEl_"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "|1.5em", :id "fkla3OrU2Yv"} + } + } + "y" { + :type :expr, :by "root", :at 1539099135480, :id "C7zWAgD5lEU" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":max-height", :id "Uc2G9xxK8TG"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "400", :id "vdqfE25l5Hy"} + } + } + "yT" { + :type :expr, :by "root", :at 1539099135480, :id "mmNvm7laZtl" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":max-width", :id "QIetZbyZNcL"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "800", :id "p71ct4Dmp8H"} + } + } + "yj" { + :type :expr, :by "root", :at 1539099135480, :id "pmnJgNOsn4i" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":overflow", :id "-XhEJctAVQ_"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text ":auto", :id "TE3tSZ_sVkm"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "idSrYCkYx36" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "->>", :id "4OIdnogKBd0"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "oGTvKyhN9H-" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":content", :id "LJXniyITRH_"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "process", :id "KQfcm2fvn51"} + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "ZhLdG7kznfy" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "take-last", :id "mBneoAedXr7"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "4", :id "CZKCVoin1S2"} + } + } + "v" { + :type :expr, :by "root", :at 1539099135480, :id "G3wHiCiXq2u" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "map-with-index", :id "KKdb22K9-6l"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "b-pR8Czvs9Y" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "fn", :id "ziNaZapz4R5"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "r0phmMJshzG" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "chunk", :id "bry3XoDwlwF"} + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "zBw9UyvcaRC" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "<>", :id "qIbt2Lie36V"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "-iudsNMrajs" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":data", :id "gSJLk9Zakkw"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "chunk", :id "7FBdxANJT5L"} + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "VwpFH2CegsO" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "{}", :id "M62dN87acmn"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "2gS7FKa86ii" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":color", :id "8le1-b4fvPv"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "8UaGEE67ZrI" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "case", :id "NRwBk0V9fNe"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "s13fsbYKGgU" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":type", :id "VwNt3Jz7Ckj"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "chunk", :id "v2TBSPlniI1"} + } + } + "r" { + :type :expr, :by "root", :at 1539099135480, :id "M2N_rjwqlk0" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":stderr", :id "XT4DRo42ODv"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "Tiag6ylJrdv" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "hsl", :id "wpw5UICox2Y"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "60", :id "9zoqJM7Dpfg"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text "80", :id "f9B-i4fOI1x"} + "v" {:type :leaf, :by "root", :at 1539099135480, :text "36", :id "shdhBLcqFTk"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099135480, :id "hwOAxefMX29" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text ":error", :id "_lYZpX-impb"} + "j" { + :type :expr, :by "root", :at 1539099135480, :id "-KWLtHNxzjeJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "hsl", :id "3eQ_SGST2puS"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "0", :id "7b14Txk9aFPj"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text "80", :id "YbmoUyGk5DO0"} + "v" {:type :leaf, :by "root", :at 1539099135480, :text "50", :id "qT0Acl6AfXjb"} + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539099135480, :id "R_yO5jZ5oX1B" + :data { + "T" {:type :leaf, :by "root", :at 1539099135480, :text "hsl", :id "nmVZiv27BRxm"} + "j" {:type :leaf, :by "root", :at 1539099135480, :text "60", :id "5Ekk3Qi0LCmR"} + "r" {:type :leaf, :by "root", :at 1539099135480, :text "0", :id "GOw3VY0CYJQa"} + "v" {:type :leaf, :by "root", :at 1539099135480, :text "0", :id "Y8YU1nMoVv64"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539099135480, :id "LaJ7_eebvs2" + :data {} + } + } + "app.comp.process-detail" { + :ns { + :type :expr, :by "root", :at 1539099152080, :id "-onc7DhIpi" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "ns", :id "yzy7jkTidh"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "app.comp.process-detail", :id "LNqtJiybnb"} + "r" { + :type :expr, :by "root", :at 1539099152080, :id "ygkYHLmQNd" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":require", :id "5lAy-lxWzS"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "6mMuVBXyTX" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "[]", :id "WC2CH1M0c1"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "hsl.core", :id "Lm7RemeO9_"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text ":refer", :id "0j1i-U42JR"} + "v" { + :type :expr, :by "root", :at 1539099152080, :id "-Aa5THw8Ir" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "[]", :id "EkYkvvoKGv"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "hsl", :id "lW8Ter8gFu"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "kJxA7QUJd3" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "[]", :id "YxcSBaAjxC"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "respo-ui.core", :id "NU4XJfxmZR"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text ":as", :id "ogGOB8FS6GH"} + "v" {:type :leaf, :by "root", :at 1539099152080, :text "ui", :id "KOnrzEMI9NC"} + } + } + "v" { + :type :expr, :by "root", :at 1539099152080, :id "cr4Aqa1PMjl" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "[]", :id "Dd-nNSfmDB2"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "respo-ui.colors", :id "8oVIChnmtcQ"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text ":as", :id "gXA43roN9v7"} + "v" {:type :leaf, :by "root", :at 1539099152080, :text "colors", :id "zq-yEcc5mGz"} + } + } + "x" { + :type :expr, :by "root", :at 1539099152080, :id "_SB0fZgfImS" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "[]", :id "cm7zqBqyxxt"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "respo.macros", :id "kMOVsOhnZVJ"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text ":refer", :id "GOAJ1Iqx-g7"} + "v" { + :type :expr, :by "root", :at 1539099152080, :id "iv3kMordWyP" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "[]", :id "dHXDuI1uNUl"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "defcomp", :id "GuNsDSP4dvB"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text "<>", :id "Zf0SPWAKQLK"} + "v" {:type :leaf, :by "root", :at 1539099152080, :text "action->", :id "11ouPsDtHfP"} + "x" {:type :leaf, :by "root", :at 1539099152080, :text "span", :id "fnnc-LcDIUn"} + "y" {:type :leaf, :by "root", :at 1539099152080, :text "div", :id "OFe-TG363uG"} + "yT" {:type :leaf, :by "root", :at 1539099152080, :text "pre", :id "PltPNPka_Q4"} + "yj" {:type :leaf, :by "root", :at 1539099152080, :text "list->", :id "LhPHZ50JXbU"} + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099152080, :id "-CJhMnyIC9P" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "[]", :id "PnAhdxgrJKC"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "respo.comp.space", :id "MbWoY8EW-g7"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text ":refer", :id "avFR6NuEe34"} + "v" { + :type :expr, :by "root", :at 1539099152080, :id "13rI45xFkTp" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "[]", :id "hdb2XMDG8HQ"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "=<", :id "PRpWlZh1vb2"} + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099152080, :id "WY84642_1IK" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "[]", :id "gWPRPDpRdvU"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "app.util", :id "paTFxVc7ORe"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text ":refer", :id "rdtPjZ28ydd"} + "v" { + :type :expr, :by "root", :at 1539099152080, :id "FgHQ2nAknkI" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "[]", :id "3UPsuVS1Wi1"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "map-with-index", :id "I3G5JVRck8b"} + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1539099152080, :id "dwQ8-kv3eeZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "[]", :id "vyLAGIEWFFC"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "app.style", :id "y6MGtuFdg9L"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text ":as", :id "xBIPIRiQq8y"} + "v" {:type :leaf, :by "root", :at 1539099152080, :text "style", :id "xZ2-CbfIocS"} + } + } + } + } + } + } + :defs { + "comp-process-detail" { + :type :expr, :by "root", :at 1539099152080, :id "u6kLV2L_G_h" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "defcomp", :id "8HhDaXUfvno"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "comp-process-detail", :id "AVnHkjDA-xJ"} + "r" { + :type :expr, :by "root", :at 1539099152080, :id "oN0pCxNx-tR" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "process", :id "5OXS1qe4P0_"} + } + } + "v" { + :type :expr, :by "root", :at 1539099152080, :id "vbfs1LPPdwm" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "div", :id "ZG-Ywll7OV9"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "2KvxOp0wVby" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "kC4Sm6ivcM2"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "_StEewDCqfz" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":style", :id "7shVe31aLrO"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "NLoMzKUsAW7" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "X_WF1eEQjGQ"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "jUQiFPWEcAn" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":padding", :id "E-NAO3N4-LX"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "|8px 16px", :id "pSkzeXMcC3A"} + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "wd3Lgr4z6sk" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":overflow", :id "UEzJd1_AJ8x"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text ":auto", :id "ZfvoSx2w-uZ"} + } + } + "v" { + :type :expr, :by "root", :at 1539099152080, :id "UAvZpiepk18" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":flex", :id "O4dx8aPpwiX"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "1", :id "DbEtbVsd6c-"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "mIyE2UT7LoS" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "div", :id "TxOa79JUlXY"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "7Ot4S5wjYLI" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "FreCXOaIR3Z"} + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "D76JZrokusn" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "<>", :id "IvY1erKKox7"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "5Pjr4roCobS" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":command", :id "huDIWYeSJCe"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "process", :id "V-6JToCzyHK"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099152080, :id "sE_QJp-9FxC" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "=<", :id "UQWuasEXnkl"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "8", :id "iklVTJxJ4F_"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text "nil", :id "q3byr4v6hDy"} + } + } + "x" { + :type :expr, :by "root", :at 1539099152080, :id "0OYEfvj0PZr" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "<>", :id "de5nsh_UQIk"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "nlJAj1PX4N4" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":cwd", :id "BjlDmjJXb_4"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "process", :id "6KKw61ifBfb"} + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099152080, :id "92T1rthxuf0" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "=<", :id "aOfgOCqwZIl"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "8", :id "6BUlkgjk6G9"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text "nil", :id "_C9tF-n1qVk"} + } + } + "yT" { + :type :expr, :by "root", :at 1539099152080, :id "L4INkDW_Jha" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "<>", :id "A-pTYfR4zUr"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "QH3oe4w9cSJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":pid", :id "kwFs5W7mFTI"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "process", :id "QlLhV3hv6g9"} + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1539099152080, :id "qUnmmKBOrPh" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "=<", :id "6bnRpkz22Gh"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "8", :id "TCZWAZX51ku"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text "nil", :id "B43GSXF_Iw4"} + } + } + "yr" { + :type :expr, :by "root", :at 1539099152080, :id "x7OhZuG6dBG" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "if", :id "ht1-hzAoIWD"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "W6jshexYkWK" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "not", :id "mnKoFCLCx7j"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "SA89jHtPZO8" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "empty?", :id "zKVW-lpK0Rt"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "8duY74RtPKM" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":content", :id "TVs0SQO55T5"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "process", :id "iSjCfDBel4S"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "K9bvcF-g3A-" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "div", :id "KmWaX1FbU0P"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "joxjH3RRbZ4" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "IAPnxWTkjc2"} + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "DBvWMkzlf7x" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "span", :id "nwzW0NpC9nJ"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "c5MzfobLwZt" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "E_u8NovPQ4X"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "3hLbqZLLgho" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":on-click", :id "KR0z-TWjbHs"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "jx-QLeCrYjm" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "action->", :id "igith22UEOq"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text ":process/shorten-content", :id "4yAiLo7_IFD"} + "r" { + :type :expr, :by "root", :at 1539099152080, :id "BGGW9U9Nwfm" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":pid", :id "FB-Oswb-flo"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "process", :id "MimyhQ8Jghw"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "HN7DnzBqXmX" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "<>", :id "z_xximjC9AA"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "|Shorten", :id "GkKhql53ZMk"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text "style/link", :id "Ul8fDlFn7VP"} + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099152080, :id "95X7uDOaVAz" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "div", :id "SJPCfdCWgKr"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "ZKnc5RCR8Q-" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "NVlahplcz0q"} + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539099152080, :id "BfeLD1wBdyP" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "list->", :id "G4DD1q9VS9H"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "1ZqCbb73I5d" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "l6NiomMsg54"} + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "bLyiQWwwlT_" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "->>", :id "pTFR5Qk1O3k"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "RYtyIN90Tke" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":content", :id "jEk1PLIpGI7"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "process", :id "z_ADPo1E_RT"} + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "uFPZ1tfW1qg" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "map-with-index", :id "3lpd-eHp0Iv"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "S7IyY1WLpS9" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "fn", :id "GW3gYWpkDpF"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "xweBa_cY3Lr" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "chunk", :id "1QFYIedewXD"} + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "cMMq0p1HsXK" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "div", :id "1jZ5-WJ_Ykf"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "6iHhEUVx8fb" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "KuBIJnibNBZ"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "DDrTFlsPSyi" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":style", :id "mI4CjWKQwNA"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "NC_k9MPIkwH" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "uQdfq1_BS-K"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "bNFyvksT6pa" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":border", :id "23qV-UoIAEw"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "izl4gONc2Yh" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "str", :id "N4ZtpQ8SuXd"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "|1px solid ", :id "Hau1R_Q26YJ"} + "r" { + :type :expr, :by "root", :at 1539099152080, :id "ZODDiR4vhjB" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "hsl", :id "YArNHk9oSkq"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "0", :id "UxZNg4Qnpzy"} + "r" {:type :leaf, :by "root", :at 1539099152080, :text "0", :id "UFyx1aFihZg"} + "v" {:type :leaf, :by "root", :at 1539099152080, :text "80", :id "sVHPIm7A37Q"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "n6-ovd0mMm1" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":padding", :id "qRR1Oi4_98_"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "8", :id "yXSEMmm58qy"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "cdbpZKrBQ4E" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "div", :id "VlrYBtryshb"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "IL7e0CBUWN0" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "6CgYImdSgfj"} + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "A3S5qCoJp2G" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "<>", :id "-FTppq5V-yp"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "6z3wRZGCTCc" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":type", :id "brI0g-QAO_t"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "chunk", :id "rGwuXVx85vJ"} + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099152080, :id "pFTJG6xV77p" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "pre", :id "RY6ztxJmJeq"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "rNAh5Hzpq1l" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "ny2uma8duva"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "yxJJfDCxdeO" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":style", :id "XC2Cqz-d3hN"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "z6Yelwfz1Yv" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text "{}", :id "F2p3DmlYtdL"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "lmCS7KDq4bV" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":line-height", :id "x4iCclz_D5-"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "1.4", :id "Enq7D7hfHFp"} + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "9NOJQtAUniW" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":font-size", :id "oCLj3u0ALxA"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "12", :id "nmFbDbFefup"} + } + } + "v" { + :type :expr, :by "root", :at 1539099152080, :id "Hm6bjgpnsbF" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":margin-top", :id "2KG6pq7p9tv"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "0", :id "sfUZ2uz_TBD"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099152080, :id "YrkFrPArP9Y" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":inner-text", :id "JIaIdd7Mxmh"} + "j" { + :type :expr, :by "root", :at 1539099152080, :id "shzHp-1am_n" + :data { + "T" {:type :leaf, :by "root", :at 1539099152080, :text ":data", :id "WTFzecLE-27"} + "j" {:type :leaf, :by "root", :at 1539099152080, :text "chunk", :id "sDVU32dM5zg"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539099152080, :id "_opDJ13Hwym" + :data {} + } + } + "app.comp.profile" { + :ns { + :type :expr, :id "ByC9-5Lee0rW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Bk1s-qLxlAH-", :text "ns", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ryljZqUglCrZ", :text "app.comp.profile", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "HkCj-9IxgABb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyknZqIgxCBW", :text ":require", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "Bkx3W5LxeRHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkWhZ9Lgg0HZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ryz2-98ggCrW", :text "hsl.core", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "H1X3W58egRrZ", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "BJVhZcUelRrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJHhWqLleAS-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Sk8h-5LgxRBW", :text "hsl", :by "root", :at 1500541010211} + } + } + } + } + "r" { + :type :expr, :id "Byw3Z9IexAB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1OhbcUeg0SW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "B1F2b98glCBb", :text "app.schema", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "rJq3Zc8xxCBb", :text ":as", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "HyjhZ9UeeRrb", :text "schema", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "HJ33Z9Ill0rW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Bkp3ZcLxeABW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1R2Z58eeCBZ", :text "respo-ui.core", :by "root", :at 1516547419785} + "r" {:type :leaf, :id "HyyaWqUee0rZ", :text ":as", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "SklpZqLgg0HZ", :text "ui", :by "root", :at 1500541010211} + } + } + "y" { + :type :expr, :id "HyxIgc3JG", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkNib9LxeAH-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJHi-5UxxCSZ", :text "respo.macros", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "B1LsWcIeeArW", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "HkvjWqUlgRS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkuiZ5Lgl0BZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "B1FjW9UegCSW", :text "defcomp", :by "root", :at 1500541010211} + "n" {:type :leaf, :by "root", :at 1524070875244, :text "list->", :id "BkllkcgSnz"} + "r" {:type :leaf, :id "ryqiZqUel0B-", :text "<>", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "SkooW9UgxRrb", :text "span", :by "root", :at 1500541010211} + "x" {:type :leaf, :id "HJ2obqIlgCB-", :text "div", :by "root", :at 1500541010211} + "y" {:type :leaf, :id "HyaiWqIgxCrZ", :text "button", :by "root", :at 1529343437918} + } + } + } + } + "yT" { + :type :expr, :id "ryTT-cLgxABZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1RTZ9Uxl0Sb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJJRW5UegRrW", :text "respo.comp.space", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "H1gAZc8llRrW", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "Hy-0b58xxCrW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ryMAZ58eeCH-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1XCWcIxlRS-", :text "=<", :by "root", :at 1500541010211} + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1527788936196, :id "Skll5r3p1m" + :data { + "T" {:type :leaf, :by "root", :at 1527788936499, :text "[]", :id "Skll5r3p1mleaf"} + "j" {:type :leaf, :by "root", :at 1527788937835, :text "app.config", :id "rk-cB3pyQ"} + "r" {:type :leaf, :by "root", :at 1527788938747, :text ":as", :id "H14fqShakX"} + "v" {:type :leaf, :by "root", :at 1527788939786, :text "config", :id "B1zm9B3T1Q"} + } + } + } + } + } + } + :defs { + "comp-profile" { + :type :expr, :id "HJHJG58xgASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyIkf9Uxx0Bb", :text "defcomp", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "B1vkzqLgl0H-", :text "comp-profile", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "rkOyMqUexRSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1KyfcUggCrb", :text "user", :by "root", :at 1500541010211} + "j" {:type :leaf, :by "root", :at 1524070827396, :text "members", :id "SJ-ntlBnM"} + } + } + "v" { + :type :expr, :id "r19kz5Uxx0B-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyskGcUlxRSb", :text "div", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "HJn1fqUgxABb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Skpkzc8xgAH-", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "Bk0yG5IleRHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkJeG5UxlASW", :text ":style", :by "root", :at 1500541010211} + "j" { + :type :expr, :by "root", :at 1519314673230, :id "rketgDP2wz" + :data { + "D" {:type :leaf, :by "root", :at 1519314674218, :text "merge", :id "rk5evv3Dz"} + "T" {:type :leaf, :id "HyleG58xgCBb", :text "ui/flex", :by "root", :at 1500541010211} + "j" { + :type :expr, :by "root", :at 1519314674864, :id "BklixPv3Pz" + :data { + "T" {:type :leaf, :by "root", :at 1519314675207, :text "{}", :id "S1jxDD2vf"} + "j" { + :type :expr, :by "root", :at 1519314675496, :id "HyVigvwnPG" + :data { + "T" {:type :leaf, :by "root", :at 1519314677667, :text ":padding", :id "SymslwPhwG"} + "j" {:type :leaf, :by "root", :at 1519314678341, :text "16", :id "HybAgPP2Pf"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1524070753023, :id "HJbFwYlS2f" + :data { + "D" {:type :leaf, :by "root", :at 1524070753742, :text "div", :id "SyfKPFxrhM"} + "L" { + :type :expr, :by "root", :at 1524070753977, :id "BJG9DFxBnz" + :data { + "T" {:type :leaf, :by "root", :at 1524070754337, :text "{}", :id "SkW9vFgS3f"} + "j" { + :type :expr, :by "root", :at 1524070764197, :id "HJ-VuKgBnM" + :data { + "T" {:type :leaf, :by "root", :at 1524070764960, :text ":style", :id "SkeV_KlBhM"} + "j" { + :type :expr, :by "root", :at 1524070765167, :id "BkNrOYlHnf" + :data { + "T" {:type :leaf, :by "root", :at 1524070765499, :text "{}", :id "H17BOYeShG"} + "j" { + :type :expr, :by "root", :at 1524070765707, :id "rylIuYgrhf" + :data { + "T" {:type :leaf, :by "root", :at 1524070768913, :text ":font-family", :id "HJ8_txr3G"} + "j" {:type :leaf, :by "root", :at 1524070771373, :text "ui/font-fancy", :id "HyzKOtlB3f"} + } + } + "r" { + :type :expr, :by "root", :at 1524070772863, :id "By6_YeS3M" + :data { + "T" {:type :leaf, :by "root", :at 1524070774437, :text ":font-size", :id "By6_YeS3Mleaf"} + "j" {:type :leaf, :by "root", :at 1524070786249, :text "32", :id "B1EROKlShG"} + } + } + "v" { + :type :expr, :by "root", :at 1524070778614, :id "SJXKFeHnM" + :data { + "T" {:type :leaf, :by "root", :at 1524070781489, :text ":font-weight", :id "SJXKFeHnMleaf"} + "j" {:type :leaf, :by "root", :at 1524070782585, :text "100", :id "Bk8KtgS2M"} + } + } + } + } + } + } + } + } + "T" { + :type :expr, :id "r1bxMcIleASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkflGc8leCHW", :text "<>", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "Hk4xfc8ex0BZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Syrxf9Uex0S-", :text "str", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Bk8ef9UggCH-", :text "|Hello! ", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "SyvgGc8ge0Hb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkdlMqIleCBZ", :text ":name", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ryteG9Lgg0Bb", :text "user", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + "t" { + :type :expr, :by "root", :at 1524070801446, :id "rygF9Yer2G" + :data { + "T" {:type :leaf, :by "root", :at 1524070803450, :text "=<", :id "rygF9Yer2Gleaf"} + "j" {:type :leaf, :by "root", :at 1524070804372, :text "nil", :id "BJh5txHhz"} + "r" {:type :leaf, :by "root", :at 1524070805591, :text "16", :id "r1p5KgH2z"} + } + } + "u" { + :type :expr, :by "root", :at 1524070806586, :id "H1kotlHnM" + :data { + "T" {:type :leaf, :by "root", :at 1524070807601, :text "div", :id "H1kotlHnMleaf"} + "j" { + :type :expr, :by "root", :at 1524070807801, :id "rJZeiKlS2M" + :data { + "T" {:type :leaf, :by "root", :at 1524070808172, :text "{}", :id "BkeesteS2G"} + "j" { + :type :expr, :by "root", :at 1524070882494, :id "B1Zrlcer3z" + :data { + "T" {:type :leaf, :by "root", :at 1524070886268, :text ":style", :id "Sye519lHhM"} + "j" {:type :leaf, :by "root", :at 1524070890021, :text "ui/row", :id "rym0kqeB2z"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1524070808914, :id "HkgZjKlHhz" + :data { + "T" {:type :leaf, :by "root", :at 1524070810352, :text "<>", :id "HkgZjKlHhzleaf"} + "j" {:type :leaf, :by "root", :at 1524070906296, :text "\"Members:", :id "r1bfoFgr3z"} + } + } + "t" { + :type :expr, :by "root", :at 1524070907095, :id "B1e7-cgShM" + :data { + "T" {:type :leaf, :by "root", :at 1524070907693, :text "=<", :id "B1e7-cgShMleaf"} + "j" {:type :leaf, :by "root", :at 1524071002316, :text "8", :id "BJeVbqlS2G"} + "r" {:type :leaf, :by "root", :at 1524070908955, :text "nil", :id "HkSWqxB3f"} + } + } + "v" { + :type :expr, :by "root", :at 1524070813822, :id "Syl8oKlB3M" + :data { + "T" {:type :leaf, :by "root", :at 1524070815507, :text "list->", :id "Syl8oKlB3Mleaf"} + "j" { + :type :expr, :by "root", :at 1524070815884, :id "ByeuiFeH2f" + :data { + "T" {:type :leaf, :by "root", :at 1524070816388, :text "{}", :id "SkujYgS3f"} + "j" { + :type :expr, :by "root", :at 1524070882494, :id "BkW5yqxShM" + :data { + "T" {:type :leaf, :by "root", :at 1524070886268, :text ":style", :id "Sye519lHhM"} + "j" {:type :leaf, :by "root", :at 1524070890021, :text "ui/row", :id "rym0kqeB2z"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1524070817648, :id "HkcsKlHhG" + :data { + "T" {:type :leaf, :by "root", :at 1524070820065, :text "->>", :id "BJltsYgrhz"} + "j" {:type :leaf, :by "root", :at 1524070823331, :text "members", :id "BJe2jFlShG"} + "r" { + :type :expr, :by "root", :at 1524070849620, :id "BJ96txShz" + :data { + "T" {:type :leaf, :by "root", :at 1524070853516, :text "map", :id "HkhaKeSnz"} + "j" { + :type :expr, :by "root", :at 1524070854323, :id "Bk-0aYxSnM" + :data { + "T" {:type :leaf, :by "root", :at 1524070854836, :text "fn", :id "ByRaYxH3M"} + "j" { + :type :expr, :by "root", :at 1524070855268, :id "By-JCtgrnM" + :data { + "T" { + :type :expr, :by "root", :at 1524070855649, :id "B1eAtgr3f" + :data { + "T" {:type :leaf, :by "root", :at 1524070856266, :text "[]", :id "HJeyAYeH3z"} + "j" {:type :leaf, :by "root", :at 1524070857242, :text "k", :id "S1fgRKeHhz"} + "r" {:type :leaf, :by "root", :at 1524070860935, :text "username", :id "ByfbCYerhG"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1524070862172, :id "SyW8CFeS3z" + :data { + "T" {:type :leaf, :by "root", :at 1524070862624, :text "[]", :id "SyW8CFeS3zleaf"} + "j" {:type :leaf, :by "root", :at 1524070863576, :text "k", :id "SyWPAFgBhM"} + "r" { + :type :expr, :by "root", :at 1524070863870, :id "SyZuAKeB2z" + :data { + "T" {:type :leaf, :by "root", :at 1524070935603, :text "div", :id "SJedAtxShG"} + "b" { + :type :expr, :by "root", :at 1524070935915, :id "H1-eQ9eB3M" + :data { + "T" {:type :leaf, :by "root", :at 1524070936321, :text "{}", :id "ByegX5er2z"} + "j" { + :type :expr, :by "root", :at 1524070941378, :id "r1MSX5xrhG" + :data { + "T" {:type :leaf, :by "root", :at 1524070945311, :text ":style", :id "rJ-HX9eB3z"} + "j" { + :type :expr, :by "root", :at 1524070945552, :id "S15m5eHnM" + :data { + "T" {:type :leaf, :by "root", :at 1524070951279, :text "{}", :id "BkmFQ5eB2G"} + "j" { + :type :expr, :by "root", :at 1524070952343, :id "By-xE9xShf" + :data { + "T" {:type :leaf, :by "root", :at 1524070953379, :text ":padding", :id "BybJE5xB2f"} + "j" {:type :leaf, :by "root", :at 1524070959440, :text "\"0 8px", :id "BJUbV9xShG"} + } + } + "r" { + :type :expr, :by "root", :at 1524070965836, :id "SyA4qlSnM" + :data { + "T" {:type :leaf, :by "root", :at 1524070967712, :text ":border", :id "SyA4qlSnMleaf"} + "j" { + :type :expr, :by "root", :at 1524070968157, :id "rkbxS9lr2f" + :data { + "T" {:type :leaf, :by "root", :at 1524070968711, :text "str", :id "ByllrcxH3M"} + "j" {:type :leaf, :by "root", :at 1524070971580, :text "\"1px solid ", :id "SJ-bSclH2G"} + "r" { + :type :expr, :by "root", :at 1524070972774, :id "BJlSr5gB3M" + :data { + "T" {:type :leaf, :by "root", :at 1524070973331, :text "hsl", :id "HJHrcxBnz"} + "j" {:type :leaf, :by "root", :at 1524070973606, :text "0", :id "S14rr9gH3z"} + "r" {:type :leaf, :by "root", :at 1524070973793, :text "0", :id "BkxUr5gB3f"} + "v" {:type :leaf, :by "root", :at 1524071006553, :text "80", :id "r1MLr5eBhM"} + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1524070980253, :id "ryz3rcxBhG" + :data { + "T" {:type :leaf, :by "root", :at 1524070984655, :text ":border-radius", :id "ryz3rcxBhGleaf"} + "j" {:type :leaf, :by "root", :at 1524070992141, :text "\"16px", :id "SkWZI5lrhz"} + } + } + "x" { + :type :expr, :by "root", :at 1524070994599, :id "HysU5lHnf" + :data { + "T" {:type :leaf, :by "root", :at 1524070996433, :text ":margin", :id "HysU5lHnfleaf"} + "j" {:type :leaf, :by "root", :at 1524071016063, :text "\"0 4px", :id "BkaI5gS3f"} + } + } + } + } + } + } + } + } + "j" { + :type :expr, :by "root", :at 1524070937486, :id "ryM-XqxHnz" + :data { + "D" {:type :leaf, :by "root", :at 1524070939626, :text "<>", :id "BJGm9xB3M"} + "T" {:type :leaf, :by "root", :at 1524070866665, :text "username", :id "HyzFRtlBnz"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :id "BkseG9Lxx0SW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkhlz5IglRr-", :text "=<", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "rkAefcIlgRrZ", :text "nil", :by "root", :at 1500541010211} + "v" {:type :leaf, :by "root", :at 1524070799028, :text "48", :id "S1JuFlHhM"} + } + } + "x" { + :type :expr, :by "root", :at 1524070749088, :id "S1rwteS2z" + :data { + "D" {:type :leaf, :by "root", :at 1524070749878, :text "div", :id "BJlrDYxBhz"} + "L" { + :type :expr, :by "root", :at 1524070750119, :id "H17IvYlrnf" + :data { + "T" {:type :leaf, :by "root", :at 1524070750478, :text "{}", :id "HkMUvFeS2f"} + } + } + "P" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750075330, :id "uOPXafTZdi" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750077847, :text "button", :id "uOPXafTZdileaf"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750078116, :id "54E1NydiPF" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750084550, :text "{}", :id "8ZynejYcOp"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750084800, :id "WE9kL26nME" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750086408, :text ":style", :id "FinL-2NIc_"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750086649, :id "KHJ6pZvdN" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750087218, :text "merge", :id "Dzcqtrid-4"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750089353, :text "ui/button", :id "HDKedQiLPL"} + } + } + } + } + "r" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750146336, :id "9KqNbw7POH" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750146336, :text ":on-click", :id "Qzbn-LQgag"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750146336, :id "Ap2ncP6Z17" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750146336, :text "fn", :id "yJAC369k1J"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750146336, :id "-EI5sPgdhJ" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750146336, :text "e", :id "0KsZOYBtdZ"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750196752, :text "d!", :id "IjGXOjvOaT"} + "r" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750199956, :text "m!", :id "G_fYB4SMB1"} + } + } + "r" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750149343, :id "c1hzphaVoc" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750153908, :text ".replace", :id "c1hzphaVocleaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750156692, :text "js/location", :id "Ns2_BydKNA"} + "r" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750157447, :id "YmX5Wzb78T" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750157996, :text "str", :id "mbcbMGu8wf"} + "j" {:type :leaf, :by "root", :at 1536947568308, :text "js/location.origin", :id "DbCo3fk6H"} + "r" {:type :leaf, :by "root", :at 1536947560142, :text "\"?time=", :id "JRYzWyR7y2"} + "v" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750183293, :id "oPd5dUr6pZ" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750183917, :text ".now", :id "XjR6j7fCrg"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750185350, :text "js/Date", :id "lpXN4rI60T"} + } + } + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750090761, :id "wKN1OxLol" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750091205, :text "<>", :id "wKN1OxLolleaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750096637, :text "\"Refresh", :id "El2yUaE7P"} + } + } + } + } + "R" { + :type :expr, :by "B1y7Rc-Zz", :at 1536750643074, :id "f9W9pIt6P" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750643562, :text "=<", :id "f9W9pIt6Pleaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750644286, :text "8", :id "yAaDQ5KQcm"} + "r" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750644793, :text "nil", :id "RMJuWthIzE"} + } + } + "T" { + :type :expr, :id "SyJ-M5IggAHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1gbfqIgl0Sb", :text "button", :by "root", :at 1529343433304} + "j" { + :type :expr, :id "HyWWz9UeeArW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkMWGqUxlRHb", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SkmbM98xl0SZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1NbM9UllABW", :text ":style", :by "root", :at 1500541010211} + "b" { + :type :expr, :by "root", :at 1529343525553, :id "rkCm0Dr-Q" + :data { + "D" {:type :leaf, :by "root", :at 1529343526544, :text "merge", :id "rkxAm0PBbm"} + "T" {:type :leaf, :by "root", :at 1529343448522, :text "ui/button", :id "B1x0CTPS-m"} + "j" { + :type :expr, :by "root", :at 1529343455186, :id "B1lNRPS-m" + :data { + "T" {:type :leaf, :by "root", :at 1529343455629, :text "{}", :id "SkxvJAvS-m"} + "j" { + :type :expr, :by "root", :at 1529343457115, :id "SkWFyCDHZ7" + :data { + "T" {:type :leaf, :by "root", :at 1529343457898, :text ":color", :id "SkeYyCDBWX"} + "j" {:type :leaf, :by "root", :at 1529343458855, :text ":red", :id "S1mckRvHWX"} + } + } + "r" { + :type :expr, :by "root", :at 1529343459158, :id "rkXiyCPHbX" + :data { + "T" {:type :leaf, :by "root", :at 1529343463728, :text ":border-color", :id "rkXiyCPHbXleaf"} + "j" {:type :leaf, :by "root", :at 1529343464475, :text ":red", :id "rkZeeAwSbX"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "B1edqskgQf", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1i-McLxeArW", :text ":on-click", :by "root", :at 1514302350497} + "j" { + :type :expr, :id "HJxrymsN5z", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkICb9UgeRSb", :text "fn", :by "root", :at 1521951456454} + "r" { + :type :expr, :id "HJ_C-q8llCSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkK0W98geAHb", :text "e", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "By5CZ5Uxx0BZ", :text "dispatch!", :by "root", :at 1500541010211} + "r" {:type :leaf, :by "root", :at 1521951461103, :text "mutate!", :id "Hy-okQoE9G"} + } + } + "v" { + :type :expr, :id "Sks0Z9Ulg0rW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkhRb5LllArW", :text "dispatch!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJaAW9UelCHb", :text ":user/log-out", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SyARWqLegRrW", :text "nil", :by "root", :at 1500541010211} + } + } + "x" { + :type :expr, :id "HkJJfc8glCHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJlJGqIggAHb", :text ".removeItem", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HkWyM9Uxx0BZ", :text "js/localStorage", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "BJGJG5UxgCBb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SymJG5IelASb", :text ":storage-key", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HyNJG5LegRrb", :text "config/site", :by "root", :at 1527788933957} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "Hy6bM58lg0r-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyC-MqUgeRHW", :text "<>", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "BylzzcUllAHZ", :text "\"Log out", :by "B1y7Rc-Zz", :at 1536750140051} + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "rJ4RbcUxeCBZ", :by nil, :at 1500541010211 + :data {} + } + } + "app.comp.reel" { + :ns { + :type :expr, :id "Bkl3FQ7a3W", :by "root", :at 1507828612052 + :data { + "T" {:type :leaf, :text "ns", :id "B1bnKQ763Z", :by "root", :at 1507828612052} + "j" {:type :leaf, :text "app.comp.reel", :id "ByG2tQQa2Z", :by "root", :at 1507828612052} + "v" { + :type :expr, :id "S1HVf5UxlRHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJLNzq8glABb", :text ":require", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BywNMcUleAHb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Bk_4zqLggASb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HkY4z5IllCHb", :text "hsl.core", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "BkcEM9IgxCSZ", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "HJsNzqLleASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ry3NM5IegRSW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SkTNfcLeeRBb", :text "hsl", :by "root", :at 1500541010211} + } + } + } + } + "r" { + :type :expr, :id "HkCNz98el0Bb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJySMq8xgRSZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HkeBG5Lgl0SW", :text "respo-ui.core", :by "root", :at 1516547434475} + "r" {:type :leaf, :id "rkWrzqIxx0B-", :text ":as", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "S1GrG5LegAHZ", :text "ui", :by "root", :at 1500541010211} + } + } + "x" { + :type :expr, :id "rJyPgqhJM", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Bk2XMq8lgCHZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJp7zc8xxArZ", :text "respo.macros", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "S1AmGcLexRH-", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "SyJNG5IexArb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkxNGqLxg0rZ", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BkbEz9LegRr-", :text "defcomp", :by "root", :at 1500541010211} + "n" {:type :leaf, :by "root", :at 1521797607780, :text "action->", :id "ByJl5HG9z"} + "r" {:type :leaf, :id "BJM4fcLlxCrb", :text "<>", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "SyQ4McIex0HZ", :text "span", :by "root", :at 1500541010211} + "w" {:type :leaf, :text "button", :id "SJkM4X63-", :by "root", :at 1507828743963} + "x" {:type :leaf, :id "HkNEM9Lee0HZ", :text "div", :by "root", :at 1500541010211} + } + } + } + } + "y" { + :type :expr, :id "BJDMV7T3b", :by "root", :at 1507828750778 + :data { + "T" {:type :leaf, :text "[]", :id "BJDMV7T3bleaf", :by "root", :at 1507828751150} + "j" {:type :leaf, :text "respo.comp.space", :id "BkMDMNmT2-", :by "root", :at 1507828759087} + "r" {:type :leaf, :text ":refer", :id "HyQyXVmp2Z", :by "root", :at 1507828759839} + "v" { + :type :expr, :id "BymgX4Q63-", :by "root", :at 1507828760096 + :data { + "T" {:type :leaf, :text "[]", :id "SkfxmEQp2b", :by "root", :at 1507828761062} + "j" {:type :leaf, :text "=<", :id "HJZZX47T2-", :by "root", :at 1507828761860} + } + } + } + } + } + } + } + } + :defs { + "comp-reel" { + :type :expr, :id "Bklx97QThZ", :by "root", :at 1507828615828 + :data { + "T" {:type :leaf, :text "defcomp", :id "ByZg5mmpn-", :by "root", :at 1507828638117} + "j" {:type :leaf, :text "comp-reel", :id "BkzxqXma2b", :by "root", :at 1507828615828} + "r" { + :type :expr, :id "HyXl9XXa2W", :by "root", :at 1507828615828 + :data { + "T" {:type :leaf, :text "count", :id "Bkevjm7ahb", :by "root", :at 1507828641358} + "j" {:type :leaf, :text "addional-styles", :id "SyxAH4m6hZ", :by "root", :at 1507828806687} + } + } + "v" { + :type :expr, :id "rkgcjQm6hW", :by "root", :at 1507828642014 + :data { + "T" {:type :leaf, :text "div", :id "rkgcjQm6hWleaf", :by "root", :at 1507828644047} + "j" { + :type :expr, :id "B1m3oXXpnb", :by "root", :at 1507828644307 + :data { + "T" {:type :leaf, :text "{}", :id "rJz2sm76hb", :by "root", :at 1507828645447} + "j" { + :type :expr, :id "rJh4E76hW", :by "root", :at 1507828787656 + :data { + "T" {:type :leaf, :text ":style", :id "HyxiEV7T2-", :by "root", :at 1507828788612} + "j" { + :type :expr, :id "BkxR44Xa3b", :by "root", :at 1507828790325 + :data { + "T" {:type :leaf, :text "merge", :id "B1xaE4mpn-", :by "root", :at 1507828791173} + "j" { + :type :expr, :id "ByzSEQTnW", :by "root", :at 1507828794124 + :data { + "T" {:type :leaf, :text "{}", :id "S1gSEXTn-", :by "root", :at 1507828794453} + "j" { + :type :expr, :id "rJl7SEQpn-", :by "root", :at 1507828794919 + :data { + "T" {:type :leaf, :text ":padding", :id "H1QrEQp2W", :by "root", :at 1507828796652} + "j" {:type :leaf, :text "8", :id "B1bHrE7ph-", :by "root", :at 1507828798787} + } + } + "r" { + :type :expr, :id "SyxkvNQ6h-", :by "root", :at 1507828823179 + :data { + "T" {:type :leaf, :text ":position", :id "SyxkvNQ6h-leaf", :by "root", :at 1507828826081} + "j" {:type :leaf, :text ":absolute", :id "H17w4QpnZ", :by "root", :at 1507828828058} + } + } + "v" { + :type :expr, :id "HkSEP4m63W", :by "root", :at 1507828828452 + :data { + "T" {:type :leaf, :text ":bottom", :id "HkSEP4m63Wleaf", :by "root", :at 1507828829763} + "j" {:type :leaf, :text "8", :id "rJvDVXT2b", :by "root", :at 1507828830754} + } + } + "x" { + :type :expr, :id "H1g_DNmT3W", :by "root", :at 1507828832222 + :data { + "T" {:type :leaf, :text ":right", :id "H1g_DNmT3Wleaf", :by "root", :at 1507828836248} + "j" {:type :leaf, :text "8", :id "Hkfnw4mp2W", :by "root", :at 1507828836603} + } + } + "y" { + :type :expr, :id "rkVzjQ6nZ", :by "root", :at 1507830539553 + :data { + "T" {:type :leaf, :text ":font-size", :id "rkVzjQ6nZleaf", :by "root", :at 1507830540932} + "j" {:type :leaf, :text "12", :id "r1QHzjmp3-", :by "root", :at 1507830541576} + } + } + "yT" { + :type :expr, :id "Hkhfo7p2-", :by "root", :at 1507830547659 + :data { + "T" {:type :leaf, :text ":color", :id "Hkhfo7p2-leaf", :by "root", :at 1507830548620} + "j" { + :type :expr, :id "SJWTMj7T2Z", :by "root", :at 1507830548948 + :data { + "T" {:type :leaf, :text "hsl", :id "S1xpMoQT2W", :by "root", :at 1507830549886} + "j" {:type :leaf, :text "0", :id "BkzRzimanb", :by "root", :at 1507830551482} + "r" {:type :leaf, :text "0", :id "r1lXoXThb", :by "root", :at 1507830551738} + "v" {:type :leaf, :text "60", :id "HJZxmima3Z", :by "root", :at 1507830554684} + } + } + } + } + } + } + "r" {:type :leaf, :text "addional-styles", :id "SyxnLEmphW", :by "root", :at 1507828820509} + } + } + } + } + } + } + "r" { + :type :expr, :id "Hke0sXXahZ", :by "root", :at 1507828646137 + :data { + "T" {:type :leaf, :text "<>", :id "Hke0sXXahZleaf", :by "root", :at 1507828647130} + "j" {:type :leaf, :text "span", :id "rJ-Jhm7p2b", :by "root", :at 1507828648385} + "r" { + :type :expr, :id "Syg1jQp2-", :by "root", :at 1507830487639 + :data { + "D" {:type :leaf, :text "str", :id "rygxkjQTh-", :by "root", :at 1507830489506} + "L" {:type :leaf, :text "|Length:", :id "B1MJsXa2Z", :by "root", :at 1507830563403} + "T" {:type :leaf, :text "count", :id "rJ-2mQp2b", :by "root", :at 1507828650527} + } + } + "v" {:type :leaf, :text "nil", :id "S1xQ3XQThW", :by "root", :at 1507828651981} + } + } + "v" { + :type :expr, :id "rkS3QQpnZ", :by "root", :at 1507828652616 + :data { + "T" {:type :leaf, :text "=<", :id "rkS3QQpnZleaf", :by "root", :at 1507828654134} + "j" {:type :leaf, :text "8", :id "ryWU277ahb", :by "root", :at 1507828656265} + "r" {:type :leaf, :text "nil", :id "SJ-d2Q7p3b", :by "root", :at 1507828656797} + } + } + "x" { + :type :expr, :id "B19hX76hW", :by "root", :at 1507828657608 + :data { + "T" {:type :leaf, :text "span", :id "B19hX76hWleaf", :by "root", :at 1507830450172} + "j" { + :type :expr, :id "ByQhn77a3Z", :by "root", :at 1507828660058 + :data { + "T" {:type :leaf, :text "{}", :id "H1z327Qph-", :by "root", :at 1507828660406} + "j" { + :type :expr, :id "ByxpnmQa2-", :by "root", :at 1507828660655 + :data { + "T" {:type :leaf, :text ":inner-text", :id "BJpnQX6nb", :by "root", :at 1507828662301} + "j" {:type :leaf, :text "|Reset", :id "HkVCnX7T2Z", :by "root", :at 1507828665664} + } + } + "n" { + :type :expr, :id "HyxnXN763W", :by "root", :at 1507828771973 + :data { + "T" {:type :leaf, :text ":style", :id "HyxnXN763Wleaf", :by "root", :at 1507828774891} + "j" {:type :leaf, :text "style-click", :id "S1O4C9XT2-", :by "root", :at 1507830476140} + } + } + "r" { + :type :expr, :id "H1QTXXanZ", :by "root", :at 1507828666635 + :data { + "T" {:type :leaf, :text ":on", :id "H1QTXXanZleaf", :by "root", :at 1507828667298} + "j" { + :type :expr, :id "rJx4a7Qa3W", :by "root", :at 1507828668492 + :data { + "T" {:type :leaf, :text "{}", :id "B1VTQXah-", :by "root", :at 1507828669523} + "j" { + :type :expr, :id "HkWUpQ76hW", :by "root", :at 1507828670352 + :data { + "T" {:type :leaf, :text ":click", :id "ryeLp7m6hW", :by "root", :at 1507828671772} + "j" { + :type :expr, :id "HyVdTQmanW", :by "root", :at 1507828672178 + :data { + "T" {:type :leaf, :text "fn", :id "SymOamm62Z", :by "root", :at 1507828672472} + "j" { + :type :expr, :id "rkeF6mQTnb", :by "root", :at 1507828673101 + :data { + "T" {:type :leaf, :text "e", :id "B1tpQQT2W", :by "root", :at 1507828673612} + "j" {:type :leaf, :text "d!", :id "H1g9T7Q63Z", :by "root", :at 1507828674547} + "r" {:type :leaf, :text "m!", :id "BygoaX763-", :by "root", :at 1507828675326} + } + } + "r" { + :type :expr, :id "HygnamXpnb", :by "root", :at 1507828675771 + :data { + "T" {:type :leaf, :text "d!", :id "HygnamXpnbleaf", :by "root", :at 1507828676567} + "j" {:type :leaf, :text ":reel/reset", :id "rklppQQpn-", :by "root", :at 1507828680117} + "r" {:type :leaf, :text "nil", :id "r14l0m7ph-", :by "root", :at 1507828680980} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "xT" { + :type :expr, :id "B1go07QThW", :by "root", :at 1507828690995 + :data { + "T" {:type :leaf, :text "=<", :id "B1go07QThWleaf", :by "root", :at 1507828691717} + "j" {:type :leaf, :text "8", :id "Syg2AXmT2-", :by "root", :at 1507828692530} + "r" {:type :leaf, :text "nil", :id "Byl6CXXahZ", :by "root", :at 1507828693029} + } + } + "y" { + :type :expr, :id "Syxm07XpnZ", :by "root", :at 1507828657608 + :data { + "T" {:type :leaf, :text "span", :id "B19hX76hWleaf", :by "root", :at 1507830455176} + "j" { + :type :expr, :id "ByQhn77a3Z", :by "root", :at 1507828660058 + :data { + "T" {:type :leaf, :text "{}", :id "H1z327Qph-", :by "root", :at 1507828660406} + "j" { + :type :expr, :id "ByxpnmQa2-", :by "root", :at 1507828660655 + :data { + "T" {:type :leaf, :text ":inner-text", :id "BJpnQX6nb", :by "root", :at 1507828662301} + "j" {:type :leaf, :text "|Merge", :id "HkVCnX7T2Z", :by "root", :at 1507828686464} + } + } + "n" { + :type :expr, :id "B1SN4mp2b", :by "root", :at 1507828771973 + :data { + "T" {:type :leaf, :text ":style", :id "HyxnXN763Wleaf", :by "root", :at 1507828774891} + "j" {:type :leaf, :text "style-click", :id "S1f14EX6hZ", :by "root", :at 1507830481223} + } + } + "r" { + :type :expr, :id "H1QTXXanZ", :by "root", :at 1507828666635 + :data { + "T" {:type :leaf, :text ":on", :id "H1QTXXanZleaf", :by "root", :at 1507828667298} + "j" { + :type :expr, :id "rJx4a7Qa3W", :by "root", :at 1507828668492 + :data { + "T" {:type :leaf, :text "{}", :id "B1VTQXah-", :by "root", :at 1507828669523} + "j" { + :type :expr, :id "HkWUpQ76hW", :by "root", :at 1507828670352 + :data { + "T" {:type :leaf, :text ":click", :id "ryeLp7m6hW", :by "root", :at 1507828671772} + "j" { + :type :expr, :id "HyVdTQmanW", :by "root", :at 1507828672178 + :data { + "T" {:type :leaf, :text "fn", :id "SymOamm62Z", :by "root", :at 1507828672472} + "j" { + :type :expr, :id "rkeF6mQTnb", :by "root", :at 1507828673101 + :data { + "T" {:type :leaf, :text "e", :id "B1tpQQT2W", :by "root", :at 1507828673612} + "j" {:type :leaf, :text "d!", :id "H1g9T7Q63Z", :by "root", :at 1507828674547} + "r" {:type :leaf, :text "m!", :id "BygoaX763-", :by "root", :at 1507828675326} + } + } + "r" { + :type :expr, :id "HygnamXpnb", :by "root", :at 1507828675771 + :data { + "T" {:type :leaf, :text "d!", :id "HygnamXpnbleaf", :by "root", :at 1507828676567} + "j" {:type :leaf, :text ":reel/merge", :id "rklppQQpn-", :by "root", :at 1507828689327} + "r" {:type :leaf, :text "nil", :id "r14l0m7ph-", :by "root", :at 1507828680980} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "yD" { + :type :expr, :id "HyZ8J9Bf9M", :by "root", :at 1507828690995 + :data { + "T" {:type :leaf, :text "=<", :id "B1go07QThWleaf", :by "root", :at 1507828691717} + "j" {:type :leaf, :text "8", :id "Syg2AXmT2-", :by "root", :at 1507828692530} + "r" {:type :leaf, :text "nil", :id "Byl6CXXahZ", :by "root", :at 1507828693029} + } + } + "yT" { + :type :expr, :id "r1EkqBMqG", :by "root", :at 1507828657608 + :data { + "T" {:type :leaf, :text "span", :id "B19hX76hWleaf", :by "root", :at 1507830455176} + "j" { + :type :expr, :id "ByQhn77a3Z", :by "root", :at 1507828660058 + :data { + "T" {:type :leaf, :text "{}", :id "H1z327Qph-", :by "root", :at 1507828660406} + "j" { + :type :expr, :id "ByxpnmQa2-", :by "root", :at 1507828660655 + :data { + "T" {:type :leaf, :text ":inner-text", :id "BJpnQX6nb", :by "root", :at 1507828662301} + "j" {:type :leaf, :text "|Persist", :id "HkVCnX7T2Z", :by "root", :at 1521797627988} + } + } + "n" { + :type :expr, :id "B1SN4mp2b", :by "root", :at 1507828771973 + :data { + "T" {:type :leaf, :text ":style", :id "HyxnXN763Wleaf", :by "root", :at 1507828774891} + "j" {:type :leaf, :text "style-click", :id "S1f14EX6hZ", :by "root", :at 1507830481223} + } + } + "r" { + :type :expr, :id "H1QTXXanZ", :by "root", :at 1507828666635 + :data { + "T" {:type :leaf, :text ":on", :id "H1QTXXanZleaf", :by "root", :at 1507828667298} + "j" { + :type :expr, :id "rJx4a7Qa3W", :by "root", :at 1507828668492 + :data { + "T" {:type :leaf, :text "{}", :id "B1VTQXah-", :by "root", :at 1507828669523} + "j" { + :type :expr, :id "HkWUpQ76hW", :by "root", :at 1507828670352 + :data { + "T" {:type :leaf, :text ":click", :id "ryeLp7m6hW", :by "root", :at 1507828671772} + "r" { + :type :expr, :by "root", :at 1521797602013, :id "rJcycSfcM" + :data { + "T" {:type :leaf, :by "root", :at 1521797603518, :text "action->", :id "rJcycSfcMleaf"} + "j" {:type :leaf, :by "root", :at 1521797612607, :text ":effect/persist", :id "SkZe9Hf5z"} + "r" {:type :leaf, :by "root", :at 1521797613900, :text "nil", :id "BJxSxqrM5z"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "style-click" { + :type :expr, :id "r1gE05762-", :by "root", :at 1507830476140 + :data { + "T" {:type :leaf, :text "def", :id "BybEAq762b", :by "root", :at 1507830476140} + "j" {:type :leaf, :text "style-click", :id "SkfN05mp2Z", :by "root", :at 1507830476140} + "r" { + :type :expr, :id "rkQ4R5XT3b", :by "root", :at 1507830476140 + :data { + "T" {:type :leaf, :text "{}", :id "HyVNA9Q63b", :by "root", :at 1507830476140} + "j" { + :type :expr, :id "HJrNCcXan-", :by "root", :at 1507830476140 + :data { + "T" {:type :leaf, :text ":cursor", :id "HkIE0qQp3-", :by "root", :at 1507830476140} + "j" {:type :leaf, :text ":pointer", :id "ryPVCc7p3W", :by "root", :at 1507830476140} + } + } + "r" { + :type :expr, :id "B1x1loQpnW", :by "root", :at 1507830503241 + :data { + "T" {:type :leaf, :text ":color", :id "B1x1loQpnWleaf", :by "root", :at 1507830504703} + "j" { + :type :expr, :id "Bkz-xi7T2W", :by "root", :at 1507830505262 + :data { + "T" {:type :leaf, :text "hsl", :id "Bybbli7anZ", :by "root", :at 1507830505953} + "j" {:type :leaf, :text "200", :id "HkzMgjQT2-", :by "root", :at 1507830508223} + "r" {:type :leaf, :text "80", :id "SJZVeima3b", :by "root", :at 1507830508713} + "v" {:type :leaf, :text "80", :id "Bk-HljQahZ", :by "root", :at 1507830514472} + } + } + } + } + "v" { + :type :expr, :id "rJbixo7T3W", :by "root", :at 1507830515446 + :data { + "T" {:type :leaf, :text ":font-size", :id "rJbixo7T3Wleaf", :by "root", :at 1507830517136} + "j" {:type :leaf, :text ":12", :id "SJmpxiXT2W", :by "root", :at 1507830534305} + } + } + "x" { + :type :expr, :id "rJbZbjXa3-", :by "root", :at 1507830521076 + :data { + "T" {:type :leaf, :text ":text-decoration", :id "rJbZbjXa3-leaf", :by "root", :at 1507830524822} + "j" {:type :leaf, :text ":underline", :id "rkMrbjm6hZ", :by "root", :at 1507830529129} + } + } + } + } + } + } + } + :proc { + :type :expr, :id "H172KQ7T3-", :by "root", :at 1507828612052 + :data {} + } + } + "app.comp.workflow" { + :ns { + :type :expr, :by "root", :at 1539099174710, :id "-2P_gi0i7Y" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "ns", :id "-tQ32hl0LR"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "app.comp.workflow", :id "B6btHneWjI"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "WKHJdixFq6" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":require", :id "ZOcrYmFwBb"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "4xRSzYiq6k" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "Rq7teLHtUH"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "hsl.core", :id "dXmgKdxrOK"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":refer", :id "PhyCwtfhE1"} + "v" { + :type :expr, :by "root", :at 1539099174710, :id "V9BQ8umYkk" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "6gdcKdlYgN"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "hsl", :id "OsNxSLKeSn"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "-Fmz6oQM75" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "Uz0l7ncGRW"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "respo-ui.core", :id "ly0-c_uDoW"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":as", :id "mN7TfEpmOvE"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "ui", :id "q86A6OkW4Qa"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "3KwpiAGgEfD" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "dVij5-U5o9U"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "respo-ui.colors", :id "nf2U03L7SPw"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":as", :id "SWif-ERyU2z"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "colors", :id "wJskefTxSpS"} + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "edyr2IXqr3I" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "weO6K_aIjmN"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "respo.macros", :id "AKfuXCtC5m8"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":refer", :id "87A91t8vBA7"} + "v" { + :type :expr, :by "root", :at 1539099174710, :id "N-PSzRQRnBJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "yv8n9DrQW4v"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "defcomp", :id "jyAWBSIzmQe"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "_RXNRAj-Wdq"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "action->", :id "f7DDzZiaYyP"} + "x" {:type :leaf, :by "root", :at 1539099174710, :text "cursor->", :id "edXBcTLXaR9"} + "y" {:type :leaf, :by "root", :at 1539099174710, :text "mutation->", :id "dezBoT4o7kd"} + "yT" {:type :leaf, :by "root", :at 1539099174710, :text "list->", :id "8ysYu2HUgzH"} + "yj" {:type :leaf, :by "root", :at 1539099174710, :text "span", :id "FNDZH_ZHLeg"} + "yr" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "r3EVoE5_caX"} + "yv" {:type :leaf, :by "root", :at 1539099174710, :text "input", :id "KDwBKa8O0fa"} + "yx" {:type :leaf, :by "root", :at 1539099174710, :text "button", :id "OFMnKP2qzCF"} + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099174710, :id "H5hT3Wxop4j" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "asQv8JbZeSq"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "respo.comp.space", :id "4jHsEeASMpZ"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":refer", :id "IYhBJgdzljF"} + "v" { + :type :expr, :by "root", :at 1539099174710, :id "vHYBtU-uKVQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "spWPzGDLHaR"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "=<", :id "q964d8GAbYL"} + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099174710, :id "PupKylf9fhX" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "_xFPaV2p0TH"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "clojure.string", :id "Q-kV_RN7-7q"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":as", :id "dF_n-KMqFi7"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "string", :id "3Z_S4fae-x3"} + } + } + "yj" { + :type :expr, :by "root", :at 1539099174710, :id "DHyujKVuYrE" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "Ecm1IKnJ_66"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "app.style", :id "IQR5cISOrHE"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":as", :id "7xKG_e9Dit_"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "style", :id "T1NjfUpiopI"} + } + } + "yr" { + :type :expr, :by "root", :at 1539099174710, :id "ZFoImc99lWk" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "90kc9mVUa79"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "app.comp.dialog", :id "PHoDjW27YxT"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":refer", :id "zEvnt2d2Vwm"} + "v" { + :type :expr, :by "root", :at 1539099174710, :id "LW4JvU9z9EU" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "aaVVIYr-23x"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "comp-dialog", :id "imgC0nSUIQU"} + } + } + } + } + "yv" { + :type :expr, :by "root", :at 1539099174710, :id "136rnWLy_fu" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "TGzOK93sJPE"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "app.util", :id "SmoYLyszkEr"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":refer", :id "MopddsFLQpM"} + "v" { + :type :expr, :by "root", :at 1539099174710, :id "TV5aID7MDdR" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "ot2etk06Fr5"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "map-val", :id "VvJSDMtDtl1"} + } + } + } + } + } + } + } + } + :defs { + "comp-command-editor" { + :type :expr, :by "root", :at 1539099174710, :id "mtY8U9muqDy" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "defcomp", :id "EsesUUV6gRZ"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "comp-command-editor", :id "sl52igBw0yh"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "ncaBeTAr0Bz" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "states", :id "EMyINxONbE1"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "on-close!", :id "84amWWxMGpL"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "workflow-id", :id "eGLhI6ItHYt"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "base-command", :id "RTzqf2EodYC"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "APP8wOLmDmj" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "let", :id "ZzEwvDD25Ml"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "sVX2vQWy9EA" + :data { + "T" { + :type :expr, :by "root", :at 1539099174710, :id "Wn0Ea_As3HM" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "cc9LruNziky"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "rhhhBq8yEqk" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "or", :id "Ahx-Zw1qfy8"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "szkETaRWlau" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":data", :id "lGDVanHX5-T"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "states", :id "njtNuTQNKX_"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "_VRBSbOk4RK" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "if", :id "UEFFlxp2SjW"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "m0a_NA5rK5s" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "some?", :id "EODaCHRODB4"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "base-command", :id "eMT3jeMJ23Y"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "_7bDGLailKe" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "select-keys", :id "Md6MKIMl3vh"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "base-command", :id "fTIODWhDO2E"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "hSC0pz2WyXc" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "JXIytfnHyrg"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":code", :id "tzbHco4fkzc"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":path", :id "sd-UM8Sk8kO"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "t84NqzjP3Fa" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "NzSJoPJN0rJ"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "hUIrzdjDPDH" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":code", :id "HAzBg4BNWl4"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|", :id "59VJ1GbGFPR"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "4Lj6r3nIHGq" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":path", :id "HUMPhd2VyRq"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|./", :id "xF8WoBjFmOB"} + } + } + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "_cGoSNbTSWF" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "mI1IgPdUjZe"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "ha2Wi1gGYoq" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "Clxp_34WJtT"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "n1H0HXW3RE_" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "zOFcuUPvhUA"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "XYmmt53okEX" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "8ehmzhpGQyh"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "ble48O8kAtJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "7mXQZsbEbfQ"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|Command", :id "Ep8m0Hou4Cc"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "oiUVUD49NVg" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "UJhU1kZLlot"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "V3jIvri1z4T" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "FcFbTfer2di"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "mIt9eGAaey5" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "input", :id "lAqJe_2EbMe"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "Vi4do5dyZa4" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "NWD91oSYDmO"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "866jAuKGtSo" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "5vCwezUUR3A"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "jjXWIzMmSLP" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "merge", :id "GETWQU-4Vce"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/input", :id "KMP36q83ie4"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "_3b-6VOPsYu" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "KM1HXJM4h1Z"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "oF69EaW4sbn" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":width", :id "wL1sqDI8oFH"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "320", :id "pQV1Xtei83G"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "ow4g7m4unbi" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":font-family", :id "NHx_i-9gqEs"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/font-code", :id "WzoRq97mDyz"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "Tt9wCoiYhta" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":value", :id "EdeyQ4U4-5B"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "x9Mn9Ia7MBA" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":code", :id "CYnq9A0pZLW"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "SYBVtGtfbDR"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "uTV81F6edr3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":placeholder", :id "nu0qAXCc2KX"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|Command code", :id "raVHw5Kksh7"} + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "xECiYP4ykpV" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-input", :id "k1Mm1xN3Hgp"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "ATI5-Ar9IAG" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "mutation->", :id "MovNF2JiqUC"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "OgX6k_kWF4J" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "WGToFuich8K"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "41vid1PvWSl"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":code", :id "mtvEBx5LxKR"} + "v" { + :type :expr, :by "root", :at 1539099174710, :id "ZcugwjWOSGw" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":value", :id "2KhDImf6X54"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "%e", :id "DHV4fQ7u_42"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "x3JK2W15qsA" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "=<", :id "weMRVBgbQR5"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "4tYdXpLNG88"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "16", :id "cZG9bqexsye"} + } + } + "y" { + :type :expr, :by "root", :at 1539099174710, :id "rsfbrxzzpBF" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "b8szgfjUkrG"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "-XsFIFAbgZ-" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "Oj6VhIujSeY"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "wXlghCC-aEi" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "input", :id "DYCZVqsvqGi"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "XN21gr_nWuX" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "Je3yc-wa7B4"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "a9ZtjW7-pwo" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "bHGuagZ0AY8"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "OFRBMln-Q75" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "merge", :id "AUspnOmwuP4"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/input", :id "M7EHPhI2D4m"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "kNrubmOUt5O" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "ghN7lC-ULKp"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "oJ6UkRz5Zl4" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":width", :id "vckW4ky-Qe2"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "320", :id "Oinad5PWJUq"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "HX3ekt0Hw4P" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":font-family", :id "Ew9dYBBJJ-I"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/font-code", :id "rImItRj4os3"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "02scWN0RQPC" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":value", :id "9U3SQKs1n-m"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "h9nllXRC1a8" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":path", :id "Nd-FgaGTmAi"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "JV0EaZ7BUMn"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "wxh2U6lvDO6" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":placeholder", :id "Pj8uWQUWJ82"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|Command path", :id "D8e-8u8MgbN"} + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "iYmykDeVTWM" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-input", :id "XPDlabtbn64"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "02eVfv1n_dw" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "mutation->", :id "rhgsywpa-oR"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "JLQBMbu8gyQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "V75O7z9jQVM"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "-tyZ-2w79jx"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":path", :id "OlgtNTVIc1h"} + "v" { + :type :expr, :by "root", :at 1539099174710, :id "7lQRFj23XAR" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":value", :id "ecEiH0Va6TM"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "%e", :id "54DHUYa8Gmy"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099174710, :id "5H77r9-aCjL" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "=<", :id "oFOCCqfUxmV"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "FiEERuxoEbU"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "16", :id "XWF8_s3hxvK"} + } + } + "yj" { + :type :expr, :by "root", :at 1539099174710, :id "nbAAwHbZv78" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "3mo781IsYkg"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "xqd6N59mtde" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "4yVD7QsE5qW"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "B08aL6tornc" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "-2uJ3814PAm"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/row-parted", :id "MX70mB8EAUL"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "_qsQSQSEyGI" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "span", :id "hDQ14SPmMjG"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "G29tRnG6AsY" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "zac0PI78Ri4"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "hr1RqbQRyk3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "button", :id "c7So4IXVw-p"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "uFweXPQQ1Ts" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "tfPAVp9eKeU"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "5tuEBVpYvVi" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "LBJttqDjfb9"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "style/button", :id "a34WjRGOhGj"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "MUlBeZbeWsa" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-click", :id "bn7MTsIIegU"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "e41g1jy1eEd" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "fn", :id "-U95XbXcaAi"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "1oto91GAihK" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "e", :id "JYfWllcl_Zl"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "d!", :id "YhlaAy_Vo-3"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "DHYBLfwsuEz"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "sUmbbP2hKA3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "if", :id "14bBge3zkJW"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "Lvjckh7RsUK" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "some?", :id "hjFUWfm0RGv"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "base-command", :id "517j5LiF-fZ"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "gq2syHPhLKD" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "d!", :id "aL2Lr4x63sJ"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":workflow/edit-command", :id "mU6nrBOfUmm"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "1-ueDHZBZTY" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "-lIYmYiNeQC"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow-id", :id "RVfXTaWdZDq"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "cD1QPSKCX_Z" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":id", :id "uRZvoUnjxzy"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "base-command", :id "0r4C2vhd4az"} + } + } + "v" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "CJJfJ5EYgek"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "xksj1QSpQNU" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "d!", :id "Egnldpyo8uI"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":workflow/add-command", :id "__IHERF00Ut"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "9yaoHjQq8gi" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "6IGFuIgqy_Q"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "BZx9rLHLMp4" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":workflow-id", :id "2d5y_Uw7BJ1"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow-id", :id "bKIX6HlxMxzI"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "TcziqKyBqxDs" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":code", :id "z5ORO-9LmfvJ"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "Y1x6jYbZPVs0" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":code", :id "Y6zcZG60pVfU"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "rmZrAfMWKw5k"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "j7ERB3xs2o2O" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":path", :id "VNHwBXVddLgO"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "Su3P2phy1vWe" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":path", :id "ft44HKI2HJY5"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "JNwf1Od14_Bu"} + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "Wdf5qgp-kR09" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "VxU8W2zhYEr_"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "aQysQwB_yaxm"} + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "JkdVAVKsbFH1" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "on-close!", :id "dj7nr4_-FKz_"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "qFD7FpfevFdX"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "nCzOzJNNMaB_" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "cmWzcME-r12y"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|add", :id "feN-2ra6q9-k"} + } + } + } + } + } + } + } + } + } + } + } + } + "comp-workflow-container" { + :type :expr, :by "root", :at 1539099174710, :id "5RWRW8SDOpN8" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "defcomp", :id "yeEEFEFArGVU"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "comp-workflow-container", :id "GUk0-2lOlZ0g"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "wsOKG87yu_Iu" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "states", :id "rbRFVymTW8bE"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflows", :id "bT9QVXwI0wrA"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "jRNY3RaP_t1j" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "let", :id "fyer5FyMxjSR"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "kQMqzaCTkiYj" + :data { + "T" { + :type :expr, :by "root", :at 1539099174710, :id "Ey_uZr_t_XQA" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "DfJUK-slokI9"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "GzxO5EHmR3mx" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "or", :id "DoncE4qOlCNE"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "QdZLCmZNT37u" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":data", :id "UbK5gL75eL1S"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "states", :id "AW3O2Gn781Pm"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "Gr_PghYoIo3L" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "zGr6AD1H7KG0"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "8untTjf6cvgm" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":focused-id", :id "js2AcS_viyP3"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "6JjkcPwN3Ia2"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "5r-jYjq-BvRs" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":edit-workflow?", :id "45DwxfKw92fA"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "false", :id "W8KDsYBOqMfh"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "1--OETSoKDC-" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":base-workflow", :id "eVsOritq_J7i"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "BndLYuEwSlRC"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "cPDBf2UAaMCd" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "ohW7mN8rndc7"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "fBVnwLQNORVl" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "mVBEex52O64i"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "cTD7IOHBuBc8" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "PJTIM7UR81lO"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "zNknMHstLfSk" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "merge", :id "KxOIQvw6dtSQ"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/row", :id "Z-bwhPrfAJ4X"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "FbeX1x_iyONx" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "HSQWsoGSLYjT"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "vWdLb1Z6fnx9" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":padding", :id "7roYVVA88cv-"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "16", :id "nEIG_oNPwvDw"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "FwplA8LTMtcN" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "r6tErPxA-U9I"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "HU66s3LVtChG" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "EqlTzideS5xl"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "gSI76w2wp2H1" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "ywZ-4jNcbTDJ"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "7nx1g_XfdzQ0" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "OE9PeXu_kDMp"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "QRoOOJ8VykYY" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":width", :id "T8qSLES-eg7h"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "200", :id "LbMSUeJjbpTg"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "b2PvGTo2rwt-" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "yYUvXZMJ81sx"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "8J3T2rQ3vnfG" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "g0quwPkrSw5F"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "pt6d6IUYpKLO" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "hyD4XPWvX8AJ"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/row", :id "9wqRCSs0R26E"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "hw2Kl1BEQx9x" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "VaZVhAUKZSbb"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|Workflows", :id "hBKEJwn5NVIU"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "g6yRzHuh82Sc" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "SonUAOXO8wXI"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "dH2_n5WHTEKn" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":font-family", :id "mvZW6lgGaGNr"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/font-fancy", :id "MtzlcnuMc2Ob"} + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "pFn1TGuYotiT" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "list->", :id "6xGBYZ0pwAGO"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "sJKB8gAbF1O8" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "1768BiTgKuMu"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "mFVUSMb45-gj" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "->>", :id "muFJSBleIODB"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflows", :id "W3pTV-HKOLml"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "yu-v5yHg9TKL" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "map-val", :id "WSVTERatsh0q"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "ZJD1z7qd64H5" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "fn", :id "OAjrAE6wpRHu"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "C393OmsIbPWu" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "8JaSC_NpdoPn"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "Gv69t1PsGoZ6" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "6ellaoNQ866E"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "8ChSe5pRuOBJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "MvolYar5YHjN"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "CKpJA_djHjR2" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "6folhc9vwRxf"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "pMs6-KSXp93Z" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "gpyqWDQgWTe6"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "_pkJt-n7QUXd" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":cursor", :id "fRTeI1P-AXLI"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":pointer", :id "UD8VItLYGemV"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "Vi3R1iJfTQ2u" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":padding", :id "IBlB8Lw1nGyr"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|0 8px", :id "uH5J54v4sntY"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "BPscmHZdmqNk" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":margin-bottom", :id "wYS2uK3-J2ON"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "8", :id "49Vsz-VPnYpZ"} + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "UP1sDUWt59Hu" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":min-width", :id "ZIxkUwyl5nFl"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "40", :id "20zshp0K7g5T"} + } + } + "y" { + :type :expr, :by "root", :at 1539099174710, :id "aJ3v9xkbzmuf" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":min-height", :id "m1rziqxoBrzj"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "20", :id "NJjP5nzmhnQo"} + } + } + "yT" { + :type :expr, :by "root", :at 1539099174710, :id "ACJ2aCHiM7Vx" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":border-bottom", :id "AtUFEcmBU7mG"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "Jrk31MSFYqbO" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "str", :id "Kk4PrxqeBDHM"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|1px solid ", :id "wwdXngEFIxYq"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "42Jv7pit0UFi" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "hsl", :id "LjA9iQMhGFQX"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "0", :id "5z3-hl8xV5XO"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "0", :id "sWIpeLDuO1t3"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "90", :id "hOgLdu41s77G"} + } + } + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1539099174710, :id "dWeqXbJOAqjT" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":border-color", :id "XYHhWBWjRsLt"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "BLJOzu1UAVep" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "if", :id "PyTHT_7DYWhl"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "sw9CXkeLuhuK" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "=", :id "Oy2JH6qfijOZ"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "hQo01spKBD8p" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":id", :id "ESmSy3MymLE-"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "sZNpaHr0Xywh"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "IJRj4-mmDu4h" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":focused-id", :id "Qz7n7RufM4CU"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "4DWu2FxZY8i5"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "TvqhBGhyYTRh" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "hsl", :id "VRRLjNtQwNEt"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "0", :id "phLd727vWHn_"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "0", :id "jTlxWDphJukX"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "80", :id "2T9K57OWmbf_"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "oRU_xYkpR7HN" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "hsl", :id "YmGzyki4TrJe"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "0", :id "OiYeNswP6DMz"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "0", :id "Jz2iudT8Ybsn"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "94", :id "ajpG_gtRnLdH"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "pfgwVe38bGr3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-click", :id "b1eX2v0hqJlP"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "HIOumyaYT-ih" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "mutation->", :id "UtOwQrNhARa0"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "fdv95KtmURkm" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "VK0T0DeQGtYE"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "2dzS9k9gMlvf"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":focused-id", :id "cvL_KQ548dzp"} + "v" { + :type :expr, :by "root", :at 1539099174710, :id "TxUpP861rPQ-" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":id", :id "SZSdPjJgNoWn"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "dF60f5SY1vKb"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "y6z-td2H9EOK" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "e9RKY1_Qz8Vc"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "_1P8uewBGPE5" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":name", :id "ixf_vPO_G3zU"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "pgLKrSLSHxV3"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "Pm5seuDxlOmx" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "YdHRrG_XbWg7"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "N1o3Gc59SulK" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "0C82ZYWAw720"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "US80LVRHaE1z" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "button", :id "khjZN3tEac2o"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "kvHjMg48fr4z" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "pGR1Xux3LAEo"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "bgR1zLQX9dOy" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "x_5dmB0_FmX0"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "style/button", :id "OX2RifkB6eLr"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "9x2e_Ikj5BQp" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-click", :id "k4f1mwqRzlQ-"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "TgIGF3yQq7P7" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "fn", :id "Cm---G3MykEZ"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "nc1sSz6vnKhh" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "e", :id "gEhJ_7gyuVUI"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "d!", :id "30Ahn0InvYNg"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "dY2BPyA2RLCk"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "0FfLI6RrZ1jo" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "oYpSQuXIiUok"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "UAOhviZRnwC-" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "M4MSZhDT9o8Q"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "rEjiImEDYEkt"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":edit-workflow?", :id "aVFpZYHAnGQ2"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "true", :id "_ZAMaxOaUpRm"} + "x" {:type :leaf, :by "root", :at 1539099174710, :text ":base-workflow", :id "DvMRhBhcLbpc"} + "y" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "-wNHK9sDQ7ZW"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "BxcF1inDT12m" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "2vq6RGrNwas5"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|add", :id "SxOtA2ABnzLC"} + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "UXx6tjTJRxKM" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "=<", :id "kHDM2PtxT8ZP"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "32", :id "XXV1TJgqtAqW"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "Lhph0c9q-qB4"} + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "bLHLrC3INWPt" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "6rhIOTKSRpoF"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "bOsQwhECrc2t" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "wm_WYo8PIU_N"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "BeHLH5fFdVc7" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "NCOWYKJtJP89"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/flex", :id "XWjIszTY2Xr4"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "anSzMhLGTLtW" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "let", :id "17hpdCeND7aO"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "kdTeu4nG3Iyt" + :data { + "T" { + :type :expr, :by "root", :at 1539099174710, :id "Hby7L3i01WCw" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "focused-id", :id "7ynhT4xQLTX7"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "4dqHQKrPlQAL" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":focused-id", :id "SjsDBdnUgE_7"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "E9lz7RPHldGI"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "WXGUSPD8lfXV" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "if", :id "-6tUnvxlX_5E"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "gkDs5nE09wR1" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "and", :id "UJC_c9thuCoX"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "1e9QhrwdyJVz" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "some?", :id "JgBsBxDDvf7M"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "focused-id", :id "9mL1mIEwRULq"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "Vm-C0s9g56gZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "some?", :id "HXU-ag79TB3H"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "E--cPSH4h86U" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "get", :id "Z_qIbWzs8aBK"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflows", :id "Um7yGh-42qmA"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "focused-id", :id "7jVwDVvIXIp4"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "9qGC-oxggqUn" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "let", :id "UN015_WWdJG1"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "4Tc737YDpq55" + :data { + "T" { + :type :expr, :by "root", :at 1539099174710, :id "0Pg69s82aope" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "NWwDvrp25QC_"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "rcf0u2MLYZet" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "get", :id "6HKTejHiGsgD"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflows", :id "1GHYn56Rq6DO"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "focused-id", :id "W5ScVpCmNjJ_"} + } + } + } + } + "j" { + :type :expr, :by "root", :at 1539099174710, :id "FPddrARyeHP-" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "on-edit!", :id "BWyw6rT79E9e"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "ZjF8NnXszXwj" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "fn", :id "goZR9AFzQ7YI"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "gTqnv_3_Vez3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "Or-q-XbE37G0"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "zmvUU58LGhXg" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "M60a8sjCfAuh"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "%cursor", :id "t4N4-xvaWTSl"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "Ddef2Q0kGfj1" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "GIHb-f2J4DFM"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "B8JXQUNPuZfY"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":edit-workflow?", :id "3DRhAgxXdhyv"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "true", :id "IZVK1J3qcqld"} + "x" {:type :leaf, :by "root", :at 1539099174710, :text ":base-workflow", :id "g7ABX0rIOuh1"} + "y" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "bku-deC2h-Q9"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "hf0E50dKWci3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "cursor->", :id "ll8orA96QNIE"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":detail", :id "Y2kGoMwNsMg5"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "comp-workflow-detail", :id "gdZb7UJ5NJSQ"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "states", :id "Id95v-Xsmmgt"} + "x" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "7TfUYJnUJGAR"} + "y" {:type :leaf, :by "root", :at 1539099174710, :text "on-edit!", :id "kEhi2V5b-DWP"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "Av0sHhINIjyV" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "5tHrnbMjfD-9"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "RyT0TdrNPW1s" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "KFXvsuOR1GG6"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "6wDCArFp04dY" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "ae0z8xq-KRuu"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|Nothing", :id "aDqrqwTx9JrT"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "0UpDS6XbWYbC" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "1P_N3P2J23kf"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "CMduw8UCyCE3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":font-family", :id "aTcxh2xx2i7P"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/font-fancy", :id "zeK6eOj8gsj7"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099174710, :id "f-A8PUM2PAY2" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "if", :id "Tu2sIM34MZvo"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "--A7LgEuvTkG" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":edit-workflow?", :id "lKeDLFnAdXEj"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "NoqU8tnodCRr"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "qSzPwPZ0ecTB" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "let", :id "WO7iqz-uvkQI"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "cGhO8oaiLicd" + :data { + "T" { + :type :expr, :by "root", :at 1539099174710, :id "TIwPWAhxqLKf" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "on-close!", :id "cmgk15MCDKQh"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "0QSU1r45QaF1" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "fn", :id "_HvxaIPPIt5A"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "ROHggbGFDPeb" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "-C5OKksj3UDU"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "I-Y0qiI8QSyG" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "DVWdOT9IM5JA"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "%cursor", :id "7P6g6Ox1T2-u"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "-xm8F9F-5cAQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "WXBdP00vkq3A"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "ynvAZ8nbUuxS"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":edit-workflow?", :id "GgAZfmsXrnS3"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "false", :id "rOPnYwdZ4yee"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "OnrdBd80IkuE" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "comp-dialog", :id "jcv8JJStueyF"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "on-close!", :id "H9U012Fbsa8Z"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "RBvUm2TFjPF2" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "cursor->", :id "CboxAyf8M3UC"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":editor", :id "8aLOwotVt8n4"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "comp-workflow-editor", :id "WiT3MZifV3mD"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "states", :id "X9UC5w4g_UWm"} + "x" {:type :leaf, :by "root", :at 1539099174710, :text "on-close!", :id "u3rorCqQfRQ3"} + "y" { + :type :expr, :by "root", :at 1539099174710, :id "RQrZdM3QgjeK" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":base-workflow", :id "gzIvqVdAZ0cE"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "Ou6pYm4URGzX"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "comp-workflow-detail" { + :type :expr, :by "root", :at 1539099174710, :id "J16HL9kdDQ3A" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "defcomp", :id "elbY1Q1dCjy_"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "comp-workflow-detail", :id "RGcaouafW9Pg"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "5c7qNdGosa-x" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "states", :id "48lH3YxJ51AC"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "CnuaByU8IRld"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "on-edit!", :id "CY3AhXkPIeiU"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "rVy3UMWQRkc4" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "let", :id "r0AUSXCe46sF"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "bicnBRb4VMgU" + :data { + "T" { + :type :expr, :by "root", :at 1539099174710, :id "Byx295p_aVzu" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "Ck8iuUkb5a7P"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "bDvntY85dck6" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "or", :id "RAunkQECZWQp"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "fp_eAPutNGVb" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":data", :id "yMcOiWODBqQo"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "states", :id "suLuPlRmDYQ8"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "UNmYJ27lXe_G" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "S5j9kh3_f_J0"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "jgpaAiarUU5n" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":edit-command?", :id "O5r7Zv44_O6m"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "false", :id "ilt_irRwP7rj"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "pq9qMOqfa1tk" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":base-command", :id "SDaC5Y6usgE5"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "v1Apg0d8feiI"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "xPuiV0ClNE2h" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "d6MWw7wLeBTp"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "et2ijrWGv0n-" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "zOqAXQ2HHVxk"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "fWXSN3yfvabY" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "_T0bzXRFxzEA"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "LuKjtUM1YQyE" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "AFm5RKm1YTw3"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "Phj6n6UFpCAD" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "xQRyUDUC6VaT"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "2QmEOpBDPQxd" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "merge", :id "yw5q6iox-2-N"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/row", :id "PiTRBxqrax3o"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "hum_At3kH9dy" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "F9Cr6I2N8m-R"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "C2RZo-8sSGrr" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":align-items", :id "TwtM0k8pZHJi"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":center", :id "xiKmP77o4ynm"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "OkZ97YlwJS9y" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "Ckrk0-0-Lv8h"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "qJDgf7I6_SXC" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":name", :id "d-IW3Mstlr4N"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "kS_XZsKUl67w"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "d9_U1fNJa9Io" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "tOGUK9kM_j4X"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "Hb2ib3s3HVVo" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":font-size", :id "hFNwjLQgrzhv"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "24", :id "OLIxJKIqCOHi"} + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "JnojIHgxeKwT" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "=<", :id "9ntq9WCpuZOK"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "8", :id "0emJLu2HmcxZ"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "X7Tp4_KvTeol"} + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "LvVoKjq9mBBP" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "T-_zjLB1UUu3"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "kGyKhSnul1Dk" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":base-dir", :id "hQ02u7lHjpSc"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "3ykPvf1D_c_s"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "xOQ74utpdH0U" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "gXncHrIXSJat"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "fwEw2iseleVG" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":font-family", :id "P6AbKoeiPJop"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/font-code", :id "sn9we6w6DXlY"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "a8H0wh9ft1Af" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":color", :id "14kSmLgtXaGT"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "CewpaSLEXYm6" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "hsl", :id "QhCb8L8HCQZ3"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "0", :id "Jm1C5gmSLvdj"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "0", :id "nurylNHU32PW"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "70", :id "1OqQQJApDe23"} + } + } + } + } + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099174710, :id "1yOGdhtHsCb_" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "span", :id "m6gBlCa9JEVz"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "ZVcLTjlEmuDL" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "YbfIw9sny77p"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "4GwC7yh7quIS" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "7PBmDGrIt581"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "style/link", :id "TDMGk9oEZzZt"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "fzw4G6rG_ipQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":inner-text", :id "f2PpyqusNZxH"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|edit", :id "3SQsmsAahuyI"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "BUbk08bXViSn" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-click", :id "CCJhBPV4VKRF"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "LCjIR-Sfjtx1" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "fn", :id "xwd6nv2BT-Qg"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "3Wvd0lsOOHB3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "e", :id "X8DvJbhk1MIk"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "d!", :id "q8kwCQLlniZt"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "uxPQDkuk2r4A"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "FDwySS5G2M5b" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "on-edit!", :id "vxLKtyrvW9B5"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "azc9WMK482p-"} + } + } + } + } + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099174710, :id "wL1JIodjr-F8" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "span", :id "l_glGaVHuyQ1"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "6_c1Z-LGfS8y" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "6SILYAyQ-jcj"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "k_x5gShG9lcI" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "pGg6OR7Cj8Lq"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "style/link", :id "0eGbSf9aOD1g"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "Tjm-JbHcZvyL" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":inner-text", :id "Q5rKTmm7e2Rt"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|rm", :id "fh6aR9BSLM9X"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "4PZr0oopzK73" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-click", :id "ENQ-rScKdPPV"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "oI2WSJkf3LqZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "action->", :id "yibV3OpXkorl"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":workflow/remove", :id "CVrWikxVsGwM"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "O9kk1rn7msxn" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":id", :id "kMfKMtwvrKqW"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "wrADvDzOU3wh"} + } + } + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "aVHmW57wZzaw" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "list->", :id "YE9Q4r0g6nt3"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "S_1RSN_TaPqf" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "iOFLWppCRIhp"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "m1XQT1V97_Nl" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "->>", :id "K8yfKUmin-xq"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "gHn0ValgQkLN" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":commands", :id "WztASsiBMiH3"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "o1AtgLWApdN5"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "328au1DLXYjm" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "map", :id "m_937WZ94j1C"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "VbIBP3KOq1Lt" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "fn", :id "N4a9ng3ELcxe"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "s-IvacbXiKna" + :data { + "T" { + :type :expr, :by "root", :at 1539099174710, :id "uJo00oInhVgz" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "UTZiXekMfhcU"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "k", :id "EIdFpHgSoftv"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "command", :id "P5yJCRpwWPH-"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "kQBjT2qN3_Y5" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "rmkzN9sHQoI2"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "k", :id "79vjbInul2MH"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "hn8zIWGHp07r" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "44SzVLC4jyD1"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "5HAzsGf82VkS" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "MlMgjF2OMWCP"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "VCbbVLwktYGP" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "N2TtmmOR6VZz"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "NcO6hOaV5x2f" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "H4KbktpeRs5g"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "j3f0bgN2Xinv" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":font-family", :id "cYoVVNABzWnc"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/font-code", :id "9Q62KyHFULiD"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "2k4XRk_RvZPH" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "GsUysvCkSbpD"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "qQVWfd0C_PlX" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":path", :id "JdZzl_yysRKG"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "command", :id "YjfHaUCuprXr"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "_TrJW9VnPWQ3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "CYBjjtJvI689"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "-g3X6pLlANHh" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":display", :id "CMfNBvQgbMZ5"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":inline-block", :id "gfDskDljTY1-"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "OJtyKxOQ2FGZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":min-width", :id "wTJaR6hT4Ghy"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "200", :id "jzQX3TNpPGN5"} + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "WWXKJzQzjDIn" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "=<", :id "4Dyftpw5tonL"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "8", :id "JwaJUTvPfgsY"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "kUhHR410zfsy"} + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "-x5xRjHrKqCV" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "8ResFfL-w5O9"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "Vh6m3ykAePS1" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":code", :id "eoMXYkujROcl"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "command", :id "shr12e7cORsj"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "3uN86471ycgp" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "CXSPibmCSOrH"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "ijdJaisMY8Ex" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":background-color", :id "J40AWdn95W7L"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "Bf2NMvputDT_" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "hsl", :id "gDXWxhTFUI0L"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "0", :id "STelW6yoT4eJ"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "0", :id "PPnwSyP3Imp7"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "95", :id "-IMku_fF_9mi"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "G-xbiqspuxnL" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":padding", :id "8MXQi_gw-NFR"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|0 8px", :id "77gy84zHGkJh"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "Pb8OFixn56wR" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":display", :id "CoU-tCOWeL45"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":inline-block", :id "T7GF8aBkdXDn"} + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "PERp7dDRB8ew" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":min-width", :id "l7VQGraY1tgZ"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "320", :id "mwfeYX462xWN"} + } + } + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099174710, :id "zZv0_ohM-acb" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "span", :id "8FwBVSyfBybV"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "t4mnvzhZRr9Y" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "SNWFs0CXgXwD"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "33EYwhVG3_AP" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "IXFn4qlNeoyD"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "style/link", :id "lZ_MWVX25309"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "2w5nkEZu-jm0" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":inner-text", :id "AaRULWAgXKNw"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|edit", :id "JMMI3iSPSQW6"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "KTZM4PnyuEDI" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-click", :id "FUSnPqI3AXHa"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "rqGkxsR1qEfr" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "mutation->", :id "635BjGqPsHgQ"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "fqPdMYFCSmBB" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "zbD9WFtNKPbN"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "69YzHJjjvFkK"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":edit-command?", :id "hT3qCkP_M2Oe"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "true", :id "T-k35XWw716M"} + "x" {:type :leaf, :by "root", :at 1539099174710, :text ":base-command", :id "Ocy1OkJjoZjj"} + "y" {:type :leaf, :by "root", :at 1539099174710, :text "command", :id "i4Ijpki2YEdE"} + } + } + } + } + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099174710, :id "C0qiA6UCh1DO" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "span", :id "5_2-dXGrovis"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "OHXy-OGl27db" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "--MonGqeK9Xm"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "Tll08l48mo9Z" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "PQB8IGOxEZWI"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "style/link", :id "w-9pPwplCJhM"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "bjJkaZW6cZ72" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":inner-text", :id "rCR8EssXSpuP"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|rm", :id "1shVpxgZATui"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "uIqxMRsZBJUx" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-click", :id "NnS8GbhwrPoz"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "_AaGiExOnw-9" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "action->", :id "PUaSRZSz0go3"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":workflow/remove-command", :id "GnEWLx53Apau"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "rFQmCBSpbuPD" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "kJCRn230z_69"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "OmqUgqP1dj-S" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":id", :id "k3YYSpCNHY_g"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "aW7CIksyQqFw"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "HRWsiO-4Fs9v" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":id", :id "nI0XXQ0W2ilM"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "command", :id "u39xH6qjxXit"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "fa-ae6BCikDg" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "=<", :id "1bkASIflkXDH"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "4Z5bzist1F5R"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "16", :id "x1G4PHM2yr_Y"} + } + } + "y" { + :type :expr, :by "root", :at 1539099174710, :id "-lEWhOkVX3kV" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "66ZFG9qsGBnQ"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "kwIbLDVHqEGc" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "Y4fWKd36lOsK"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "LdpFtYVLzWC8" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "button", :id "3hdyseBRtSb5"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "tWfSNzdQ1nxU" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "Ilh-Va311GC-"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "XuQvALUMtilj" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "p1-81vHkxRAq"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "style/button", :id "xxenuxAxv0A2"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "XthpreQwZgzP" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-click", :id "EwavWmpqlnIa"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "k0cYw0qLdG2X" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "fn", :id "N7thptCaLfI7"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "gFpnKSBMoG8w" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "e", :id "-Zb_bkxofh96"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "d!", :id "MyCQpmfiytap"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "gdJXUOCewooA"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "mUXxg7uLNo6o" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "Jq2J6mWHOrtu"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "z9N5lBO2_xEx" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "TU7Ky986T9eT"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "ozDRouOn1P7p"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":edit-command?", :id "-QFSPopVtIhB"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "true", :id "1K_xeZSwd44P"} + "x" {:type :leaf, :by "root", :at 1539099174710, :text ":base-command", :id "apSQn5UE230D"} + "y" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "U2c74x9KkFLO"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "xKIziEKF2E5B" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "ewzQANiiDcTw"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|add", :id "NGpi2AeHhx2v"} + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099174710, :id "uzZkXEGCOdc-" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "if", :id "Jz-c7obBD-Vp"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "LGmcW-9opcAP" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":edit-command?", :id "RHGofL0WG_TG"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "DYw1f5suloMV"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "2oX3R6WDOVMU" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "let", :id "Vk_xBfweNKSn"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "prU972usBggh" + :data { + "T" { + :type :expr, :by "root", :at 1539099174710, :id "y1ef6enADkO8" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "on-close!", :id "_a8TZBz987cW"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "dsSoMeJ2fV-j" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "fn", :id "yb4F-whPIR5R"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "oJ9Wjjdr5oTZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "Wb_a8SzvNpHG"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "l0wkUhNwPLKM" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "println", :id "t4WYsTZ-jLrs"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|cursor", :id "OYhOC2ZipAfr"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "%cursor", :id "0ySA_7pR5ENP"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "DjLC835s0S_7" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "L-awXckZREN2"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "%cursor", :id "SZAcKH4iy_un"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "mBvPgBHwgly-" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "aFZcSjlT7rXC"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "wc_aSTk0y7_i"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":edit-command?", :id "zJ2GofSfDvo_"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "false", :id "52C1JTTmG5dZ"} + } + } + } + } + } + } + } + } + "j" { + :type :expr, :by "root", :at 1539099174710, :id "xZ-tgMd45EyW" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "workflow-id", :id "dhbwC5NaCUdP"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "T1ZUhOeTiyGi" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":id", :id "BJ7GDXWC3F4z"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "workflow", :id "XaaxsnO73DSc"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "wb-Dxx9vjuFj" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "comp-dialog", :id "9rt7_b64m1Hu"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "on-close!", :id "XOWIk6MZaDM3"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "lg5x6R6wkzyr" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "cursor->", :id "Q8FkskKx1L52"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":command", :id "cZQTlCsnlpvz"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "comp-command-editor", :id "V3TmeQemCG5P"} + "v" {:type :leaf, :by "root", :at 1539099174710, :text "states", :id "1nY5Y1MdsHU0"} + "x" {:type :leaf, :by "root", :at 1539099174710, :text "on-close!", :id "TdZFcVZOEzK4"} + "y" {:type :leaf, :by "root", :at 1539099174710, :text "workflow-id", :id "1DQpa6yvUqu_"} + "yT" { + :type :expr, :by "root", :at 1539099174710, :id "IGfb-VGCjSrB" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":base-command", :id "f2a8KL8qi3Ce"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "RocOv7TBXE7k"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "comp-workflow-editor" { + :type :expr, :by "root", :at 1539099174710, :id "o9U_veoO1QBZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "defcomp", :id "6JcJS_-l5_NV"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "comp-workflow-editor", :id "rZ_in4-FD3ZM"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "-CNlsayoureA" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "states", :id "ArsS8Igbzyuy"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "on-close!", :id "pEG3sBVEK9I8"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "base-workflow", :id "Cn0NZ_mwUrmc"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "Uh5-zSSP04HR" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "let", :id "drAul9lU59r-"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "71cqLRKDd_dj" + :data { + "T" { + :type :expr, :by "root", :at 1539099174710, :id "ft2rUpCjV8yj" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "g8llm-0NI14K"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "_ggK2kHO8iNO" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "or", :id "PXXvl8bHZXg6"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "7yW34KT4NNkI" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":data", :id "SswTSClIluwd"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "states", :id "DbFPBFrWLj88"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "x2PMRpPFp8YU" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "if", :id "V6epnXoAWHby"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "gFXEA7XvO6Zu" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "some?", :id "ADG3ezxaqmsY"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "base-workflow", :id "L1kn0fFafPjL"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "7tFIrm-vcMRj" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "select-keys", :id "rpRfQP2jbura"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "base-workflow", :id "G44a6od61Ih6"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "JYRkXA6tzaXV" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "Cg60euZtB1Rb"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":name", :id "q4xFFplH1-oo"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":base-dir", :id "7Sl50CmqGtqL"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "MSeFSs8mP1yI" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "L5GebBm2qp_G"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "hrE3o6Mf62QV" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":name", :id "r0qNSECuiCLI"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|", :id "nxLgI6id8dML"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "-ej3XOAqLdqk" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":base-dir", :id "-bpPKmc0AhL1"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|./", :id "W9XmhbnYmOQN"} + } + } + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "l0L-jNKqtqbR" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "8j3L50Fgiati"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "TqX5zjb2GerQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "EIYEWG8I-1BZ"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "_EjnN1wILDi3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "T7XBfuenr3od"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "BusvLiip2dDG" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "x8c5_P62yItA"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "1yEMF3UQFf58" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "kqPRZ7YQb34B"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|Workflow", :id "K-mOgPAJah0R"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "4mIlT0srttxj" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "K5QYTSOw5_-y"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "hW88Fra4tpAO" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "lPq4DHx_KWUn"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "H2SMZeSew4d5" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "input", :id "lFaSKXbZ5Bsc"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "zUoxnEF7jbT8" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "YlsjMPM416Ge"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "O8zisEivHtQs" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "FoW1isdfBY8Q"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "eNgjM0yLZdtR" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "merge", :id "NRtaF53JFiYr"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/input", :id "6LZcOltkr6dL"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "__FVuFROQV04" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "ZEc8HMcIEZO8"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "MK74HgRw2Sj9" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":width", :id "i4ubP-ii9VAG"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "240", :id "88MvptKGmqc_"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "5gXqOpklaz-3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":placeholder", :id "g6dBnwNx9F3J"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|Workflow name", :id "wG-h1Y9gfoj_"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "GTuS6-Yuzx1y" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":value", :id "mhBSBfFznTJM"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "rI2kES5ZB084" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":name", :id "KXUfMAzHwJsC"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "Sdbzgkzqyb-7"} + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "87BB0N_eX3bE" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-input", :id "3hl4LMTcWlnR"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "2msESgjJBeIv" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "mutation->", :id "UEgyNccpXKYy"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "VZxQ73fM1nhc" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "lJJDpUDa9bO9"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "uf-0z1zophEu"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":name", :id "iSzfEbkmUJ6y"} + "v" { + :type :expr, :by "root", :at 1539099174710, :id "k45bJCieWDI9" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":value", :id "H5woWEcToL4L"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "%e", :id "ic2zkRczQS35"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "uFb4CnaFPlwa" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "=<", :id "H9qQbmuq4sku"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "bTDJXnqMSWkn"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "16", :id "vuBmCUYBKTT2"} + } + } + "y" { + :type :expr, :by "root", :at 1539099174710, :id "XYJ3LvTdzi_g" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "tKTl_rwBVZAh"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "T0yxwNN9iIN-" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "8wcL0RYk1rZf"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "5s771xA8l4G9" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "input", :id "ZerqWqu8Aq-g"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "JB1VQDwYtn7A" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "ZcTbpR9IEvYf"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "5Yaj-Awlz_EB" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "KK5ZPoguYzAw"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "GlTanG9QxfBf" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "merge", :id "qWmkvz1Mh0qZ"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/input", :id "RdZiZeH7Js8b"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "8vvGCqgkaO9Q" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "mf-0EizhNOwi"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "h0Qyz3PbNn-y" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":width", :id "UEoX2Zdm0gcf"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "240", :id "kHDobSwj0j2y"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "HHIJRccj_A0b" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":placeholder", :id "Dle7oqlRvd4M"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|Base directory", :id "pkgmNvj5NlpV"} + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "LnAW6rYd2ZV8" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":value", :id "pNeXJXrA-iW3"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "m_GhCa7LKyu7" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":base-dir", :id "XSxxyoglyA7v"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "K5uumpMYe-8H"} + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "SPAaaC6GyF-J" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-input", :id "iG3TxWpj4WTJ"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "fxRp5LjGQoJp" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "mutation->", :id "KV-GU_t4y71c"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "Qepx3L05le1n" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "NbzngPXzyvEy"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "I6xWdNpyS1Et"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":base-dir", :id "R7D4OvHviEVd"} + "v" { + :type :expr, :by "root", :at 1539099174710, :id "Hw-A7yrt17_E" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":value", :id "ipW8h_UP1jOB"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "%e", :id "q-gOMpM2DOjo"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099174710, :id "6UXWYta2Uhz3" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "=<", :id "uekDwrKiSV2L"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "oUmvi74JgeWY"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "16", :id "oUj_tu5DcaxU"} + } + } + "yj" { + :type :expr, :by "root", :at 1539099174710, :id "3Kk7Y_i94Q_j" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "div", :id "tHbJtsHkDsv1"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "0pFRyPe-HD4M" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "jlFEFQ8Gti9j"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "lJmdRK3-XFPj" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "QqmBvO70Oz7H"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "ui/row-parted", :id "yhK3Nb01o2-Y"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "2fiSbfPlJBep" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "span", :id "_IvqHpC2yimt"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "71KWbouOKMnE" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "hyq-K1MQBqdI"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "zKyeraahY1X7" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "button", :id "tDp85pubdpA0"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "D05z_aREiLM5" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "{}", :id "vAk3E9_1LQ94"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "vsArS8B-jMoe" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":style", :id "XgF-Y_uvqCyP"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "style/button", :id "V1rsRjhSn11d"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "IYe9Bg4oGTqB" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":on-click", :id "2nvgsH9tDCpz"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "2uiuhRBRom4I" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "fn", :id "FEaRuZripGPq"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "hw39y98PIp8i" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "e", :id "Y15sEIZbkUxJ"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "d!", :id "_qU0VTgh6Ekc"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "V1O5GASxOeZl"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "1F2Ui46Ozsas" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "let", :id "KTsDGSf9HCsN"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "ReZHkU4KYebZ" + :data { + "T" { + :type :expr, :by "root", :at 1539099174710, :id "kjq6hPp00ehs" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "data", :id "hbVLhtIPVSqX"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "ICeEIyUtjMll" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "select-keys", :id "Xnj2AN0RcCyk"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "state", :id "MBgxYGaH0KRP"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "ADdaXi51-krx" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "[]", :id "FJmqFaZrFjkR"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":name", :id "6z1ZeO6Ob2HZ"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":base-dir", :id "REWJx1dC5TL1"} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "ul8Mt0vzPt-j" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "if", :id "i4P2WZ81IjSJ"} + "j" { + :type :expr, :by "root", :at 1539099174710, :id "WMVIQKA4Zyjv" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "some?", :id "8IsvMmqU6sVH"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "base-workflow", :id "oUJz_7zpbt0I"} + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "kcQaEg26BASu" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "d!", :id "qZAw1BhJMebb"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":workflow/edit", :id "W9wcZo6tVieM"} + "r" { + :type :expr, :by "root", :at 1539099174710, :id "FKMdLdqolOPp" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "assoc", :id "EP5yFDkoA0YF"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "data", :id "zueHtPwieUbB"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text ":id", :id "2g0M0IHL9RPv"} + "v" { + :type :expr, :by "root", :at 1539099174710, :id "dofGHA4iiPxy" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text ":id", :id "D0qKySkrTfX1"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "base-workflow", :id "t3npHb2bLq6l"} + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "-82zgIfaIWse" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "d!", :id "VGCHJtwrA5tc"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text ":workflow/create", :id "lA75tvUCE6YH"} + "r" {:type :leaf, :by "root", :at 1539099174710, :text "data", :id "oCcnRv4i63nT"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099174710, :id "1qzlNSJnxr0l" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "HT0UtWjYSL6v"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "nil", :id "TMWWbtNGbZkH"} + } + } + "x" { + :type :expr, :by "root", :at 1539099174710, :id "mRm54u9uSDEI" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "on-close!", :id "JTuUtCdpcibG"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "m!", :id "s2x6cf0I5qA-"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099174710, :id "66QjddZWDPZi" + :data { + "T" {:type :leaf, :by "root", :at 1539099174710, :text "<>", :id "oDX9XnGrB-iV"} + "j" {:type :leaf, :by "root", :at 1539099174710, :text "|Create Workflow", :id "tEwOiwj5m4mo"} + } + } + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539099174710, :id "lgrdolZdOsX" + :data {} + } + } + "app.config" { + :ns { + :type :expr, :by "root", :at 1527788708227, :id "HJghs43Tk7" + :data { + "T" {:type :leaf, :by "root", :at 1527788708227, :text "ns", :id "HJb3jEn6kX"} + "j" {:type :leaf, :by "root", :at 1527788708227, :text "app.config", :id "BJfhoN3pym"} + "r" { + :type :expr, :by "root", :at 1528098188887, :id "rJxr9pwzlX" + :data { + "T" {:type :leaf, :by "root", :at 1528098190433, :text ":require", :id "B1HcpwMgm"} + "j" { + :type :expr, :by "root", :at 1528098190659, :id "HJDqpvMlm" + :data { + "T" {:type :leaf, :by "root", :at 1528098190811, :text "[]", :id "BJ_Lc6Dfl7"} + "j" {:type :leaf, :by "root", :at 1528098192582, :text "app.util", :id "BJGP9TPzlQ"} + "r" {:type :leaf, :by "root", :at 1528098193514, :text ":refer", :id "SJgY56PzgX"} + "v" { + :type :expr, :by "root", :at 1528098193724, :id "Syl5qTvGlm" + :data { + "T" {:type :leaf, :by "root", :at 1528098194516, :text "[]", :id "Bkccpvzgm"} + "j" {:type :leaf, :by "root", :at 1528098196255, :text "get-env!", :id "S1oc6PGgX"} + } + } + } + } + } + } + } + } + :defs { + "bundle-builds" { + :type :expr, :by "root", :at 1528098049749, :id "Byx5W6PMgm" + :data { + "T" {:type :leaf, :by "root", :at 1528098052037, :text "def", :id "HJbcbTvzgX"} + "j" {:type :leaf, :by "root", :at 1528098049749, :text "bundle-builds", :id "HkfcWawGxX"} + "r" { + :type :expr, :by "root", :at 1528098049749, :id "H1Q9ZawflX" + :data { + "T" {:type :leaf, :by "root", :at 1528098054289, :text "#{}", :id "BklpZpPMgX"} + "j" {:type :leaf, :by "root", :at 1528098055936, :text "\"release", :id "SJG0-TwGxQ"} + "r" {:type :leaf, :by "root", :at 1528098062585, :text "\"local-bundle", :id "S17ezpvMgX"} + } + } + } + } + "dev?" { + :type :expr, :by "root", :at 1521911283590, :id "rJe2eIb4qG" + :data { + "T" {:type :leaf, :by "root", :at 1521911286581, :text "def", :id "SkZ2x8-45f"} + "j" {:type :leaf, :by "root", :at 1521911283590, :text "dev?", :id "SJzhl8WEcf"} + "r" { + :type :expr, :by "root", :at 1528098153763, :id "Bkgfdpvflm" + :data { + "D" {:type :leaf, :by "root", :at 1528098154375, :text "if", :id "ry-Gd6vMgm"} + "L" { + :type :expr, :by "root", :at 1528098154941, :id "Skg7daDGlm" + :data { + "T" {:type :leaf, :by "root", :at 1528098158199, :text "exists?", :id "SJX_awGgQ"} + "j" {:type :leaf, :by "root", :at 1528098162472, :text "js/window", :id "HkWL_pPMg7"} + } + } + "T" { + :type :expr, :by "root", :at 1521911342471, :id "Hyl84LZVqz" + :data { + "D" {:type :leaf, :by "root", :at 1521911343096, :text "do", :id "SkvVLZE5G"} + "L" {:type :leaf, :by "root", :at 1521911350882, :text "^boolean", :id "Byec48W4cM"} + "T" {:type :leaf, :by "root", :at 1521911316901, :text "js/goog.DEBUG", :id "BJXyZUWV5G"} + } + } + "j" { + :type :expr, :by "root", :at 1528098163477, :id "rJ-s_TvGxm" + :data { + "T" {:type :leaf, :by "root", :at 1528098167249, :text "not", :id "rJ-s_TvGxmleaf"} + "j" { + :type :expr, :by "root", :at 1528098167518, :id "HkxtpvMgm" + :data { + "T" {:type :leaf, :by "root", :at 1528098169755, :text "contains?", :id "r1G1YavzgQ"} + "j" {:type :leaf, :by "root", :at 1528098174587, :text "bundle-builds", :id "r1WXtpvMe7"} + "r" { + :type :expr, :by "root", :at 1528098180617, :id "r1atpwfe7" + :data { + "T" {:type :leaf, :by "root", :at 1528098183408, :text "get-env!", :id "BktF6vGem"} + "j" {:type :leaf, :by "root", :at 1528995803802, :text "\"mode", :id "rJeqaDMx7"} + } + } + } + } + } + } + } + } + } + } + "site" { + :type :expr, :id "ryy9lUWg0BW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Syx9g8-l0B-", :text "def", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Hy-9x8beASZ", :text "site", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "ByG9eLZlAB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1Q5x8Zl0Hb", :text "{}", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HyV5eUZgRrZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkSqx8WgCr-", :text ":storage-key", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Sk85xIbgRHW", :text "\"termina", :by "root", :at 1539100172429} + } + } + "r" { + :type :expr, :id "H1w9gIblRHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rydqx8blRHW", :text ":port", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJF9g8-gCHZ", :text "11014", :by "root", :at 1539100073858} + } + } + "t" { + :type :expr, :by "root", :at 1527867502467, :id "BkeUud1ye7" + :data { + "T" {:type :leaf, :by "root", :at 1527867504737, :text ":title", :id "BkeUud1ye7leaf"} + "j" {:type :leaf, :by "root", :at 1539100077443, :text "\"Termina", :id "H1zKduykx7"} + } + } + "u" { + :type :expr, :by "root", :at 1527867511986, :id "r1gxKOykeQ" + :data { + "T" {:type :leaf, :by "root", :at 1527867512819, :text ":icon", :id "r1gxKOykeQleaf"} + "j" {:type :leaf, :by "root", :at 1539100146481, :text "\"http://cdn.tiye.me/logo/termina.png", :id "B1SY_yJx7"} + } + } + "v" { + :type :expr, :by "root", :at 1527615278481, :id "rJ-8EyzsyQ" + :data { + "T" {:type :leaf, :by "root", :at 1527615280984, :text ":dev-ui", :id "rJ-8EyzsyQleaf"} + "j" {:type :leaf, :by "root", :at 1527615358738, :text "\"http://localhost:8100/main.css", :id "HklSKJMi1m"} + } + } + "x" { + :type :expr, :by "root", :at 1527615281625, :id "BJ5NJGsyX" + :data { + "T" {:type :leaf, :by "root", :at 1527615283846, :text ":release-ui", :id "BJ5NJGsyXleaf"} + "j" {:type :leaf, :by "root", :at 1527615339502, :text "\"http://cdn.tiye.me/favored-fonts/main.css", :id "r1gz_kzjkQ"} + } + } + "x5" { + :type :expr, :by "root", :at 1528009883995, :id "ByxEoNG-lQ" + :data { + "T" {:type :leaf, :by "root", :at 1528009886059, :text ":cdn-url", :id "ByxEoNG-lQleaf"} + "j" {:type :leaf, :by "root", :at 1539100151704, :text "\"http://cdn.tiye.me/termina/", :id "BkPo4GbeQ"} + } + } + "xD" { + :type :expr, :by "root", :at 1528009877862, :id "ryC9NMZl7" + :data { + "T" {:type :leaf, :by "root", :at 1528009882805, :text ":cdn-folder", :id "ryC9NMZl7leaf"} + "j" {:type :leaf, :by "root", :at 1539100156539, :text "\"tiye.me:cdn/termina", :id "rkx3pVMWxX"} + } + } + "yT" { + :type :expr, :by "root", :at 1527866712917, :id "SyebDS1kgQ" + :data { + "T" {:type :leaf, :by "root", :at 1528009970172, :text ":upload-folder", :id "SyebDS1kgQleaf"} + "j" {:type :leaf, :by "root", :at 1539100163352, :text "\"tiye.me:repo/mvc-works/termina/", :id "BymiPr1kgm"} + } + } + "yj" { + :type :expr, :by "root", :at 1527866893140, :id "BJxHfLkygX" + :data { + "T" {:type :leaf, :by "root", :at 1528010247576, :text ":server-folder", :id "BJxHfLkygXleaf"} + "j" {:type :leaf, :by "root", :at 1539100166623, :text "\"tiye.me:servers/termina", :id "S1gpf8y1gQ"} + } + } + "yr" { + :type :expr, :by "B1y7Rc-Zz", :at 1535565550489, :id "fLHGwxYEcw" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565552318, :text ":theme", :id "fLHGwxYEcwleaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565554474, :text "\"#eeeeff", :id "iZkrTQHtV"} + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1527788708227, :id "ByX2iV3p1m" + :data {} + } + } + "app.connection" { + :ns { + :type :expr, :id "HJfR5Ulx0r-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1mAqLlx0Hb", :text "ns", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HkVA5IglCBZ", :text "app.connection", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "SkRA5IelABW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJ11ecUlxAHZ", :text ":require", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "S1lkg9LexAH-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJZylc8gg0BW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HkfklqIleABZ", :text "cljs.reader", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "rkQkx9IleCSZ", :text ":as", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "SJ4Jl9UggArW", :text "reader", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "ByZxe5IxgRr-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1fgecLllAH-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJQxlqIgeCS-", :text "recollect.patch", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "B1Elx5IelAS-", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "rkSxg5IxeCBb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ByUlgqLxxAH-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "B1DggqLleRrW", :text "patch-twig", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + :defs { + "*global-ws" { + :type :expr, :id "HylKN0q-Zz", :by "B1y7Rc-Zz", :at 1512316464963 + :data { + "T" {:type :leaf, :text "defonce", :id "H1bt40qZZf", :by "B1y7Rc-Zz", :at 1512316474419} + "j" {:type :leaf, :text "*global-ws", :id "B1zFNRc-ZM", :by "B1y7Rc-Zz", :at 1512316464963} + "r" { + :type :expr, :id "rkQtEAcWWM", :by "B1y7Rc-Zz", :at 1512316464963 + :data { + "T" {:type :leaf, :text "atom", :id "HkHBRcZ-M", :by "B1y7Rc-Zz", :at 1512316477626} + "j" {:type :leaf, :text "nil", :id "rJb8rA9-ZG", :by "B1y7Rc-Zz", :at 1512316478207} + } + } + } + } + "send!" { + :type :expr, :id "SJCxe9UllRS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rykZx5LxeAH-", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJlbecIlxASW", :text "send!", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "rJW-xqIegASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJfWgc8ee0HZ", :text "op", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S1QZx9Ull0B-", :text "op-data", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "BkJOVoWbz", :by "B1y7Rc-Zz", :at 1512318054937 + :data { + "D" {:type :leaf, :text "let", :id "ryx1OEobZf", :by "B1y7Rc-Zz", :at 1512318055669} + "L" { + :type :expr, :id "BJMxOEsbZM", :by "B1y7Rc-Zz", :at 1512318056023 + :data { + "T" { + :type :expr, :id "rk7xuVoZbM", :by "B1y7Rc-Zz", :at 1512318056170 + :data { + "T" {:type :leaf, :text "ws", :id "SyZld4jZ-G", :by "B1y7Rc-Zz", :at 1512318056937} + "j" {:type :leaf, :text "@*global-ws", :id "rJb-_VjW-G", :by "B1y7Rc-Zz", :at 1512318060945} + } + } + } + } + "T" { + :type :expr, :id "HJoOVobZf", :by "B1y7Rc-Zz", :at 1512318066563 + :data { + "D" {:type :leaf, :text "if", :id "SyxodVsZ-M", :by "B1y7Rc-Zz", :at 1512318067199} + "L" { + :type :expr, :id "HyhOVsb-z", :by "B1y7Rc-Zz", :at 1512318068082 + :data { + "T" {:type :leaf, :text "some?", :id "r1Xsu4i--M", :by "B1y7Rc-Zz", :at 1512318068793} + "j" {:type :leaf, :text "ws", :id "rkWauEjbWM", :by "B1y7Rc-Zz", :at 1512318069386} + } + } + "P" { + :type :expr, :id "HJgmFVo-bz", :by "B1y7Rc-Zz", :at 1512318074959 + :data { + "T" {:type :leaf, :text ".send", :id "HJgmFVo-bzleaf", :by "B1y7Rc-Zz", :at 1512318076357} + "j" {:type :leaf, :text "ws", :id "ByBKVj-ZG", :by "B1y7Rc-Zz", :at 1512318079443} + "r" { + :type :expr, :id "S1x_tEiZ-G", :by "B1y7Rc-Zz", :at 1512318079924 + :data { + "T" {:type :leaf, :text "pr-str", :id "SkOKViZbz", :by "B1y7Rc-Zz", :at 1512318080895} + "j" { + :type :expr, :id "H1QYYVo-bf", :by "B1y7Rc-Zz", :at 1512318081378 + :data { + "T" {:type :leaf, :text "[]", :id "SkfYYEsZbG", :by "B1y7Rc-Zz", :at 1512318081973} + "j" {:type :leaf, :text "op", :id "Hy-9FViZ-M", :by "B1y7Rc-Zz", :at 1512318082730} + "r" {:type :leaf, :text "op-data", :id "Sy-oKNsW-G", :by "B1y7Rc-Zz", :at 1512318084149} + } + } + } + } + } + } + "R" { + :type :expr, :id "HyRtVjbbG", :by "B1y7Rc-Zz", :at 1512318085762 + :data { + "T" {:type :leaf, :text ".warn", :id "HyRtVjbbGleaf", :by "B1y7Rc-Zz", :at 1512318091329} + "j" {:type :leaf, :text "js/console", :id "S1E5Vi-Wf", :by "B1y7Rc-Zz", :at 1512318094630} + "r" {:type :leaf, :text "|WebSocket at close state!", :id "SybPqEiWbG", :by "B1y7Rc-Zz", :at 1512318105118} + } + } + } + } + } + } + } + } + "setup-socket!" { + :type :expr, :id "SJ6Zg5IgeCBZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJRZl58xeCBb", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HJ1fxqLxlCr-", :text "setup-socket!", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "HyxGlcUxlCr-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rkWGlcLeg0rZ", :text "*store", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HyzfxcLgxCHb", :text "configs", :by "root", :at 1500541010211} + } + } + "v" { + :type :expr, :id "BJ7zlcLxlCB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1VfxqUgx0B-", :text "let", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "H1rflqUgeCBZ", :by nil, :at 1500541010211 + :data { + "T" { + :type :expr, :id "SkIfx5Lel0SZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1vflq8elRrW", :text "ws-url", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SyOzlqUel0HW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ByYGg98eg0S-", :text ":url", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Hy9fg58glArZ", :text "configs", :by "root", :at 1500541010211} + } + } + } + } + "j" { + :type :expr, :id "H1ifgqIxlCBZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyhfgcLgeRB-", :text "ws", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rJ6GlcLgg0HZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJRzg9LeeAB-", :text "js/WebSocket.", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Sy17xqUggRrZ", :text "ws-url", :by "root", :at 1500541010211} + } + } + } + } + } + } + "n" { + :type :expr, :id "S1eqh4iZbz", :by "B1y7Rc-Zz", :at 1512318130346 + :data { + "T" {:type :leaf, :text "reset!", :id "S1eqh4iZbzleaf", :by "B1y7Rc-Zz", :at 1512318131861} + "j" {:type :leaf, :text "*global-ws", :id "SkZh34oZbf", :by "B1y7Rc-Zz", :at 1512318136554} + "r" {:type :leaf, :text "ws", :id "BkgWaNjZZM", :by "B1y7Rc-Zz", :at 1512318138057} + } + } + "r" { + :type :expr, :id "r1qExqLxgCSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hks4eqIlxCBZ", :text "set!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H12NeqUeeCr-", :text "ws.onopen", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "BJaVl9UegAHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BkA4lc8xg0HW", :text "fn", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "H1ySx58xlCSZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SygBx58geCB-", :text "event", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "Hye_eHjWZM", :by "B1y7Rc-Zz", :at 1512318191903 + :data { + "D" {:type :leaf, :text "let", :id "HJb_lBiWWz", :by "B1y7Rc-Zz", :at 1512318194009} + "L" { + :type :expr, :id "BJigrjbbM", :by "B1y7Rc-Zz", :at 1512318194783 + :data { + "T" { + :type :expr, :id "ryeoeBi-WM", :by "B1y7Rc-Zz", :at 1512318194914 + :data { + "T" {:type :leaf, :text "listener", :id "H1z5gSj-Wz", :by "B1y7Rc-Zz", :at 1512318197184} + "j" { + :type :expr, :id "S1xClHi--M", :by "B1y7Rc-Zz", :at 1512318198331 + :data { + "T" {:type :leaf, :text ":on-open!", :id "Bk0xSo-WG", :by "B1y7Rc-Zz", :at 1512318225515} + "j" {:type :leaf, :text "configs", :id "SJXWSsWZM", :by "B1y7Rc-Zz", :at 1512318203580} + } + } + } + } + } + } + "P" { + :type :expr, :id "Sk-Hbrj-Zf", :by "B1y7Rc-Zz", :at 1512318205498 + :data { + "T" {:type :leaf, :text "if", :id "Sk-Hbrj-Zfleaf", :by "B1y7Rc-Zz", :at 1512318205948} + "j" { + :type :expr, :id "HyGUZHobZG", :by "B1y7Rc-Zz", :at 1512318206473 + :data { + "T" {:type :leaf, :text "fn?", :id "Byb8bHsbZG", :by "B1y7Rc-Zz", :at 1512318207175} + "j" {:type :leaf, :text "listener", :id "BJMvWHsZZM", :by "B1y7Rc-Zz", :at 1512318208250} + } + } + "r" { + :type :expr, :id "Skxt-BiWWz", :by "B1y7Rc-Zz", :at 1512318209010 + :data { + "T" {:type :leaf, :text "listener", :id "Skxt-BiWWzleaf", :by "B1y7Rc-Zz", :at 1512318211772} + "j" {:type :leaf, :text "event", :id "Bk-3ZBs-bf", :by "B1y7Rc-Zz", :at 1512318212969} + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :id "SkEBx5LlxRS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyBBx9LlxCH-", :text "set!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJIHeq8xeCBZ", :text "ws.onclose", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "r1DHl5UxgABW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJurl9IxeRr-", :text "fn", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SJKBl9UxlASb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1qSxc8ee0B-", :text "event", :by "root", :at 1500541010211} + } + } + "n" { + :type :expr, :id "S1Up4j-Zz", :by "B1y7Rc-Zz", :at 1512318142247 + :data { + "T" {:type :leaf, :text "reset!", :id "S1Up4j-Zzleaf", :by "B1y7Rc-Zz", :at 1512318144845} + "j" {:type :leaf, :text "*global-ws", :id "B1oa4jZWz", :by "B1y7Rc-Zz", :at 1512318149941} + "r" {:type :leaf, :text "nil", :id "HkzRT4sWWM", :by "B1y7Rc-Zz", :at 1512318151079} + } + } + "p" { + :type :expr, :id "Bk7MBoWWz", :by "B1y7Rc-Zz", :at 1512318191903 + :data { + "D" {:type :leaf, :text "let", :id "HJb_lBiWWz", :by "B1y7Rc-Zz", :at 1512318194009} + "L" { + :type :expr, :id "BJigrjbbM", :by "B1y7Rc-Zz", :at 1512318194783 + :data { + "T" { + :type :expr, :id "ryeoeBi-WM", :by "B1y7Rc-Zz", :at 1512318194914 + :data { + "T" {:type :leaf, :text "listener", :id "H1z5gSj-Wz", :by "B1y7Rc-Zz", :at 1512318197184} + "j" { + :type :expr, :id "S1xClHi--M", :by "B1y7Rc-Zz", :at 1512318198331 + :data { + "T" {:type :leaf, :text ":on-close!", :id "Bk0xSo-WG", :by "B1y7Rc-Zz", :at 1512318202306} + "j" {:type :leaf, :text "configs", :id "SJXWSsWZM", :by "B1y7Rc-Zz", :at 1512318203580} + } + } + } + } + } + } + "P" { + :type :expr, :id "Sk-Hbrj-Zf", :by "B1y7Rc-Zz", :at 1512318205498 + :data { + "T" {:type :leaf, :text "if", :id "Sk-Hbrj-Zfleaf", :by "B1y7Rc-Zz", :at 1512318205948} + "j" { + :type :expr, :id "HyGUZHobZG", :by "B1y7Rc-Zz", :at 1512318206473 + :data { + "T" {:type :leaf, :text "fn?", :id "Byb8bHsbZG", :by "B1y7Rc-Zz", :at 1512318207175} + "j" {:type :leaf, :text "listener", :id "BJMvWHsZZM", :by "B1y7Rc-Zz", :at 1512318208250} + } + } + "r" { + :type :expr, :id "Skxt-BiWWz", :by "B1y7Rc-Zz", :at 1512318209010 + :data { + "T" {:type :leaf, :text "listener", :id "Skxt-BiWWzleaf", :by "B1y7Rc-Zz", :at 1512318211772} + "j" {:type :leaf, :text "event", :id "Bk-3ZBs-bf", :by "B1y7Rc-Zz", :at 1512318212969} + } + } + } + } + } + } + } + } + } + } + "x" { + :type :expr, :id "BkAre5UexAHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJ18l58elCHW", :text "set!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "HyeIl58lgAB-", :text "ws.onmessage", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "SyWUl9Ilg0S-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HyGUx98elCrb", :text "fn", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "HyQ8eqIxeRrb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ByVUlcIegAHb", :text "event", :by "root", :at 1500541010211} + } + } + "r" { + :type :expr, :id "r1r8l5LexAB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sk8LxqUxgCSW", :text "let", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "Skv8gc8gxRH-", :by nil, :at 1500541010211 + :data { + "T" { + :type :expr, :id "SyOUx98el0r-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SJYUxq8gx0Hb", :text "changes", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BJ5Lx9IeeArZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJjUecUgeCHW", :text "reader/read-string", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H12Ix5Ueg0HZ", :text "event.data", :by "root", :at 1500541010211} + } + } + } + } + } + } + "r" { + :type :expr, :id "SypLlqIxlRrW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ByALx98eeAB-", :text ".log", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rkyPg58lg0Hb", :text "js/console", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "rklwgqLllRB-", :text "|Changes", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "ry-Dg9LexAH-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SkGDgcUllRrW", :text "clj->js", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r17PeqLleArb", :text "changes", :by "root", :at 1500541010211} + } + } + } + } + "v" { + :type :expr, :id "SkEvg9LggArW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HySDecLle0SW", :text "reset!", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ryIDgqIgeRSb", :text "*store", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "rkwDg9LgeABZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1_vxc8xl0rZ", :text "patch-twig", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BktDxq8lgCH-", :text "@*store", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "By9Pxc8llCHW", :text "changes", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "BkugecUleRH-", :by nil, :at 1500541010211 + :data {} + } + } + "app.manager" { + :ns { + :type :expr, :by "root", :at 1539099457012, :id "-Zc6UVqV3E" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "ns", :id "JVXiArUVoG"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "app.manager", :id "JoxWKp1wXr"} + "r" { + :type :expr, :by "root", :at 1539099457012, :id "3ASYmqYoBB" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ":require", :id "ool9f5d4M_"} + "r" { + :type :expr, :by "root", :at 1539099457012, :id "B9KZ8frC_G" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "[]", :id "AP3RBHy1Xy"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "|child_process", :id "3HMHV70rQ8"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text ":as", :id "JTO43hHvyL9"} + "v" {:type :leaf, :by "root", :at 1539099457012, :text "cp", :id "3JHZmzk81w7"} + } + } + } + } + } + } + :defs { + "*registry" { + :type :expr, :by "root", :at 1539099457012, :id "KqcmHDorXIQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "defonce", :id "K8NFUIuYExW"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "*registry", :id "EYK3VgbDYPr"} + "r" { + :type :expr, :by "root", :at 1539099457012, :id "SgEP5M2s3yv" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "atom", :id "88dJQgFpNmm"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "PjZiuw3STBm" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "{}", :id "iJDtnC9g4ig"} + } + } + } + } + } + } + "create-process!" { + :type :expr, :by "root", :at 1539099457012, :id "ntmHNEJk5Ur" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "defn", :id "mLaZ_sL_uAV"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "create-process!", :id "WjYzbwDAAwF"} + "r" { + :type :expr, :by "root", :at 1539099457012, :id "t-2himnnQYz" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "op-data", :id "XTwP6dDK2Pw"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "dispatch!", :id "XtPZNav_Mhb"} + } + } + "v" { + :type :expr, :by "root", :at 1539099457012, :id "PrJv6ixcE7r" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "let", :id "5A35bdrDptY"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "76QO2dgwaAF" + :data { + "T" { + :type :expr, :by "root", :at 1539099457012, :id "2jPFh_kJeX6" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "command", :id "xTwEovUfpzN"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "qOWJoRa9qu3" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ":command", :id "DzdwRaBz-CW"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "op-data", :id "UbVQYnIhXMe"} + } + } + } + } + "j" { + :type :expr, :by "root", :at 1539099457012, :id "m0nMU7j6Dwr" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "cwd", :id "GGKE4cA-Jdo"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "pJ5qaiy914b" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ":cwd", :id "tTeshTgDkzw"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "op-data", :id "4wQyWPopaBK"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099457012, :id "Vx3BhBvKr24" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "proc", :id "bR2xBp6Kgt4"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "XTve7tQCPnB" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ".exec", :id "p97JGlCDDSD"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "cp", :id "lkdB5maQOKE"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "command", :id "X1EPXbnVTjc"} + "v" { + :type :expr, :by "root", :at 1539099457012, :id "GRctmfN2cVv" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "clj->js", :id "eAdGHRlU4a7"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "Y3tmPF7aSxa" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "{}", :id "Fa8TW5lh-xf"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "qSO6veUMnhZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ":cwd", :id "Ciz1a6mSOhN"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "cwd", :id "nVqqYnLIeD2"} + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099457012, :id "obf3MY1_tqs" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "ggxlhscrO0U"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "proc.pid", :id "zu9v51LGGhy"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099457012, :id "y7xEJ8aEoDe" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "swap!", :id "iw4g_J8gAPw"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "*registry", :id "rs1YdNKBwta"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "assoc", :id "wBftxUP4GlU"} + "v" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "iZ6mHfn3_Ke"} + "x" {:type :leaf, :by "root", :at 1539099457012, :text "proc", :id "Okg7OHXjbQI"} + } + } + "v" { + :type :expr, :by "root", :at 1539099457012, :id "pgD7po51VVb" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "dispatch!", :id "SS1WJPk59Ep"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text ":process/create", :id "DNG5JM8H7-F"} + "r" { + :type :expr, :by "root", :at 1539099457012, :id "XEpWFlZhtBM" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "{}", :id "PKSjAP6_iGJ"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "UUCKW55CoOk" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ":pid", :id "zZyOpplttD5"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "s_uM3jZpXff"} + } + } + "r" { + :type :expr, :by "root", :at 1539099457012, :id "4KTVBLirZER" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ":command", :id "rNKQzJl-KEm"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "command", :id "D4BXCYZEAu8"} + } + } + "v" { + :type :expr, :by "root", :at 1539099457012, :id "IbsyJhSiE20" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ":cwd", :id "0a6uVlnjRdj"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "cwd", :id "4j4b5w8xoWm"} + } + } + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539099457012, :id "GfJUi5r7CNl" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ".on", :id "MHfaZjreZ74"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "proc", :id "hpD4zMjBKMe"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "|exit", :id "HiEbVpPfosA"} + "v" { + :type :expr, :by "root", :at 1539099457012, :id "CP1bGiVH3Lb" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "fn", :id "e1ugqfZnL9h"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "z9Qw1oy1nTH" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "event", :id "406Ft5Gj5-P"} + } + } + "r" { + :type :expr, :by "root", :at 1539099457012, :id "LvMY4T3cggx" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "dispatch!", :id "9it8Bo92Ty8"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text ":process/finish", :id "DpIAHwoO0-z"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "xo88VZyOSDE"} + } + } + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099457012, :id "-b839APKQnp" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ".on", :id "2t7wkENDGn4"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "proc", :id "m2jSdaRX9e4"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "|error", :id "nMbr_2waNHI"} + "v" { + :type :expr, :by "root", :at 1539099457012, :id "8IIG3SpaabR" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "fn", :id "fNf5PRR3ZTo"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "Q9g8yh9a6uc" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "event", :id "-V_tqrFXlg9"} + } + } + "r" { + :type :expr, :by "root", :at 1539099457012, :id "zIOeJJUA0lQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "dispatch!", :id "fupWNRqXVk7"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text ":process/error", :id "tQWy7oqJ2Z5"} + "r" { + :type :expr, :by "root", :at 1539099457012, :id "EDRA5qqICHi" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "[]", :id "Tk-COCg2XED"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "TKo4XROJRLC"} + "r" { + :type :expr, :by "root", :at 1539099457012, :id "fYSmCn9P0DX" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "str", :id "gO4EDVFlgrk"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "event", :id "XQeLdh_qu1k"} + } + } + } + } + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099457012, :id "Mx408oobP6z" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ".on", :id "mLIj8Nd6qxF"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "proc.stdout", :id "_QsO8l0TDtv"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "|data", :id "wHHA6-Q5UCt"} + "v" { + :type :expr, :by "root", :at 1539099457012, :id "RDqSoN4_rBn" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "fn", :id "mCKvstpV4Bh"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "OZ7bVt4L1aD" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "data", :id "IqbGai3QUPQ"} + } + } + "r" { + :type :expr, :by "root", :at 1539099457012, :id "33vQ0BxuQze" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "dispatch!", :id "RHtWbYuWHQT"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text ":process/stdout", :id "CpB2hoEK6lo"} + "r" { + :type :expr, :by "root", :at 1539099457012, :id "6xQn5EyhZos" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "[]", :id "jQG0u8RkIrO"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "mo8FzrcbFaO"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "data", :id "f0ACws0PQS_"} + } + } + } + } + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1539099457012, :id "fgNYpRe3q5Y" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ".on", :id "AnUPKJIAYC4"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "proc.stderr", :id "5K_sLtOCbsX"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "|data", :id "leVgKsADQlF"} + "v" { + :type :expr, :by "root", :at 1539099457012, :id "LIhyKtTIcI_" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "fn", :id "LSMwPp9Xed5"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "HQhaj7z9bW0" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "data", :id "TElnkZwOBkJ"} + } + } + "r" { + :type :expr, :by "root", :at 1539099457012, :id "XPbY5JQMtjQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "dispatch!", :id "75UOo45dn6v"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text ":process/stderr", :id "7xLqZrpyhaB"} + "r" { + :type :expr, :by "root", :at 1539099457012, :id "avx-WXueRYJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "[]", :id "aaVpn4k8lmS"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "0l9uHbpKce9"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "data", :id "m8mBfI7hjm5"} + } + } + } + } + } + } + } + } + } + } + } + } + "kill-process!" { + :type :expr, :by "root", :at 1539099457012, :id "SBNP04jLHwm" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "defn", :id "ee5_Cy6GDfO"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "kill-process!", :id "M3P9IX6OH2k"} + "r" { + :type :expr, :by "root", :at 1539099457012, :id "5KpnuO_kQzl" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "rZSAIKIF6Cz"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "dispatch!", :id "OTOn63XtAjA"} + } + } + "v" { + :type :expr, :by "root", :at 1539099457012, :id "B1u9-3QoTuq" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "let", :id "gHDQmIkQGkX"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "Wthc9Ogyb_n" + :data { + "T" { + :type :expr, :by "root", :at 1539099457012, :id "mm0GP305WVJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "proc", :id "Chlk9tsvuPY"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "I4NwEfB2GiA" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "get", :id "IFmcSmTHOWj"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "@*registry", :id "pOGJPJhJGlh"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "RjRDP6WnCKI"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099457012, :id "oRx12iKik8d" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "if", :id "WiDtlrh1AHl"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "9SqF6lcTyaW" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "some?", :id "kmBa7ghPh2o"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "proc", :id "CXtu1AI2f0W"} + } + } + "r" { + :type :expr, :by "root", :at 1539099457012, :id "Y-eMV29q6sQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "do", :id "6rvc95eVk2t"} + "j" { + :type :expr, :by "root", :at 1539099457012, :id "68lswnzTZg3" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text ".kill", :id "VBMZKdB9iZa"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "proc", :id "gFd6r8L3clM"} + } + } + "r" { + :type :expr, :by "root", :at 1539099457012, :id "KZTCt6s1D1t" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "swap!", :id "ER7OPoqRpc7"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text "*registry", :id "wILsVQ4vCw4"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "dissoc", :id "fk0Y79fuVjn"} + "v" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "oS_PbUlGq98"} + } + } + "v" { + :type :expr, :by "root", :at 1539099457012, :id "_hBNjOdPj0J" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "dispatch!", :id "9vc4eWx3oyk"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text ":process/kill", :id "Zx_wFsHF4BI"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "mgAtrPM9oCU"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099457012, :id "oUli3cjFQzW" + :data { + "T" {:type :leaf, :by "root", :at 1539099457012, :text "dispatch!", :id "1saFihRa6v9"} + "j" {:type :leaf, :by "root", :at 1539099457012, :text ":process/kill", :id "DbRhzMmIs5c"} + "r" {:type :leaf, :by "root", :at 1539099457012, :text "pid", :id "Eg8lgS0R1lz"} + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539099457012, :id "K_33WpygkpT" + :data {} + } + } + "app.node-config" { + :ns { + :type :expr, :by "root", :at 1524298631034, :id "SyxkqXdO2G" + :data { + "T" {:type :leaf, :by "root", :at 1524298631034, :text "ns", :id "BJW19QO_hM"} + "j" {:type :leaf, :by "root", :at 1524298631034, :text "app.node-config", :id "HyfJq7OO2G"} + "r" { + :type :expr, :by "root", :at 1524298669341, :id "r1ZHhXdOhM" + :data { + "T" {:type :leaf, :by "root", :at 1524298670016, :text ":require", :id "H1eShX_d2f"} + "j" { + :type :expr, :by "root", :at 1524298670263, :id "HyD827dOnf" + :data { + "T" {:type :leaf, :by "root", :at 1524298670450, :text "[]", :id "BJUI2Q_u3G"} + "j" {:type :leaf, :by "root", :at 1524298672574, :text "\"path", :id "Skw3Q_O2f"} + "r" {:type :leaf, :by "root", :at 1524298675047, :text ":as", :id "rJgF2QOO3G"} + "v" {:type :leaf, :by "root", :at 1524298675605, :text "path", :id "BJQj2XuOnM"} + } + } + "r" { + :type :expr, :by "B1y7Rc-Zz", :at 1536561790357, :id "G1e93WpJA0" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1536561790677, :text "[]", :id "G1e93WpJA0leaf"} + "j" {:type :leaf, :by "B1y7Rc-Zz", :at 1536561794818, :text "app.config", :id "u3JUDKAtgQ"} + "r" {:type :leaf, :by "B1y7Rc-Zz", :at 1536561796245, :text ":as", :id "_Hc-N0wStb"} + "v" {:type :leaf, :by "B1y7Rc-Zz", :at 1536561796997, :text "config", :id "YYgNHbIV4F"} + } + } + } + } + } + } + :defs { + "env" { + :type :expr, :by "root", :at 1524298658015, :id "H1xqo7uunG" + :data { + "T" {:type :leaf, :by "root", :at 1524298660570, :text "def", :id "ryb9o7_u3z"} + "j" {:type :leaf, :by "root", :at 1524298658015, :text "env", :id "S1GqoXd_2G"} + "r" { + :type :expr, :by "root", :at 1524298658015, :id "Bkm9imdO2G" + :data { + "T" {:type :leaf, :by "root", :at 1524298663105, :text "{}", :id "S1fpsmdOnM"} + "j" { + :type :expr, :by "root", :at 1524298664134, :id "Sygg3Q_unz" + :data { + "T" {:type :leaf, :by "root", :at 1524298890241, :text ":storage-path", :id "Hyx2mddhz"} + "j" { + :type :expr, :by "root", :at 1524298667358, :id "S1lQnmdd2M" + :data { + "T" {:type :leaf, :by "root", :at 1524298686903, :text "path/join", :id "Hk73QOO2G"} + "j" {:type :leaf, :by "root", :at 1524298689900, :text "js/__dirname", :id "BkQDTmdO2G"} + "r" {:type :leaf, :by "B1y7Rc-Zz", :at 1536750698402, :text "\"storage.edn", :id "H1j6mduhM"} + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1524298631034, :id "Bym15X_O2G" + :data {} + } + } + "app.page" { + :ns { + :type :expr, :id "B14AX98xxAB-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ByHC7qIeg0rb", :text "ns", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJLR7cIll0r-", :text "app.page", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "SkwCXcUegASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJOCX5IlxArZ", :text ":require", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "B1Y0m9LelASZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B19Am9IxeABb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJsAm58elASW", :text "respo.render.html", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "Hyn0Q9Ill0rW", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "r16Am58el0H-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1A0mcUxeCB-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r1J1N9LgxRSZ", :text "make-string", :by "root", :at 1500541010211} + } + } + } + } + "r" { + :type :expr, :id "HyeyN9IxgAHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1-J45IglRHb", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "B1MyE98xxAr-", :text "shell-page.core", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "SJX14cLxeCSb", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "HyN1E5UegCHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1HyV9LglRSW", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S1IJ458xxRBW", :text "make-page", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "BkvkN5LgeASW", :text "spit", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "BJOJ4qIel0rb", :text "slurp", :by "root", :at 1500541010211} + } + } + } + } + "v" { + :type :expr, :id "SktkEqIlxABW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJ51V5UxeRB-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BkjkVcIgeRH-", :text "app.comp.container", :by "root", :at 1500541010211} + "r" {:type :leaf, :id "r12yN9UgxCSZ", :text ":refer", :by "root", :at 1500541010211} + "v" { + :type :expr, :id "rk6y4cIggASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1CJV5Iee0H-", :text "[]", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "SkylN9IllRHW", :text "comp-container", :by "root", :at 1500541010211} + } + } + } + } + "x" { + :type :expr, :id "BJgVGBfyxf", :by "root", :at 1511101707888 + :data { + "T" {:type :leaf, :text "[]", :id "BJgVGBfyxfleaf", :by "root", :at 1511101709192} + "j" {:type :leaf, :text "cljs.reader", :id "B1xSGSGylf", :by "root", :at 1511101713489} + "r" {:type :leaf, :text ":refer", :id "HJ9GHGyxM", :by "root", :at 1511101714233} + "v" { + :type :expr, :id "BywcGrMJef", :by "root", :at 1511101714439 + :data { + "T" {:type :leaf, :text "[]", :id "r1UqMrGyeG", :by "root", :at 1511101715337} + "j" {:type :leaf, :text "read-string", :id "BJmiMBG1lf", :by "root", :at 1511101716843} + } + } + } + } + "y" { + :type :expr, :by "root", :at 1527615291525, :id "rJEH1zs1Q" + :data { + "T" {:type :leaf, :by "root", :at 1527615292660, :text "[]", :id "rJEH1zs1Qleaf"} + "j" {:type :leaf, :by "root", :at 1527615295265, :text "app.schema", :id "SkWSr1fjJ7"} + "r" {:type :leaf, :by "root", :at 1527615297332, :text ":as", :id "ByIwSkzsJX"} + "v" {:type :leaf, :by "root", :at 1527615298122, :text "schema", :id "HJ7tr1zjJm"} + } + } + "yT" { + :type :expr, :by "root", :at 1527788800517, :id "SyMuZH3pJ7" + :data { + "T" {:type :leaf, :by "root", :at 1527788801776, :text "[]", :id "SyMuZH3pJ7leaf"} + "j" {:type :leaf, :by "root", :at 1527788804688, :text "app.config", :id "H1G9ZH2py7"} + "r" {:type :leaf, :by "root", :at 1527788805383, :text ":as", :id "HyZpWr2TJm"} + "v" {:type :leaf, :by "root", :at 1527788806048, :text "config", :id "Byr6WHhpym"} + } + } + "yj" { + :type :expr, :by "root", :at 1528098081285, :id "rklKXaPfxX" + :data { + "T" {:type :leaf, :by "root", :at 1528098081582, :text "[]", :id "rklKXaPfxXleaf"} + "j" {:type :leaf, :by "root", :at 1528098084179, :text "app.util", :id "SyZqXTPGlX"} + "r" {:type :leaf, :by "root", :at 1528098085922, :text ":refer", :id "rkQ3XaPflm"} + "v" { + :type :expr, :by "root", :at 1528098086107, :id "HJSRXpwGxm" + :data { + "T" {:type :leaf, :by "root", :at 1528098086331, :text "[]", :id "ByNCQpwGeX"} + "j" {:type :leaf, :by "root", :at 1528098089685, :text "get-env!", :id "r1WeNpvfg7"} + } + } + } + } + } + } + } + } + :defs { + "base-info" { + :type :expr, :id "S1BZ49LegCrb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyUZE5Ixx0B-", :text "def", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "BJPbVcUxgCH-", :text "base-info", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "B1O-N5IegRHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H1Y-V5Lgl0rW", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rkqWVqLxxAHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1s-EqLelCBW", :text ":title", :by "root", :at 1500541010211} + "j" { + :type :expr, :by "root", :at 1527867530055, :id "Hyxz9O11g7" + :data { + "T" {:type :leaf, :id "B13ZNqUlxRB-", :text ":title", :by "root", :at 1527867532592} + "j" {:type :leaf, :by "root", :at 1527867534092, :text "config/site", :id "SyxrqOkyxQ"} + } + } + } + } + "r" { + :type :expr, :id "r1pbNcLee0S-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H10WV5IgxAHZ", :text ":icon", :by "root", :at 1500541010211} + "j" { + :type :expr, :by "root", :at 1527867537627, :id "Hkccd11lX" + :data { + "T" {:type :leaf, :id "Sk1GNc8exArZ", :text ":icon", :by "root", :at 1527867538513} + "j" {:type :leaf, :by "root", :at 1527867540157, :text "config/site", :id "Syo9_kJgQ"} + } + } + } + } + "v" { + :type :expr, :id "H1ezVcIleCr-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ryZz49IxlRBW", :text ":ssr", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r1zG4cIxlCSW", :text "nil", :by "root", :at 1500541010211} + } + } + "y" { + :type :expr, :id "SJ14Dq2JG", :by "root", :at 1510938407125 + :data { + "T" {:type :leaf, :text ":inline-styles", :id "SJ14Dq2JGleaf", :by "root", :at 1510938409900} + "j" { + :type :expr, :id "BymMEPqhyG", :by "root", :at 1510938410134 + :data { + "T" {:type :leaf, :text "[]", :id "H1MGEwcn1M", :by "root", :at 1510938410517} + "j" { + :type :expr, :id "H1lmVvqhJz", :by "root", :at 1510938410813 + :data { + "T" {:type :leaf, :text "slurp", :id "Hym4Dc21G", :by "root", :at 1510938412617} + "j" {:type :leaf, :text "|entry/main.css", :id "SJgBNvq3kz", :by "root", :at 1510938422998} + } + } + } + } + } + } + } + } + } + } + "dev-page" { + :type :expr, :id "ryIzN5LleCrb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HkvfN5UlgAS-", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Bkdf4q8lxRr-", :text "dev-page", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "HytMEcLlg0H-", :by nil, :at 1500541010211 + :data {} + } + "v" { + :type :expr, :id "H1qfE9UgxCrW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SysG4q8xeABb", :text "make-page", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Sk3MVqIggRHb", :text "|", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "HyTGV9Uxl0rW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hy0G4cUxeRSZ", :text "merge", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJ1QN5UxlAr-", :text "base-info", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "S1lXEcIxgABb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ryZXVcLxgCrW", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "rkGQV9UgxRHZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Sy7XE9Llx0Hb", :text ":styles", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "Sk4745UlxCBZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "S1rmN9Uxe0HZ", :text "[]", :by "root", :at 1500541010211} + "j" { + :type :expr, :by "root", :at 1527615349163, :id "Ska_1MiJQ" + :data { + "T" {:type :leaf, :text ":dev-ui", :id "Syx3s2D1n-", :by "root", :at 1527615351875} + "j" {:type :leaf, :by "root", :at 1527788822429, :text "config/site", :id "H1fxY1GjyQ"} + } + } + "r" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565930272, :text "\"/entry/main.css", :id "icJTcbEw5"} + } + } + } + } + "r" { + :type :expr, :id "HyImE5IgeRBZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BkPQEqUxxRrb", :text ":scripts", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "HkOX49LlxCSb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJKXEcLge0rZ", :text "[]", :by "root", :at 1500541010211} + "v" {:type :leaf, :id "BynXN5UxlRBb", :text "|/client.js", :by "root", :at 1523552467710} + } + } + } + } + "v" { + :type :expr, :by "B1y7Rc-Zz", :at 1535565937028, :id "LSNXLwDH1b" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565940014, :text ":inline-styles", :id "LSNXLwDH1bleaf"} + "j" { + :type :expr, :by "B1y7Rc-Zz", :at 1535565940381, :id "knoO3uLWyQ" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1535565940625, :text "[]", :id "OqT1mNA8tc"} + } + } + } + } + } + } + } + } + } + } + } + } + "local-bundle?" { + :type :expr, :id "rkB36oPyhZ", :by "root", :at 1506929604497 + :data { + "T" {:type :leaf, :text "def", :id "rkIh6jP13Z", :by "root", :at 1506929605008} + "j" {:type :leaf, :text "local-bundle?", :id "Hkw2aoPk3W", :by "root", :at 1528098076524} + "r" { + :type :expr, :id "ryu3aiwk3-", :by "root", :at 1506929604497 + :data { + "T" {:type :leaf, :text "=", :id "rkA6iP1n-", :by "root", :at 1506929606210} + "j" {:type :leaf, :text "|local-bundle", :id "BJbC6ovyn-", :by "root", :at 1528098094461} + "r" { + :type :expr, :by "root", :at 1528098095525, :id "rkd4aPflQ" + :data { + "T" {:type :leaf, :text "get-env!", :id "SkgXAiwJnZ", :by "root", :at 1528098097352} + "j" {:type :leaf, :by "root", :at 1528098099993, :text "\"mode", :id "HJq4avfg7"} + } + } + } + } + } + } + "main!" { + :type :expr, :id "rJZeEcLxx0r-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyMlEqUglCSZ", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ByXgN9UegASW", :text "main!", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "ByVgVqUeeRHW", :by nil, :at 1500541010211 + :data {} + } + "v" { + :type :expr, :id "SJrx498ee0HZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BkIxVqIgg0BW", :text "if", :by "root", :at 1500541010211} + "n" { + :type :expr, :by "root", :at 1528098117530, :id "HyRBpwzlm" + :data { + "T" {:type :leaf, :by "root", :at 1528098119155, :text "contains?", :id "HyRBpwzlmleaf"} + "j" {:type :leaf, :by "root", :at 1528098436490, :text "config/bundle-builds", :id "H1ZLaPfx7"} + "r" { + :type :expr, :by "root", :at 1528098125722, :id "rJeI8TDfgm" + :data { + "T" {:type :leaf, :by "root", :at 1528098127849, :text "get-env!", :id "SkH8pPGxm"} + "j" {:type :leaf, :by "root", :at 1528098129275, :text "\"mode", :id "rJed8avGg7"} + } + } + } + } + "p" { + :type :expr, :id "SJMP6vzxX", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rk-WE9UleRr-", :text "spit", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "S1zZ49IleAHW", :text "|dist/index.html", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "SkXZE98ggASW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rk4WV5Lgx0rZ", :text "prod-page", :by "root", :at 1500541010211} + } + } + } + } + "r" { + :type :expr, :id "HysgEqLlgCSZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "H12e4qIxlASW", :text "spit", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "rJTgE9IelArZ", :text "|target/index.html", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "HJClNq8xgCrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Hk1ZEcUexArW", :text "dev-page", :by "root", :at 1500541010211} + } + } + } + } + } + } + } + } + "prod-page" { + :type :expr, :id "ry6QNqLlgRBZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJAXE98egRSb", :text "defn", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "Hy14N5UleAB-", :text "prod-page", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "BJg4E98ex0rb", :by nil, :at 1500541010211 + :data {} + } + "v" { + :type :expr, :id "B1Z44qUeeRHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "Skz445UlxArZ", :text "let", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BkXVNcLglCHb", :by nil, :at 1500541010211 + :data { + "T" { + :type :expr, :id "H1VVN58gl0rZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1HEV98elRSb", :text "html-content", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "BJIVE5UeeCS-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJPE4cLleRHW", :text "make-string", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "By_V49UleRSZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJtN45UgxCHZ", :text "comp-container", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "S15NE9UxxRSZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJj4E9IexAHW", :text "{}", :by "root", :at 1500541010211} + } + } + "r" {:type :leaf, :id "H12VV9Ulg0Sb", :text "nil", :by "root", :at 1500541010211} + } + } + } + } + } + } + "r" { + :type :expr, :id "SkBSNcLegRSZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "HJLrE98xeAHW", :text "assets", :by "root", :at 1511101669795} + "j" { + :type :expr, :id "H1wHV9IegCSW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyOHN98elRH-", :text "read-string", :by "root", :at 1511101666477} + "r" { + :type :expr, :id "rJqBNcUlx0HZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1sS45LegCS-", :text "slurp", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "H1hB49LgxASW", :text "|dist/assets.edn", :by "root", :at 1511101660154} + } + } + } + } + } + } + "v" { + :type :expr, :id "BkcVovJ3-", :by "root", :at 1506929457770 + :data { + "T" {:type :leaf, :text "cdn", :id "BkcVovJ3-leaf", :by "root", :at 1506929458821} + "j" { + :type :expr, :id "H1EsNjwJ2Z", :by "root", :at 1506929459448 + :data { + "T" {:type :leaf, :text "if", :id "rkXs4sPk3Z", :by "root", :at 1506929602259} + "j" {:type :leaf, :text "local-bundle?", :id "Bkjpiv13Z", :by "root", :at 1528098110532} + "r" {:type :leaf, :text "\"", :id "rkZoRjvJh-", :by "root", :at 1527615312281} + "v" { + :type :expr, :by "root", :at 1527615301140, :id "By00VfWgm" + :data { + "T" {:type :leaf, :text ":cdn-url", :id "ryg3AiwJhZ", :by "root", :at 1528009944355} + "j" {:type :leaf, :by "root", :at 1527788812036, :text "config/site", :id "BJgW8JfjJm"} + } + } + } + } + } + } + "x" { + :type :expr, :id "r1WUkhw12Z", :by "root", :at 1506929630135 + :data { + "T" {:type :leaf, :text "prefix-cdn", :id "r1WUkhw12Zleaf", :by "root", :at 1506929635537} + "j" { + :type :expr, :id "H1-3knDyn-", :by "root", :at 1506929635938 + :data { + "T" {:type :leaf, :text "#()", :id "ryl3khPy2Z", :by "root", :at 1511280326132} + "r" {:type :leaf, :text "str", :id "BkG0J2PJnW", :by "root", :at 1506929639579} + "v" {:type :leaf, :text "cdn", :id "BybxgnP13Z", :by "root", :at 1506929640077} + "x" {:type :leaf, :text "%", :id "rkSxehDJnW", :by "root", :at 1511280331811} + } + } + } + } + } + } + "r" { + :type :expr, :id "Sk6r4cLee0Hb", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "ryRS45UxgRSW", :text "make-page", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "r1yLVcLgx0BW", :text "html-content", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "rylIV5UxxCrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "BJbLEcLxgArW", :text "merge", :by "root", :at 1500541010211} + "j" {:type :leaf, :id "ByGLE9Iee0Bb", :text "base-info", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "SyX8V5Ulx0H-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "SyEINcIxxRSb", :text "{}", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "SJrUV98ex0S-", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "r1I8E98lx0HW", :text ":styles", :by "root", :at 1500541010211} + "j" { + :type :expr, :id "r1wL4qUlxRrZ", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "B1uINcIxeCr-", :text "[]", :by "root", :at 1500541010211} + "b" { + :type :expr, :by "root", :at 1527615325464, :id "HJSwkzj17" + :data { + "T" {:type :leaf, :text ":release-ui", :id "Skyp3wyn-", :by "root", :at 1527615331021} + "j" {:type :leaf, :by "root", :at 1527788814977, :text "config/site", :id "SJzsPkMskm"} + } + } + } + } + } + } + "r" { + :type :expr, :id "rk6LNqIeeAHW", :by nil, :at 1500541010211 + :data { + "T" {:type :leaf, :id "rJ0LN9UgeCS-", :text ":scripts", :by "root", :at 1500541010211} + "r" { + :type :expr, :id "rkegeSfklf", :by "root", :at 1511101672252 + :data { + "T" {:type :leaf, :text "map", :id "rkegeSfklfleaf", :by "root", :at 1511101674855} + "j" { + :type :expr, :id "rkQmxSG1eG", :by "root", :at 1511101675420 + :data { + "T" {:type :leaf, :text "#()", :id "HJMQgrfygM", :by "root", :at 1511101676925} + "j" {:type :leaf, :text "->", :id "BJ-BlBGyxG", :by "root", :at 1511101680541} + "r" {:type :leaf, :text "%", :id "S1ierz1lf", :by "root", :at 1511101684408} + "v" {:type :leaf, :text ":output-name", :id "BJ6lrMyeG", :by "root", :at 1511101691302} + "x" {:type :leaf, :text "prefix-cdn", :id "B1EXZrfJlz", :by "root", :at 1511101696320} + } + } + "r" {:type :leaf, :text "assets", :id "HJgKbSzylf", :by "root", :at 1511101697964} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "HkeeN5LegRBZ", :by nil, :at 1500541010211 + :data {} + } + } + "app.reel" { + :ns { + :type :expr, :id "B1eF8-Ah2Z", :by "root", :at 1507807568560 + :data { + "T" {:type :leaf, :text "ns", :id "HkZtLWC33b", :by "root", :at 1507807568560} + "j" {:type :leaf, :text "app.reel", :id "S1fFU-02h-", :by "root", :at 1507807568560} + "r" { + :type :expr, :id "r1W94ERh2W", :by "root", :at 1507808306254 + :data { + "T" {:type :leaf, :text ":require", :id "Bye94EAnnb", :by "root", :at 1507808306970} + "j" { + :type :expr, :id "rJ2EVC2nW", :by "root", :at 1507808307673 + :data { + "T" {:type :leaf, :text "[]", :id "r18sE4C3n-", :by "root", :at 1507808307836} + "j" {:type :leaf, :text "clojure.string", :id "HJfnEEChhZ", :by "root", :at 1507808310745} + "r" {:type :leaf, :text ":as", :id "r1X1HEAn2Z", :by "root", :at 1507808311469} + "v" {:type :leaf, :text "string", :id "rylBERh2Z", :by "root", :at 1507808312249} + } + } + "r" { + :type :expr, :by "root", :at 1521911559252, :id "BJxJGP-E5G" + :data { + "T" {:type :leaf, :by "root", :at 1521911559585, :text "[]", :id "BJxJGP-E5Gleaf"} + "j" {:type :leaf, :by "root", :at 1527789018570, :text "app.config", :id "rkWgMvZ49G"} + "r" {:type :leaf, :by "root", :at 1521911564101, :text ":refer", :id "HJW7MwZ4qz"} + "v" { + :type :expr, :by "root", :at 1521911564299, :id "Hy8NGPWV5M" + :data { + "T" {:type :leaf, :by "root", :at 1521911564472, :text "[]", :id "rJHEGvWNcf"} + "j" {:type :leaf, :by "root", :at 1521911565665, :text "dev?", :id "H1BfP-49f"} + } + } + } + } + } + } + } + } + :defs { + "play-records" { + :type :expr, :id "HkWFmGChhZ", :by "root", :at 1507807777029 + :data { + "T" {:type :leaf, :text "defn", :id "S1fFXMA3nW", :by "root", :at 1507807777029} + "j" {:type :leaf, :text "play-records", :id "SJXF7GA3nW", :by "root", :at 1507807777029} + "r" { + :type :expr, :id "HyVKmfRn2W", :by "root", :at 1507807777029 + :data { + "T" {:type :leaf, :text "db", :id "ByZq7zAh2-", :by "root", :at 1507807852850} + "j" {:type :leaf, :text "records", :id "BJM6mfC22Z", :by "root", :at 1507807782382} + "r" {:type :leaf, :text "updater", :id "B18A7fC33b", :by "root", :at 1507807783430} + } + } + "v" { + :type :expr, :id "BkeXNMRh3b", :by "root", :at 1507807786831 + :data { + "T" {:type :leaf, :text "if", :id "BkeXNMRh3bleaf", :by "root", :at 1507807787293} + "j" { + :type :expr, :id "B14NNGC23b", :by "root", :at 1507807788493 + :data { + "T" {:type :leaf, :text "empty?", :id "Skm7NMR2hZ", :by "root", :at 1507807788882} + "j" {:type :leaf, :text "records", :id "B1eSEMR3hW", :by "root", :at 1507807791910} + } + } + "p" {:type :leaf, :text "db", :id "rJOQE0nh-", :by "root", :at 1507808288838} + "v" { + :type :expr, :id "r1VhEMAnh-", :by "root", :at 1507807796352 + :data { + "T" {:type :leaf, :text "let", :id "S1X2VfCnn-", :by "root", :at 1507807804049} + "j" { + :type :expr, :id "SJlPM0h3-", :by "root", :at 1507807831985 + :data { + "T" { + :type :expr, :id "SyHSM0n2W", :by "root", :at 1507807804774 + :data { + "T" { + :type :expr, :id "S1xrBz033b", :by "root", :at 1507807804933 + :data { + "T" {:type :leaf, :text "[]", :id "HJzVBGAhhZ", :by "root", :at 1507807805634} + "j" {:type :leaf, :text "op", :id "r1b8BzChnZ", :by "root", :at 1507807806577} + "r" {:type :leaf, :text "op-data", :id "ByWwHMR3nZ", :by "root", :at 1507807809537} + "v" {:type :leaf, :text "sid", :id "Ske5BG02nW", :by "root", :at 1507807810527} + "x" {:type :leaf, :text "op-id", :id "S1lsSzCn3b", :by "root", :at 1507807812164} + "y" {:type :leaf, :text "op-time", :id "BkaSzAn2W", :by "root", :at 1507807814137} + } + } + "j" { + :type :expr, :id "H1lxLM022b", :by "root", :at 1507807815913 + :data { + "T" {:type :leaf, :text "first", :id "Byg8fA2hZ", :by "root", :at 1507807821680} + "j" {:type :leaf, :text "records", :id "BJZL8G0h3-", :by "root", :at 1507808245880} + } + } + } + } + "j" { + :type :expr, :id "HyMwz0nhW", :by "root", :at 1507807833581 + :data { + "T" {:type :leaf, :text "next-db", :id "HyMwz0nhWleaf", :by "root", :at 1507807850908} + "j" { + :type :expr, :id "B1gTwM0h3b", :by "root", :at 1507807844750 + :data { + "T" {:type :leaf, :text "updater", :id "Hk6DzA32Z", :by "root", :at 1507807845576} + "j" {:type :leaf, :text "db", :id "SkxRvMC3h-", :by "root", :at 1507807849172} + "r" {:type :leaf, :text "op", :id "B1sOGAhnb", :by "root", :at 1507807858780} + "v" {:type :leaf, :text "op-data", :id "ByzidGR3nW", :by "root", :at 1507807859973} + "x" {:type :leaf, :text "sid", :id "S1m3_GC3hW", :by "root", :at 1507807860721} + "y" {:type :leaf, :text "op-id", :id "SkWTOGA22b", :by "root", :at 1507807862424} + "yT" {:type :leaf, :text "op-time", :id "Bk1KzCnh-", :by "root", :at 1507807864755} + } + } + } + } + } + } + "r" { + :type :expr, :id "BkfmKMR2hZ", :by "root", :at 1507807867422 + :data { + "T" {:type :leaf, :text "recur", :id "BkfmKMR2hZleaf", :by "root", :at 1507807869747} + "j" {:type :leaf, :text "next-db", :id "rJwKGRhhZ", :by "root", :at 1507807873195} + "r" { + :type :expr, :id "rJcKM0n3W", :by "root", :at 1507807873961 + :data { + "T" {:type :leaf, :text "rest", :id "SJGFtG0nhb", :by "root", :at 1507808240025} + "j" {:type :leaf, :text "records", :id "SJ-sFz023Z", :by "root", :at 1507807875952} + } + } + "v" {:type :leaf, :text "updater", :id "ryx6YGAhhb", :by "root", :at 1507807877826} + } + } + } + } + } + } + } + } + "reel-reducer" { + :type :expr, :id "r1gnUZR3nZ", :by "root", :at 1507807571921 + :data { + "T" {:type :leaf, :text "defn", :id "SJW2LW032b", :by "root", :at 1507807571921} + "j" {:type :leaf, :text "reel-reducer", :id "HyGh8-CnnW", :by "root", :at 1507807571921} + "r" { + :type :expr, :id "ByQh8bRnhb", :by "root", :at 1507807571921 + :data { + "D" {:type :leaf, :text "reel", :id "Hy1HSAh2b", :by "root", :at 1507808567695} + "T" {:type :leaf, :text "updater", :id "Hy0cMA2h-", :by "root", :at 1507807899128} + "r" {:type :leaf, :text "op", :id "S1z4szC3nZ", :by "root", :at 1507807901735} + "v" {:type :leaf, :text "op-data", :id "rk3ifA2hW", :by "root", :at 1507807909927} + "x" {:type :leaf, :text "sid", :id "BymCszC2n-", :by "root", :at 1507807911186} + "y" {:type :leaf, :text "op-id", :id "HkGJ3f0hnb", :by "root", :at 1507807913048} + "yT" {:type :leaf, :text "op-time", :id "BJ--hzA22b", :by "root", :at 1507807916081} + } + } + "v" { + :type :expr, :id "BJIhzAn3Z", :by "root", :at 1507807917563 + :data { + "T" {:type :leaf, :text "if", :id "BJIhzAn3Zleaf", :by "root", :at 1507807935016} + "j" { + :type :expr, :id "ByGPpMCh3-", :by "root", :at 1507807935250 + :data { + "T" {:type :leaf, :text "string/starts-with?", :id "HybwaMAnnW", :by "root", :at 1507807940290} + "j" { + :type :expr, :id "SJx06fA33b", :by "root", :at 1507807942105 + :data { + "T" {:type :leaf, :text "str", :id "HJCaMCnhW", :by "root", :at 1507807942618} + "j" {:type :leaf, :text "op", :id "HJbyAGC23-", :by "root", :at 1507807943117} + } + } + "r" {:type :leaf, :text "|:reel/", :id "B1eERf0nnZ", :by "root", :at 1507807951837} + } + } + "r" { + :type :expr, :id "r1kJXA23b", :by "root", :at 1507807958585 + :data { + "T" {:type :leaf, :text "merge", :id "r1kJXA23bleaf", :by "root", :at 1507807959398} + "j" {:type :leaf, :text "reel", :id "rkx1QR3h-", :by "root", :at 1507807960851} + "r" { + :type :expr, :id "HJWWDXR23-", :by "root", :at 1507808089496 + :data { + "T" {:type :leaf, :text "case", :id "ryxWwXCh2Z", :by "root", :at 1507808113577} + "j" {:type :leaf, :text "op", :id "BkeqdmAnn-", :by "root", :at 1507808117022} + "r" { + :type :expr, :id "ry7Tu7CnnZ", :by "root", :at 1507808117325 + :data { + "T" {:type :leaf, :text ":reel/reset", :id "SJzT_XRh2-", :by "root", :at 1507808122298} + "j" { + :type :expr, :id "BkZtcm033Z", :by "root", :at 1507808145301 + :data { + "T" {:type :leaf, :text "{}", :id "Syxtc7R3hb", :by "root", :at 1507808146428} + "j" { + :type :expr, :id "BklR57C2n-", :by "root", :at 1507808149920 + :data { + "T" {:type :leaf, :text ":records", :id "rJR5X02h-", :by "root", :at 1507808152469} + "j" { + :type :expr, :id "rylWsXChnb", :by "root", :at 1507808153153 + :data { + "T" {:type :leaf, :text "[]", :id "S1Wim0n2b", :by "root", :at 1507808153345} + } + } + } + } + "r" { + :type :expr, :id "SyNsQAhn-", :by "root", :at 1507808155583 + :data { + "T" {:type :leaf, :text ":db", :id "SyNsQAhn-leaf", :by "root", :at 1507808157622} + "j" { + :type :expr, :id "HJZIsQAnnW", :by "root", :at 1507808157976 + :data { + "T" {:type :leaf, :text ":base", :id "B1gLo7R3h-", :by "root", :at 1507808161024} + "j" {:type :leaf, :text "reel", :id "HJmKsmCn2b", :by "root", :at 1507808163136} + } + } + } + } + } + } + } + } + "v" { + :type :expr, :id "Bkx7tQCnhZ", :by "root", :at 1507808122933 + :data { + "T" {:type :leaf, :text ":reel/merge", :id "Bkx7tQCnhZleaf", :by "root", :at 1507808129848} + "j" { + :type :expr, :id "BkWTsmAn3W", :by "root", :at 1507808164979 + :data { + "T" {:type :leaf, :text "{}", :id "Skl6iX02nW", :by "root", :at 1507808166682} + "j" { + :type :expr, :id "HJMJ3Q022b", :by "root", :at 1507808167423 + :data { + "T" {:type :leaf, :text ":records", :id "SkZknQR2n-", :by "root", :at 1507808168948} + "j" { + :type :expr, :id "HkNZ3QAh2W", :by "root", :at 1507808169302 + :data { + "T" {:type :leaf, :text "[]", :id "BJ7-3QR3h-", :by "root", :at 1507808169516} + } + } + } + } + "r" { + :type :expr, :id "SkmnQA22W", :by "root", :at 1507808170611 + :data { + "T" {:type :leaf, :text ":base", :id "SkmnQA22Wleaf", :by "root", :at 1507808175078} + "j" { + :type :expr, :id "HyluhQRnhZ", :by "root", :at 1507808176231 + :data { + "T" {:type :leaf, :text ":db", :id "BJd3Q0nhW", :by "root", :at 1507808177447} + "j" {:type :leaf, :text "reel", :id "S192mChhb", :by "root", :at 1507808178557} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1525016595808, :id "r1xhzOvmTG" + :data { + "T" {:type :leaf, :by "root", :at 1525016599243, :text ":merged?", :id "r1xhzOvmTGleaf"} + "j" {:type :leaf, :by "root", :at 1525016599965, :text "true", :id "Bk-1mdw7pz"} + } + } + } + } + } + } + "x" { + :type :expr, :id "rJm9YQ03hb", :by "root", :at 1507808130390 + :data { + "T" {:type :leaf, :text "do", :id "rJm9YQ03hbleaf", :by "root", :at 1507808132283} + "j" { + :type :expr, :id "H1ptX032Z", :by "root", :at 1507808132570 + :data { + "T" {:type :leaf, :text "println", :id "HkW3KQRhh-", :by "root", :at 1507808133596} + "j" {:type :leaf, :text "|Unknown op:", :id "ry-RF7Rn3b", :by "root", :at 1507808138147} + "r" {:type :leaf, :text "op", :id "S1MG5X022b", :by "root", :at 1507808140040} + } + } + "r" {:type :leaf, :text "reel", :id "HkScmRnhb", :by "root", :at 1507808143385} + } + } + } + } + } + } + "v" { + :type :expr, :id "SyfyXC32W", :by "root", :at 1507807961659 + :data { + "T" {:type :leaf, :text "let", :id "SyfyXC32Wleaf", :by "root", :at 1507807966627} + "j" { + :type :expr, :id "Hkp-Q03nb", :by "root", :at 1507808005428 + :data { + "T" { + :type :expr, :id "By0WQRn2Z", :by "root", :at 1507808005565 + :data { + "T" {:type :leaf, :text "msg-pack", :id "B1ePJXR2nZ", :by "root", :at 1507808010547} + "j" { + :type :expr, :id "B1ZQfX02nb", :by "root", :at 1507808010979 + :data { + "T" {:type :leaf, :text "[]", :id "HJe7fmA3hZ", :by "root", :at 1507808011370} + "j" {:type :leaf, :text "op", :id "BkNMQCnnW", :by "root", :at 1507808012306} + "r" {:type :leaf, :text "op-data", :id "BJHf7R23W", :by "root", :at 1507808015291} + "v" {:type :leaf, :text "sid", :id "H17wG7022-", :by "root", :at 1507808016704} + "x" {:type :leaf, :text "op-id", :id "rJetGQ0hn-", :by "root", :at 1507808017548} + "y" {:type :leaf, :text "op-time", :id "SJeqGmRn3W", :by "root", :at 1507808018926} + } + } + } + } + } + } + "r" { + :type :expr, :id "SkgTfXR22Z", :by "root", :at 1507808021414 + :data { + "T" {:type :leaf, :text "->", :id "SkgTfXR22Zleaf", :by "root", :at 1507808022031} + "j" {:type :leaf, :text "reel", :id "HyW0fXAnhW", :by "root", :at 1507808023769} + "r" { + :type :expr, :id "r1mgmXA3hb", :by "root", :at 1507808024071 + :data { + "T" {:type :leaf, :text "update", :id "BJfx7XA2hb", :by "root", :at 1507808024885} + "j" {:type :leaf, :text ":records", :id "Hkz-77C2hb", :by "root", :at 1507808027711} + "r" { + :type :expr, :id "SkZNQXRn2-", :by "root", :at 1507808028155 + :data { + "T" {:type :leaf, :text "fn", :id "BJl4mQR33-", :by "root", :at 1507808028588} + "j" { + :type :expr, :id "HyWr7XRn2b", :by "root", :at 1507808028861 + :data { + "T" {:type :leaf, :text "records", :id "B1eHmmAnnb", :by "root", :at 1507808029976} + } + } + "r" { + :type :expr, :by "root", :at 1521911568720, :id "HkgKGvWE5z" + :data { + "D" {:type :leaf, :by "root", :at 1521911569290, :text "if", :id "Bk-FGwW4qG"} + "L" {:type :leaf, :by "root", :at 1521911570068, :text "dev?", :id "SJVKMwZVqz"} + "T" { + :type :expr, :id "S1DQQ032W", :by "root", :at 1507808030991 + :data { + "T" {:type :leaf, :text "conj", :id "S1DQQ032Wleaf", :by "root", :at 1507808031959} + "j" {:type :leaf, :text "records", :id "rJxOQQAnhZ", :by "root", :at 1507808300376} + "r" {:type :leaf, :text "msg-pack", :id "S197XCnhb", :by "root", :at 1507808036781} + } + } + "j" {:type :leaf, :by "root", :at 1521911573499, :text "records", :id "SkifvZEqM"} + } + } + } + } + } + } + "v" { + :type :expr, :id "B1WkE7032-", :by "root", :at 1507808039342 + :data { + "T" {:type :leaf, :text "assoc", :id "rJv47R23W", :by "root", :at 1507808047479} + "j" {:type :leaf, :text ":db", :id "Hku4Q02nb", :by "root", :at 1507808049717} + "r" { + :type :expr, :id "B1x-B7Ch3W", :by "root", :at 1507808056967 + :data { + "T" {:type :leaf, :text "updater", :id "r1WSmR3hZ", :by "root", :at 1507808057996} + "j" { + :type :expr, :id "S1xVBXRnhZ", :by "root", :at 1507808059894 + :data { + "T" {:type :leaf, :text ":db", :id "ry7HmR3hZ", :by "root", :at 1507808060494} + "j" {:type :leaf, :text "reel", :id "B1SB7Rh2b", :by "root", :at 1507808061864} + } + } + "r" {:type :leaf, :text "op", :id "SkePSQAh2Z", :by "root", :at 1507808063495} + "v" {:type :leaf, :text "op-data", :id "HyOHm0nhb", :by "root", :at 1507808065417} + "x" {:type :leaf, :text "sid", :id "rkIFSmAh2-", :by "root", :at 1507808066276} + "y" {:type :leaf, :text "op-id", :id "Byz5S7An2b", :by "root", :at 1507808068339} + "yT" {:type :leaf, :text "op-time", :id "B1aBQAh2-", :by "root", :at 1507808069665} + } + } + } + } + } + } + } + } + } + } + } + } + "reel-schema" { + :type :expr, :id "BJx2PZCh2b", :by "root", :at 1507807587733 + :data { + "T" {:type :leaf, :text "def", :id "HkZ3PW0hnZ", :by "root", :at 1507807589878} + "j" {:type :leaf, :text "reel-schema", :id "ByG3DbC3n-", :by "root", :at 1507807587733} + "r" { + :type :expr, :id "SkX2vb03n-", :by "root", :at 1507807587733 + :data { + "T" {:type :leaf, :text "{}", :id "HJy_WAnh-", :by "root", :at 1507807590977} + "X" { + :type :expr, :id "SkZdOWChnb", :by "root", :at 1507807600445 + :data { + "T" {:type :leaf, :text ":base", :id "SkZdOWChnbleaf", :by "root", :at 1507807601764} + "j" {:type :leaf, :text "nil", :id "Hy-5OZ022b", :by "root", :at 1507807603679} + } + } + "b" { + :type :expr, :id "ryNObRnnZ", :by "root", :at 1507807595904 + :data { + "T" {:type :leaf, :text ":db", :id "ryNObRnnZleaf", :by "root", :at 1507808188063} + "j" {:type :leaf, :text "nil", :id "B1I_W022Z", :by "root", :at 1507807599626} + } + } + "j" { + :type :expr, :id "BJZe_bC32b", :by "root", :at 1507807592228 + :data { + "T" {:type :leaf, :text ":records", :id "B1fy_WAhnZ", :by "root", :at 1507807593749} + "j" { + :type :expr, :id "rJXubRnnW", :by "root", :at 1507807594535 + :data { + "T" {:type :leaf, :text "[]", :id "Hy-GObA3hW", :by "root", :at 1507807674382} + } + } + } + } + "r" { + :type :expr, :id "S1-pdbR22W", :by "root", :at 1507807605053 + :data { + "T" {:type :leaf, :text ":merged?", :id "S1-pdbR22Wleaf", :by "root", :at 1507807606629} + "j" {:type :leaf, :text "false", :id "Hyx1F-AnhW", :by "root", :at 1507807608050} + } + } + } + } + } + } + "refresh-reel" { + :type :expr, :id "S1eKPWAn2Z", :by "root", :at 1507807585218 + :data { + "T" {:type :leaf, :text "defn", :id "ryWFw-Ch2W", :by "root", :at 1507807585218} + "j" {:type :leaf, :text "refresh-reel", :id "HkztP-R2nZ", :by "root", :at 1507807585218} + "r" { + :type :expr, :id "r1XFPbRnnW", :by "root", :at 1507807585218 + :data { + "T" {:type :leaf, :text "reel", :id "SylfJfRn3Z", :by "root", :at 1507807707677} + "j" {:type :leaf, :text "base", :id "SygV1G02hW", :by "root", :at 1507807708866} + "r" {:type :leaf, :text "updater", :id "rkxHyf023-", :by "root", :at 1507807711602} + } + } + "v" { + :type :expr, :id "HJY1GC23b", :by "root", :at 1507807713224 + :data { + "T" {:type :leaf, :text "let", :id "HJY1GC23bleaf", :by "root", :at 1507807713873} + "j" { + :type :expr, :id "BkQcJM023W", :by "root", :at 1507807714088 + :data { + "T" { + :type :expr, :id "rkG2yzCh2Z", :by "root", :at 1507807716280 + :data { + "T" {:type :leaf, :text "next-base", :id "SyM9yfC33-", :by "root", :at 1507807720593} + "j" { + :type :expr, :id "BJxGez033Z", :by "root", :at 1507807722030 + :data { + "T" {:type :leaf, :text "if", :id "S1fgfRn3Z", :by "root", :at 1507807722454} + "j" { + :type :expr, :id "HkQeMRn2Z", :by "root", :at 1507807722676 + :data { + "T" {:type :leaf, :text ":merged?", :id "HymGxMC2n-", :by "root", :at 1507808230226} + "j" {:type :leaf, :text "reel", :id "ByeNeMA22b", :by "root", :at 1507807724899} + } + } + "r" { + :type :expr, :id "SJvgMAnn-", :by "root", :at 1507807726560 + :data { + "T" {:type :leaf, :text ":base", :id "Hkl8xMChhb", :by "root", :at 1507807727417} + "j" {:type :leaf, :text "reel", :id "HyOlMAhnb", :by "root", :at 1507807728386} + } + } + "v" {:type :leaf, :text "base", :id "B1eYeM0nhW", :by "root", :at 1507807730618} + } + } + } + } + } + } + "r" { + :type :expr, :id "HJZpgGC22W", :by "root", :at 1507807733505 + :data { + "T" {:type :leaf, :text "->", :id "HJZpgGC22Wleaf", :by "root", :at 1507807734158} + "j" {:type :leaf, :text "reel", :id "Sk-AlGR22Z", :by "root", :at 1507807735188} + "r" { + :type :expr, :id "Skg-M022Z", :by "root", :at 1507807735526 + :data { + "T" {:type :leaf, :text "assoc", :id "HkXJZzA23-", :by "root", :at 1507807736798} + "j" {:type :leaf, :text ":base", :id "Hkl--GR33-", :by "root", :at 1507807737680} + "r" {:type :leaf, :text "next-base", :id "BybGWGRn2Z", :by "root", :at 1507807741059} + } + } + "v" { + :type :expr, :id "BkxUZfC2hb", :by "root", :at 1507807741935 + :data { + "T" {:type :leaf, :text "assoc", :id "BkxUZfC2hbleaf", :by "root", :at 1507807743274} + "j" {:type :leaf, :text ":db", :id "B1MP-fRh2b", :by "root", :at 1507808074280} + "r" { + :type :expr, :id "SJXjZGC23W", :by "root", :at 1507807746971 + :data { + "T" {:type :leaf, :text "play-records", :id "H1fsZGR3h-", :by "root", :at 1507807749581} + "j" {:type :leaf, :text "next-base", :id "rJ--zfCh3b", :by "root", :at 1507807755170} + "r" { + :type :expr, :id "BkgnzGCn2b", :by "root", :at 1507807763798 + :data { + "T" {:type :leaf, :text ":records", :id "SkYfMCn3Z", :by "root", :at 1507807765879} + "j" {:type :leaf, :text "reel", :id "Syf0fM03nZ", :by "root", :at 1507807767222} + } + } + "v" {:type :leaf, :text "updater", :id "r1ggmfRnh-", :by "root", :at 1507807769477} + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "S1QY8b0n3Z", :by "root", :at 1507807568560 + :data {} + } + } + "app.schema" { + :ns { + :type :expr, :id "B1Swe8bxAr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Bk8PgIbeCr-", :text "ns", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SyDDxIWeRrb", :text "app.schema", :by "root", :at 1500541255553} + } + } + :defs { + "command" { + :type :expr, :by "root", :at 1539099507452, :id "9Ys4QgdoQL" + :data { + "T" {:type :leaf, :by "root", :at 1539099507452, :text "def", :id "KlQWeXK95-"} + "j" {:type :leaf, :by "root", :at 1539099507452, :text "command", :id "ZEanQXQUUz"} + "r" { + :type :expr, :by "root", :at 1539099507452, :id "beZbnLZCNS" + :data { + "T" {:type :leaf, :by "root", :at 1539099507452, :text "{}", :id "ebsFacUQf8"} + "j" { + :type :expr, :by "root", :at 1539099507452, :id "wkeGyTgIeg" + :data { + "T" {:type :leaf, :by "root", :at 1539099507452, :text ":id", :id "NPg7IidM-x"} + "j" {:type :leaf, :by "root", :at 1539099507452, :text "nil", :id "3fjMoMXvlK"} + } + } + "r" { + :type :expr, :by "root", :at 1539099507452, :id "JgJqqLUSrU" + :data { + "T" {:type :leaf, :by "root", :at 1539099507452, :text ":path", :id "NvRi9smKYe"} + "j" {:type :leaf, :by "root", :at 1539099507452, :text "|.", :id "8MdjC86JGK"} + } + } + "v" { + :type :expr, :by "root", :at 1539099507452, :id "TxKiIBJsEb" + :data { + "T" {:type :leaf, :by "root", :at 1539099507452, :text ":code", :id "QOTPTefhIe"} + "j" {:type :leaf, :by "root", :at 1539099507452, :text "|", :id "yzUI9KtCYx"} + } + } + } + } + } + } + "database" { + :type :expr, :id "S1c5lLblCBZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BkjcxUbgAH-", :text "def", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ryhqlIZxRSb", :text "database", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "S169e8WeAH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJCqxL-gASW", :text "{}", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "SJJolIbeArb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkgjlUZxArb", :text ":sessions", :by "root", :at 1500541255553} + "j" { + :type :expr, :by "root", :at 1538886498428, :id "RC6TbFtiBd" + :data { + "D" {:type :leaf, :by "root", :at 1538886499001, :text "do", :id "u-mi7TeZu"} + "L" {:type :leaf, :by "root", :at 1538886500387, :text "session", :id "DUAFs31KF4"} + "T" { + :type :expr, :id "H1WsxIbeCSW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1GseIWx0S-", :text "{}", :by "root", :at 1500541255553} + } + } + } + } + } + } + "r" { + :type :expr, :id "Symjg8bg0BZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJ4ix8beAB-", :text ":users", :by "root", :at 1500541255553} + "j" { + :type :expr, :by "root", :at 1538886501540, :id "Rx2kJHudR" + :data { + "D" {:type :leaf, :by "root", :at 1538886502106, :text "do", :id "-QMTWQpKkD"} + "L" {:type :leaf, :by "root", :at 1538886502625, :text "user", :id "2DKXhsjt7P"} + "T" { + :type :expr, :id "r1BieLbe0rZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJUjl8bg0SW", :text "{}", :by "root", :at 1500541255553} + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099656004, :id "2mx8-GYJHoG" + :data { + "T" {:type :leaf, :by "root", :at 1539099656004, :text ":processes", :id "IBcTd1RXmO6"} + "j" { + :type :expr, :by "root", :at 1539099677131, :id "-bgRUoZlq0" + :data { + "D" {:type :leaf, :by "root", :at 1539099677701, :text "do", :id "aOMEpcf591"} + "L" {:type :leaf, :by "root", :at 1539099678789, :text "process", :id "tCJe5A0x3c"} + "T" { + :type :expr, :by "root", :at 1539099656004, :id "2nAiH0sGtU4" + :data { + "T" {:type :leaf, :by "root", :at 1539099656004, :text "{}", :id "EDpIM3_ZM2g"} + } + } + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1539099656004, :id "wvtwrlzcz3D" + :data { + "T" {:type :leaf, :by "root", :at 1539099656004, :text ":workflows", :id "oelMtABA7oU"} + "j" { + :type :expr, :by "root", :at 1539099673519, :id "Dvz8xIGy4" + :data { + "D" {:type :leaf, :by "root", :at 1539099674079, :text "do", :id "4h8bnctDwj"} + "L" {:type :leaf, :by "root", :at 1539099675929, :text "workflow", :id "eJVg12m0nU"} + "T" { + :type :expr, :by "root", :at 1539099656004, :id "XD_294S1aB-" + :data { + "T" {:type :leaf, :by "root", :at 1539099656004, :text "{}", :id "4W2BhTLUfZS"} + } + } + } + } + } + } + "yr" { + :type :expr, :by "root", :at 1539099656004, :id "qWZpmuleFk7" + :data { + "T" {:type :leaf, :by "root", :at 1539099656004, :text ":histories", :id "cUREBAJieLl"} + "j" { + :type :expr, :by "root", :at 1539099669639, :id "zMrEYjsZs" + :data { + "D" {:type :leaf, :by "root", :at 1539099670674, :text "do", :id "ttDCyZBc0c"} + "L" {:type :leaf, :by "root", :at 1539099671805, :text "history", :id "pOe2C7vifx"} + "T" { + :type :expr, :by "root", :at 1539099656004, :id "8HH7FDDpHzQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099656004, :text "[]", :id "WcVi5ehT4D4"} + } + } + } + } + } + } + } + } + } + } + "history" { + :type :expr, :by "root", :at 1539099516337, :id "7QHcGkzZjd" + :data { + "T" {:type :leaf, :by "root", :at 1539099516337, :text "def", :id "Zz5gJYQ5H3"} + "j" {:type :leaf, :by "root", :at 1539099516337, :text "history", :id "ru2WB6Ffun"} + "r" { + :type :expr, :by "root", :at 1539099516337, :id "V2U8Z2DeO_" + :data { + "T" {:type :leaf, :by "root", :at 1539099516337, :text "{}", :id "IRLI0hCJQE"} + "j" { + :type :expr, :by "root", :at 1539099516337, :id "G176oIZpKK" + :data { + "T" {:type :leaf, :by "root", :at 1539099516337, :text ":id", :id "x54MPU8ru6"} + "j" {:type :leaf, :by "root", :at 1539099516337, :text "nil", :id "Gx7fhBuyCf"} + } + } + "r" { + :type :expr, :by "root", :at 1539099516337, :id "svFIIh9sJZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099516337, :text ":pid", :id "KOwNpjJPR0"} + "j" {:type :leaf, :by "root", :at 1539099516337, :text "0", :id "arKIab38ux"} + } + } + "v" { + :type :expr, :by "root", :at 1539099516337, :id "xpVJGCtXJE" + :data { + "T" {:type :leaf, :by "root", :at 1539099516337, :text ":started-at", :id "SZdUWujtJW"} + "j" {:type :leaf, :by "root", :at 1539099516337, :text "0", :id "L0o7VzCR24"} + } + } + "x" { + :type :expr, :by "root", :at 1539099516337, :id "Etd7Pg4UFt5" + :data { + "T" {:type :leaf, :by "root", :at 1539099516337, :text ":cwd", :id "3nF3PZvUeVR"} + "j" {:type :leaf, :by "root", :at 1539099516337, :text "|", :id "-TMlBHeMg8D"} + } + } + "y" { + :type :expr, :by "root", :at 1539099516337, :id "PH0PfZExsl8" + :data { + "T" {:type :leaf, :by "root", :at 1539099516337, :text ":command", :id "ltEXBvJBQA5"} + "j" {:type :leaf, :by "root", :at 1539099516337, :text "|", :id "w9MnYENgHmP"} + } + } + } + } + } + } + "page" { + :type :expr, :by "root", :at 1525107082906, :id "BkgQcFTE6z" + :data { + "T" {:type :leaf, :by "root", :at 1525107085441, :text "def", :id "BkW79Fp4Tf"} + "j" {:type :leaf, :by "root", :at 1525107082906, :text "page", :id "SkzXqtpVaf"} + "r" { + :type :expr, :by "root", :at 1525107082906, :id "SJXQcYpVpz" + :data { + "T" {:type :leaf, :by "root", :at 1525107086712, :text "{}", :id "BJZ8cFaNaz"} + "j" { + :type :expr, :by "root", :at 1525107087020, :id "H1MD5tTNpz" + :data { + "T" {:type :leaf, :by "root", :at 1525107088360, :text ":id", :id "B1ZD5K6NaM"} + "j" {:type :leaf, :by "root", :at 1525107088754, :text "nil", :id "B1X_9KpETz"} + } + } + "r" { + :type :expr, :by "root", :at 1525107089227, :id "SJztcKaETf" + :data { + "T" {:type :leaf, :by "root", :at 1525107091552, :text ":title", :id "SJztcKaETfleaf"} + "j" {:type :leaf, :by "root", :at 1525107095971, :text "\"", :id "HJg2qF64TM"} + } + } + "v" { + :type :expr, :by "root", :at 1525107092520, :id "HyT9KT4pG" + :data { + "T" {:type :leaf, :by "root", :at 1525107093179, :text ":time", :id "HyT9KT4pGleaf"} + "j" {:type :leaf, :by "root", :at 1525107093921, :text "nil", :id "SkHpcYpE6z"} + } + } + } + } + } + } + "process" { + :type :expr, :by "root", :at 1539099523985, :id "HBmW-2X5Zp" + :data { + "T" {:type :leaf, :by "root", :at 1539099523985, :text "def", :id "YfFL4UXwf4"} + "j" {:type :leaf, :by "root", :at 1539099523985, :text "process", :id "15YwUiBKhr"} + "r" { + :type :expr, :by "root", :at 1539099523985, :id "E9-7VP7H9d" + :data { + "T" {:type :leaf, :by "root", :at 1539099523985, :text "{}", :id "y7QBAYNUkC"} + "j" { + :type :expr, :by "root", :at 1539099523985, :id "Gu62M8lwGy" + :data { + "T" {:type :leaf, :by "root", :at 1539099523985, :text ":pid", :id "dl5G5_qSWp"} + "j" {:type :leaf, :by "root", :at 1539099523985, :text "0", :id "l9zamW-r-F"} + } + } + "r" { + :type :expr, :by "root", :at 1539099523985, :id "7eY2Po4JjP" + :data { + "T" {:type :leaf, :by "root", :at 1539099523985, :text ":content", :id "WNwA9QGJru"} + "j" { + :type :expr, :by "root", :at 1539099523985, :id "zsrfA5gdZ3" + :data { + "T" {:type :leaf, :by "root", :at 1539099523985, :text "[]", :id "p3ilgby6H4"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099523985, :id "h_jqdA1Kj4" + :data { + "T" {:type :leaf, :by "root", :at 1539099523985, :text ":started-at", :id "k7Xu4RjDyu"} + "j" {:type :leaf, :by "root", :at 1539099523985, :text "0", :id "nhlc0tDh31"} + } + } + "x" { + :type :expr, :by "root", :at 1539099523985, :id "_tLnRXUNJqc" + :data { + "T" {:type :leaf, :by "root", :at 1539099523985, :text ":alive?", :id "JA4NUoCg__t"} + "j" {:type :leaf, :by "root", :at 1539099523985, :text "false", :id "7RNRevRgbDG"} + } + } + "y" { + :type :expr, :by "root", :at 1539099523985, :id "hdKNO-V_AGS" + :data { + "T" {:type :leaf, :by "root", :at 1539099523985, :text ":cwd", :id "hz2NEVmzREP"} + "j" {:type :leaf, :by "root", :at 1539099523985, :text "|", :id "S6tLzY3pmNg"} + } + } + "yT" { + :type :expr, :by "root", :at 1539099523985, :id "WWktAbRQcen" + :data { + "T" {:type :leaf, :by "root", :at 1539099523985, :text ":command", :id "1tcV94vsqSW"} + "j" {:type :leaf, :by "root", :at 1539099523985, :text "|", :id "RRmbPoASfLO"} + } + } + } + } + } + } + "router" { + :type :expr, :id "BJaugUbeABb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJR_lI-xRBZ", :text "def", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BJyFl8-l0B-", :text "router", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "HyeKlU-gCHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJbYl8bxCr-", :text "{}", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HyzFe8blRHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJQtlI-x0rW", :text ":name", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Bk4teL-lRS-", :text "nil", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "SyrYlL-lRBZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1IYxUWlCBW", :text ":title", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SJPKlIbeCBZ", :text "nil", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "Hy_tgU-eAHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJtFx8ZeRr-", :text ":data", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "SJ9KlUZeCSb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJstxIbeAS-", :text "{}", :by "root", :at 1500541255553} + } + } + } + } + "x" { + :type :expr, :id "Sk2YxIbg0Hb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B1aYe8Wg0rW", :text ":router", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "B1CteIWlCrZ", :text "nil", :by "root", :at 1500541255553} + } + } + } + } + } + } + "session" { + :type :expr, :id "HyiseLZlCB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1hseLZlCBW", :text "def", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJpslIZxAHW", :text "session", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "SkCilU-eCSZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B11neI-gAH-", :text "{}", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "Byx2e8-e0rZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rybnxUWe0BZ", :text ":user-id", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ryf2xIbxAHZ", :text "nil", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "B1m2eIbxAHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S143xIblCrZ", :text ":id", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "S1ShgL-l0rZ", :text "nil", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "HJU2gU-lRrb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HyPheIZxCSZ", :text ":nickname", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "B1_hx8ZeRrW", :text "nil", :by "root", :at 1500541255553} + } + } + "x" { + :type :expr, :id "rkthlU-gCHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HycngIbeCrb", :text ":router", :by "root", :at 1500541255553} + "j" { + :type :expr, :by "root", :at 1538886507054, :id "6GeGDz-Mrh" + :data { + "D" {:type :leaf, :by "root", :at 1538886507646, :text "do", :id "sM5ZFH9Ojs"} + "L" {:type :leaf, :by "root", :at 1538886508475, :text "router", :id "Ot9nzPxAuB"} + "T" { + :type :expr, :id "HyjhgL-xArW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Hy23gUZgRH-", :text "{}", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "H1T2eUZeAH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1C3lUWgCHb", :text ":name", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJkalLZxArW", :text ":home", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "HyxTeL-gRSb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B1baxLZeCr-", :text ":data", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SyGpe8WgAHZ", :text "nil", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "rk7TlUWl0SW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Bk4pe8ZgCBZ", :text ":router", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJB6l8-g0H-", :text "nil", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + "y" { + :type :expr, :id "SyL6eIbgRr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HyPTeIZx0SZ", :text ":messages", :by "root", :at 1529230759501} + "j" { + :type :expr, :by "root", :at 1529230760396, :id "HJGlhSh7Z7" + :data { + "T" {:type :leaf, :by "root", :at 1529230760716, :text "{}", :id "SyWg2HnQZQ"} + } + } + } + } + } + } + } + } + "user" { + :type :expr, :id "BJKwxIbx0rZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Hy9weU-x0SW", :text "def", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1jDx8bx0SZ", :text "user", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "rkhPxUWx0r-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkpPl8ZlRrW", :text "{}", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HkAPxIZxRB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ryJul8beCrb", :text ":name", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJlOxIWgRBW", :text "nil", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "HkbdlLZlRSW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1M_gIWxCSZ", :text ":id", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rk7_eIbxRB-", :text "nil", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "B14ug8bg0rb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HySOgLWeASW", :text ":nickname", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ByIue8Ze0B-", :text "nil", :by "root", :at 1500541255553} + } + } + "x" { + :type :expr, :id "H1PulIbx0Hb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SyudlUWeCBW", :text ":avatar", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJYdlLbe0BW", :text "nil", :by "root", :at 1500541255553} + } + } + "y" { + :type :expr, :id "HJcOxIbgAHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1jOeUbxArW", :text ":password", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Hynug8bxCSZ", :text "nil", :by "root", :at 1500541255553} + } + } + } + } + } + } + "workflow" { + :type :expr, :by "root", :at 1539099532330, :id "T685wxAlXU" + :data { + "T" {:type :leaf, :by "root", :at 1539099532330, :text "def", :id "VfLMf7w2ZK"} + "j" {:type :leaf, :by "root", :at 1539099532330, :text "workflow", :id "d-2_kCyoBy"} + "r" { + :type :expr, :by "root", :at 1539099532330, :id "vtvJNNKIZ0" + :data { + "T" {:type :leaf, :by "root", :at 1539099532330, :text "{}", :id "ztUOg8H2oN"} + "j" { + :type :expr, :by "root", :at 1539099532330, :id "d2jJ85wUDH" + :data { + "T" {:type :leaf, :by "root", :at 1539099532330, :text ":id", :id "57vh_X5_ES"} + "j" {:type :leaf, :by "root", :at 1539099532330, :text "nil", :id "dCqyRwX9E3"} + } + } + "r" { + :type :expr, :by "root", :at 1539099532330, :id "TSutLrRh2o" + :data { + "T" {:type :leaf, :by "root", :at 1539099532330, :text ":name", :id "xk0rQTwuAy"} + "j" {:type :leaf, :by "root", :at 1539099532330, :text "nil", :id "gCK_BpzOOF"} + } + } + "v" { + :type :expr, :by "root", :at 1539099532330, :id "I-6NVop6VE" + :data { + "T" {:type :leaf, :by "root", :at 1539099532330, :text ":base-dir", :id "BgTV8SBtO2"} + "j" {:type :leaf, :by "root", :at 1539099532330, :text "|~/", :id "v1I4W5zE53"} + } + } + "x" { + :type :expr, :by "root", :at 1539099532330, :id "PsRV18vsWC" + :data { + "T" {:type :leaf, :by "root", :at 1539099532330, :text ":commands", :id "1rs1DzG4P0R"} + "j" { + :type :expr, :by "root", :at 1539099532330, :id "wh1mBAFcN5s" + :data { + "T" {:type :leaf, :by "root", :at 1539099532330, :text "{}", :id "Us_hHzHSp8m"} + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "SJuPg8bxRH-", :by nil, :at 1500541255553 + :data {} + } + } + "app.server" { + :ns { + :type :expr, :id "SJcm-gIZlCSb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HyjXZxIWlCBb", :text "ns", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rynmbgL-e0r-", :text "app.server", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "SyTmWlU-xRBZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1AmWe8WgRBW", :text ":require", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "ByJ4ZgLbeCHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Bkl4beU-xCHW", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJWEZl8Wl0rW", :text "app.schema", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "SJGEZlU-gCS-", :text ":as", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "r17V-l8bx0Hb", :text "schema", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "r1V4bgUWlArZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJHNWxUZgAB-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SJLNZgUbx0SW", :text "app.service", :by "root", :at 1523550530436} + "r" {:type :leaf, :id "SyDN-xLWgCBb", :text ":refer", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "B1OEbeLWeRHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1KV-eL-g0r-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "S15NZx8WgCSW", :text "run-server!", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "H1s4beUWxABb", :text "sync-clients!", :by "root", :at 1507806896433} + } + } + } + } + "v" { + :type :expr, :id "BJnEWxL-g0HW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HypNZe8WlAS-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Sk0V-e8-gCr-", :text "app.updater", :by "root", :at 1517931127726} + "r" {:type :leaf, :id "HykSbxL-gArb", :text ":refer", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "BkgBZlLZlRHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJbSWlUWg0r-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "S1zHWeU-l0Sb", :text "updater", :by "root", :at 1500541255553} + } + } + } + } + "y" { + :type :expr, :id "r15SWeIZgCB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1oB-g8ZgCr-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Sk3BWeL-xCrW", :text "cljs.reader", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "By6H-l8ZgCB-", :text ":refer", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "H10rbxLZxAHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJyI-xI-e0H-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rkxIWe8WeRrW", :text "read-string", :by "root", :at 1500541255553} + } + } + } + } + "yL" { + :type :expr, :id "HylWRQCh2Z", :by "root", :at 1507808200988 + :data { + "T" {:type :leaf, :text "[]", :id "HylWRQCh2Zleaf", :by "root", :at 1507808201361} + "j" {:type :leaf, :text "app.reel", :id "rkmZ0XAh2-", :by "root", :at 1507808204412} + "r" {:type :leaf, :text ":refer", :id "ryGEC7AhnW", :by "root", :at 1507808205649} + "v" { + :type :expr, :id "BJWU0mRhhZ", :by "root", :at 1507808205916 + :data { + "T" {:type :leaf, :text "[]", :id "H1l8A7A22W", :by "root", :at 1507808206889} + "j" {:type :leaf, :text "reel-reducer", :id "Sk-v0QChn-", :by "root", :at 1524591466804} + "r" {:type :leaf, :text "refresh-reel", :id "S1I9CQCn3b", :by "root", :at 1507808213599} + "v" {:type :leaf, :text "reel-schema", :id "Sk4pEAnhZ", :by "root", :at 1507808445442} + } + } + } + } + "yT" { + :type :expr, :id "BkxoeDT23Z", :by "root", :at 1507804915408 + :data { + "T" {:type :leaf, :text "[]", :id "BkxoeDT23Zleaf", :by "root", :at 1507804916099} + "j" {:type :leaf, :text "\"fs", :id "S1WhlDT33Z", :by "root", :at 1529517119897} + "r" {:type :leaf, :text ":as", :id "Bkbpgvp3nW", :by "root", :at 1507804918168} + "v" {:type :leaf, :text "fs", :id "H1V0xPahh-", :by "root", :at 1507804918540} + } + } + "yj" { + :type :expr, :id "S1evFNvBGz", :by "root", :at 1513612415350 + :data { + "T" {:type :leaf, :text "[]", :id "S1evFNvBGzleaf", :by "root", :at 1513612416172} + "j" {:type :leaf, :text "\"shortid", :id "BJ-OYNPrzM", :by "root", :at 1529517121876} + "r" {:type :leaf, :text ":as", :id "ByejtNvHGG", :by "root", :at 1513612420680} + "v" {:type :leaf, :text "shortid", :id "BJ-pKVPrGz", :by "root", :at 1513612422772} + } + } + "yn" { + :type :expr, :by "root", :at 1529516782882, :id "BkevgXfd-X" + :data { + "T" {:type :leaf, :by "root", :at 1529516784256, :text "[]", :id "BkevgXfd-Xleaf"} + "j" {:type :leaf, :by "root", :at 1529516789669, :text "\"child_process", :id "BJ7_x7z_bm"} + "r" {:type :leaf, :by "root", :at 1529516790283, :text ":as", :id "rJ-RlXGO-X"} + "v" {:type :leaf, :by "root", :at 1529516790729, :text "cp", :id "r1SReXG_WQ"} + } + } + "yp" { + :type :expr, :by "root", :at 1529516876237, :id "H1eNUmGuWQ" + :data { + "T" {:type :leaf, :by "root", :at 1529516877607, :text "[]", :id "H1eNUmGuWQleaf"} + "j" {:type :leaf, :by "root", :at 1529516879275, :text "\"path", :id "Sy-LL7z_WX"} + "r" {:type :leaf, :by "root", :at 1529516879821, :text ":as", :id "B17v87zdbX"} + "v" {:type :leaf, :by "root", :at 1529516880491, :text "path", :id "B1fu8XfOWX"} + } + } + "yr" { + :type :expr, :by "root", :at 1524298869668, :id "S1A_Vdd2G" + :data { + "T" {:type :leaf, :by "root", :at 1524298870145, :text "[]", :id "S1A_Vdd2Gleaf"} + "j" {:type :leaf, :by "root", :at 1527788844240, :text "app.node-config", :id "B1G0_Nuu2z"} + "r" {:type :leaf, :by "root", :at 1524298874266, :text ":as", :id "BJWFN_u2z"} + "v" {:type :leaf, :by "root", :at 1527788847595, :text "node-config", :id "rybMYNdOnM"} + } + } + "yv" { + :type :expr, :by "root", :at 1527441313389, :id "ByeKiwvOym" + :data { + "T" {:type :leaf, :by "root", :at 1527441313829, :text "[]", :id "ByeKiwvOymleaf"} + "j" {:type :leaf, :by "root", :at 1527788884406, :text "app.config", :id "r1Z5sPP_1X"} + "r" {:type :leaf, :by "root", :at 1527441320515, :text ":refer", :id "ryWe3DPOyQ"} + "v" { + :type :expr, :by "root", :at 1527441320801, :id "Skl-nDwO1X" + :data { + "T" {:type :leaf, :by "root", :at 1527441321104, :text "[]", :id "Skb2DvuJm"} + "j" {:type :leaf, :by "root", :at 1527441322159, :text "dev?", :id "Hk7-2Pvdym"} + } + } + } + } + "yx" { + :type :expr, :by "root", :at 1527788877059, :id "BJS8H2pkm" + :data { + "T" {:type :leaf, :by "root", :at 1527788877406, :text "[]", :id "BJS8H2pkmleaf"} + "j" {:type :leaf, :by "root", :at 1527788878839, :text "app.config", :id "H1zSIH26kX"} + "r" {:type :leaf, :by "root", :at 1527788879495, :text ":as", :id "BkGvIB3TyX"} + "v" {:type :leaf, :by "root", :at 1527788880219, :text "config", :id "Hku8Sn6Jm"} + } + } + "yy" { + :type :expr, :by "root", :at 1539099978847, :id "F-tmW09sR9" + :data { + "T" {:type :leaf, :by "root", :at 1539099978847, :text "[]", :id "w3COc17gEm"} + "j" {:type :leaf, :by "root", :at 1539099984962, :text "app.manager", :id "0mcUC_shjq"} + "r" {:type :leaf, :by "root", :at 1539099978847, :text ":refer", :id "gubvKDtoci"} + "v" { + :type :expr, :by "root", :at 1539099978847, :id "wbkxiao7Kj" + :data { + "T" {:type :leaf, :by "root", :at 1539099978847, :text "[]", :id "GHi9laiLpZ"} + "j" {:type :leaf, :by "root", :at 1539099978847, :text "create-process!", :id "V7qxH9J4p4"} + "r" {:type :leaf, :by "root", :at 1539099978847, :text "kill-process!", :id "OW9gBzVtUT"} + } + } + } + } + } + } + } + } + :defs { + "*reader-reel" { + :type :expr, :id "SkrNzg8-eAHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HkU4MeUWgRrb", :text "defonce", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1wVflUZx0BW", :text "*reader-reel", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "H1u4Gl8bl0B-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1F4ze8WxRSW", :text "atom", :by "root", :at 1500541255553} + "j" {:type :leaf, :text "@*reel", :id "ryzvXS0h3b", :by "root", :at 1507829929366} + } + } + } + } + "*reel" { + :type :expr, :id "r1e7FVRhhW", :by "root", :at 1507808379111 + :data { + "T" {:type :leaf, :text "defonce", :id "Sk-XF4Rh3W", :by "root", :at 1507808394824} + "j" {:type :leaf, :text "*reel", :id "HyM7tVRn3W", :by "root", :at 1507808379111} + "r" { + :type :expr, :id "SJxiFdyT2-", :by "root", :at 1507813506897 + :data { + "D" {:type :leaf, :text "atom", :id "S1ZsKukT2W", :by "root", :at 1507813508566} + "T" { + :type :expr, :id "BJm7FEC33-", :by "root", :at 1507808379111 + :data { + "T" {:type :leaf, :text "merge", :id "r1rq4R3nZ", :by "root", :at 1507808397502} + "j" {:type :leaf, :text "reel-schema", :id "SkLq403nZ", :by "root", :at 1507808421056} + "r" { + :type :expr, :id "HkCo4RnnZ", :by "root", :at 1507808421610 + :data { + "T" {:type :leaf, :text "{}", :id "Syr6i4Rhhb", :by "root", :at 1507808424590} + "j" { + :type :expr, :id "HyfnN03hb", :by "root", :at 1507808425954 + :data { + "T" {:type :leaf, :text ":base", :id "BJZ-3EC22b", :by "root", :at 1507808428338} + "j" {:type :leaf, :text "initial-db", :id "Bk7E3V0nnW", :by "root", :at 1507808431842} + } + } + "r" { + :type :expr, :id "Sy7O2VC32b", :by "root", :at 1507808432498 + :data { + "T" {:type :leaf, :text ":db", :id "Sy7O2VC32bleaf", :by "root", :at 1507808433485} + "j" {:type :leaf, :text "initial-db", :id "rJqhVR32W", :by "root", :at 1507808437108} + } + } + } + } + } + } + } + } + } + } + "dispatch!" { + :type :expr, :id "ByeNmqTh2W", :by "root", :at 1507805724033 + :data { + "T" {:type :leaf, :text "defn", :id "ByZNX963nb", :by "root", :at 1507805746075} + "j" {:type :leaf, :text "dispatch!", :id "SyzNX963nW", :by "root", :at 1507805724033} + "n" { + :type :expr, :id "ryIIpp23-", :by nil, :at 1500541255553 + :data { + "j" {:type :leaf, :id "BJd_7l8We0S-", :text "op", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "SktOQxLZxRSZ", :text "op-data", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "Bk5OmlUWgRrW", :text "sid", :by "root", :at 1507806585099} + } + } + "t" { + :type :expr, :id "H1eziVwSMz", :by "root", :at 1513612441808 + :data { + "5" {:type :leaf, :text "let", :id "BkYoEvBzM", :by "root", :at 1513612449423} + "9" { + :type :expr, :id "HJ5jVDBMG", :by "root", :at 1513612449699 + :data { + "T" { + :type :expr, :id "B1ijNDBfz", :by "root", :at 1513612450706 + :data { + "T" {:type :leaf, :text "op-id", :id "SJQts4vSfM", :by "root", :at 1513612454094} + "j" { + :type :expr, :id "ry1hNPHzz", :by "root", :at 1513612454756 + :data { + "T" {:type :leaf, :text ".generate", :id "HJbRj4DBzf", :by "root", :at 1513612456520} + "j" {:type :leaf, :text "shortid", :id "r1gZhNPSGM", :by "root", :at 1513612457634} + } + } + } + } + "j" { + :type :expr, :id "ByWXn4DSff", :by "root", :at 1513612459185 + :data { + "T" {:type :leaf, :text "op-time", :id "ByWXn4DSffleaf", :by "root", :at 1513612460384} + "j" { + :type :expr, :id "Bkl83EPBzM", :by "root", :at 1513612461810 + :data { + "T" {:type :leaf, :text ".valueOf", :id "ry8hEDSMz", :by "root", :at 1513612462843} + "j" { + :type :expr, :id "r1zvnEwBfG", :by "root", :at 1513612463387 + :data { + "T" {:type :leaf, :text "js/Date.", :id "r1bv3EvSMM", :by "root", :at 1513612465281} + } + } + } + } + } + } + } + } + "D" { + :type :expr, :by "root", :at 1527441309672, :id "BJLiPPOym" + :data { + "D" {:type :leaf, :by "root", :at 1527441310262, :text "if", :id "rJl8ivw_yQ"} + "L" {:type :leaf, :by "root", :at 1527441311407, :text "dev?", :id "H1X8jPD_JQ"} + "T" { + :type :expr, :id "rkOj4wBMG", :by "root", :at 1507805724033 + :data { + "T" {:type :leaf, :text "println", :id "S1Gg4X9T2hZ", :by "root", :at 1519314516627} + "r" {:type :leaf, :text "|Dispatch!", :id "rJNgVX9p3hZ", :by "root", :at 1507830373170} + "v" { + :type :expr, :id "B1rg4Q5p23b", :by "root", :at 1507805724033 + :data { + "T" {:type :leaf, :text "str", :id "SJLeNQ56nh-", :by "root", :at 1507805724033} + "j" {:type :leaf, :text "op", :id "SkwgE7c622W", :by "root", :at 1507805724033} + } + } + "x" {:type :leaf, :text "op-data", :id "r19gNm5T3nW", :by "root", :at 1507805724033} + "y" {:type :leaf, :text "sid", :id "HkigVm9ph3Z", :by "root", :at 1507806587446} + } + } + } + } + "T" { + :type :expr, :id "B1dMgR3n-", :by "root", :at 1507807247710 + :data { + "T" {:type :leaf, :text "try", :id "rJlPMxA3nZ", :by "root", :at 1527441254169} + "j" { + :type :expr, :by "root", :at 1521797553713, :id "HJ92tBGqf" + :data { + "D" {:type :leaf, :by "root", :at 1521797558563, :text "cond", :id "Hyl5hFrzqG"} + "L" { + :type :expr, :by "root", :at 1521797562370, :id "ryGaYBzqG" + :data { + "T" { + :type :expr, :by "root", :at 1521797565407, :id "SylBaYrM5f" + :data { + "T" {:type :leaf, :by "root", :at 1521797566464, :text "=", :id "BJZ-6KHf5f"} + "j" {:type :leaf, :by "root", :at 1521797566727, :text "op", :id "BkPpKBG5z"} + "r" {:type :leaf, :by "root", :at 1521797573929, :text ":effect/persist", :id "rJzP6FrzcG"} + } + } + "j" { + :type :expr, :by "root", :at 1521797578265, :id "Bkz0KHGqz" + :data { + "T" {:type :leaf, :by "root", :at 1521797578625, :text "persist-db!", :id "S1MbRtSG5G"} + } + } + } + } + "P" { + :type :expr, :by "root", :at 1539099964101, :id "mgyhd5iDaz" + :data { + "T" { + :type :expr, :by "root", :at 1539099964101, :id "XzMC-SWXnV" + :data { + "T" {:type :leaf, :by "root", :at 1539099964101, :text "=", :id "Qad3mxDXDY"} + "j" {:type :leaf, :by "root", :at 1539099964101, :text "op", :id "Vdq0nfrrxJ"} + "r" {:type :leaf, :by "root", :at 1539099964101, :text ":effect/run", :id "h-rRE4O2Zd"} + } + } + "j" { + :type :expr, :by "root", :at 1539099964101, :id "yHk4lEvJhy" + :data { + "T" {:type :leaf, :by "root", :at 1539099964101, :text "create-process!", :id "hSSAB7w1Se"} + "j" {:type :leaf, :by "root", :at 1539099964101, :text "op-data", :id "f1qUPvja01"} + "r" {:type :leaf, :by "root", :at 1539099964101, :text "dispatch!", :id "TfUga0soii"} + } + } + } + } + "R" { + :type :expr, :by "root", :at 1539099968529, :id "NUpvwWwKCa" + :data { + "T" { + :type :expr, :by "root", :at 1539099968529, :id "pyfBuRCUdS" + :data { + "T" {:type :leaf, :by "root", :at 1539099968529, :text "=", :id "2F4dyykG01"} + "j" {:type :leaf, :by "root", :at 1539099968529, :text "op", :id "0pZjVVO9u3"} + "r" {:type :leaf, :by "root", :at 1539099968529, :text ":effect/kill", :id "7Rv9c88KfK"} + } + } + "j" { + :type :expr, :by "root", :at 1539099968529, :id "BnBfqUGgLc" + :data { + "T" {:type :leaf, :by "root", :at 1539099968529, :text "kill-process!", :id "S9BviQmqx8"} + "j" {:type :leaf, :by "root", :at 1539099968529, :text "op-data", :id "gErB3KO_L9"} + "r" {:type :leaf, :by "root", :at 1539099968529, :text "dispatch!", :id "w6gyZT18df"} + } + } + } + } + "T" { + :type :expr, :by "root", :at 1521797559221, :id "rkbyTYrfqG" + :data { + "D" {:type :leaf, :by "root", :at 1521797560539, :text ":else", :id "SyeTFHfcz"} + "T" { + :type :expr, :id "HJejMgAh3b", :by "root", :at 1507805724033 + :data { + "T" {:type :leaf, :text "let", :id "HJ-W4m562hZ", :by "root", :at 1507805724033} + "j" { + :type :expr, :id "rkf-NQqa3h-", :by "root", :at 1507805724033 + :data { + "T" { + :type :expr, :id "HkXbEm5pn2Z", :by "root", :at 1507805724033 + :data { + "T" {:type :leaf, :text "new-reel", :id "H1Nb4mqT23-", :by "root", :at 1507808589297} + "j" { + :type :expr, :id "SJrW4m9ah3W", :by "root", :at 1507805724033 + :data { + "D" {:type :leaf, :text "reel-reducer", :id "SkrVrR3nb", :by "root", :at 1524591463595} + "L" {:type :leaf, :text "@*reel", :id "B1qrHR3hb", :by "root", :at 1507808602095} + "T" {:type :leaf, :text "updater", :id "ry8b479anhb", :by "root", :at 1507805724033} + "r" {:type :leaf, :text "op", :id "r1_bN7cT2nb", :by "root", :at 1507805724033} + "v" {:type :leaf, :text "op-data", :id "HJt-E75a33W", :by "root", :at 1507805724033} + "x" {:type :leaf, :text "sid", :id "Bk5Z4m9p2hb", :by "root", :at 1507806589736} + "y" {:type :leaf, :text "op-id", :id "S1obVmcan3-", :by "root", :at 1507805724033} + "yT" {:type :leaf, :text "op-time", :id "Hk2bEQqT33b", :by "root", :at 1507805724033} + } + } + } + } + } + } + "r" { + :type :expr, :id "B1aWNX96n2Z", :by "root", :at 1507805724033 + :data { + "T" {:type :leaf, :text "reset!", :id "ryRZVX9T3nZ", :by "root", :at 1507805724033} + "j" {:type :leaf, :text "*reel", :id "rJJMV79p23W", :by "root", :at 1507808587261} + "r" {:type :leaf, :text "new-reel", :id "B1lMEQca3h-", :by "root", :at 1507808595719} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1527441255503, :id "H1gJOwv_kQ" + :data { + "T" {:type :leaf, :by "root", :at 1527441258584, :text "catch", :id "H1gJOwv_kQleaf"} + "j" {:type :leaf, :by "root", :at 1527441273935, :text "js/Error", :id "B1xQ_vwuy7"} + "r" {:type :leaf, :by "root", :at 1527441275499, :text "error", :id "HJXzFwv_kX"} + "v" { + :type :expr, :by "root", :at 1527441280510, :id "SJ_tDwd1X" + :data { + "T" {:type :leaf, :by "root", :at 1527441288009, :text ".error", :id "rkItwDdJm"} + "j" {:type :leaf, :by "root", :at 1527441283882, :text "js/console", :id "rJxqKPPOyQ"} + "r" {:type :leaf, :by "root", :at 1527441285560, :text "error", :id "H1W3YPwukm"} + } + } + } + } + } + } + } + } + } + } + "initial-db" { + :type :expr, :id "HkexMeUZlCH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Hyblze8WlCBb", :text "def", :by "root", :at 1507808369153} + "j" {:type :leaf, :id "SyGeGlIWl0BW", :text "initial-db", :by "root", :at 1507808362410} + "r" { + :type :expr, :id "rkrlzx8ZgRHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rk8ezxLbxAS-", :text "let", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "SyveGgUWeCHZ", :by nil, :at 1500541255553 + :data { + "j" { + :type :expr, :id "ByTezeLWxAHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJCgGxIbg0Sb", :text "filepath", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "Sy1WzgU-xASb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SklbMeUblRr-", :text ":storage-path", :by "root", :at 1524298885143} + "j" {:type :leaf, :id "S1--GlLblCHb", :text "node-config/env", :by "root", :at 1527789076575} + } + } + } + } + } + } + "v" { + :type :expr, :id "ByEbGgLbxASW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJS-feLWl0HZ", :text "if", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "B1Ubzx8Wg0B-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1wZMeUWgRSW", :text "fs/existsSync", :by "root", :at 1507813255027} + "j" {:type :leaf, :id "HJ_-GlUZx0BZ", :text "filepath", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "HkYZMlUbxCBb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJqZzeUblCr-", :text "do", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "B1jbfx8bgABb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ry2Zzg8WgCr-", :text "println", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BJpWGg8bgCr-", :text "|Found storage in:", :by "root", :at 1524299002473} + "r" { + :type :expr, :id "r1VbrudhM", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SklbMeUblRr-", :text ":storage-path", :by "root", :at 1524298885143} + "j" {:type :leaf, :id "S1--GlLblCHb", :text "node-config/env", :by "root", :at 1527788966779} + } + } + } + } + "r" { + :type :expr, :id "HJRWfgIZg0rZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkyzfl8-gAS-", :text "read-string", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rylffxLZlASW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkWfzeLWeRBb", :text "fs/readFileSync", :by "root", :at 1507813258199} + "j" {:type :leaf, :id "B1GfMl8bl0SZ", :text "filepath", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "H1XMGgIbxArW", :text "|utf8", :by "root", :at 1500541255553} + } + } + } + } + } + } + "v" {:type :leaf, :text "schema/database", :id "S1WJxPTh2-", :by "root", :at 1507804904026} + } + } + } + } + } + } + "main!" { + :type :expr, :id "ryC_We8ZlASb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "By1KbeIbl0SW", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BJxFZgUWe0SW", :text "main!", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "Sk-t-eUbgASZ", :by nil, :at 1500541255553 + :data {} + } + "v" { + :type :expr, :id "HyDtWeIZgCBb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1_YWgLZlRrb", :text "run-server!", :by "root", :at 1500541255553} + "f" { + :type :expr, :by "root", :at 1521797385834, :id "rklGzYSMcM" + :data { + "T" {:type :leaf, :by "root", :at 1521797388178, :text "#()", :id "rJGfFSf9G"} + "j" {:type :leaf, :by "root", :at 1521797390678, :text "dispatch!", :id "rJM4MYSzqM"} + "r" {:type :leaf, :by "root", :at 1521797392642, :text "%1", :id "BJgwfKBf9f"} + "v" {:type :leaf, :by "root", :at 1521797393374, :text "%2", :id "rketMtSMqf"} + "x" {:type :leaf, :by "root", :at 1521797394712, :text "%3", :id "HJcGtHM5f"} + } + } + "j" { + :type :expr, :id "HJTK-l8bgCBW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HkCYZg8ZgArZ", :text ":port", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BJkc-l8-lAr-", :text "config/site", :by "root", :at 1527788872215} + } + } + } + } + "w" { + :type :expr, :id "H1XCZgLWlAS-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ByE0bxLZl0HW", :text "render-loop!", :by "root", :at 1500541255553} + } + } + "y" { + :type :expr, :id "BJ3C-gIWlABb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJT0-xLWgCrZ", :text ".on", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1RAZx8bx0Hb", :text "js/process", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "BkkJMlLZeAHb", :text "|SIGINT", :by "root", :at 1500541255553} + "v" {:type :leaf, :text "on-exit!", :id "Skelr1np23-", :by "root", :at 1507806173399} + } + } + "yD" { + :type :expr, :by "root", :at 1524381378701, :id "rkjaU2Ynf" + :data { + "T" {:type :leaf, :by "root", :at 1524381383815, :text "js/setInterval", :id "rkjaU2Ynfleaf"} + "j" { + :type :expr, :by "root", :at 1524381384637, :id "r1bCLht3z" + :data { + "T" {:type :leaf, :by "root", :at 1524381387239, :text "#()", :id "BJbxCUnYnM"} + "j" {:type :leaf, :by "root", :at 1524381390653, :text "persist-db!", :id "Hk-QAUhFhM"} + } + } + "r" { + :type :expr, :by "root", :at 1524381399340, :id "SyeDV4fubX" + :data { + "T" {:type :leaf, :by "root", :at 1524381399626, :text "*", :id "r1hAU3tnG"} + "j" {:type :leaf, :by "root", :at 1524381437050, :text "60", :id "HJZyPhKhz"} + "v" {:type :leaf, :by "root", :at 1524381404486, :text "1000", :id "rkxNyv3KhG"} + "x" {:type :leaf, :by "root", :at 1524381438092, :text "10", :id "B1L-vnYnz"} + } + } + } + } + "yT" { + :type :expr, :id "rkpyflI-l0B-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJR1GlLZeCSb", :text "println", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJ1lMxLWeASZ", :text "|Server started.", :by "root", :at 1500541255553} + } + } + } + } + "on-exit!" { + :type :expr, :id "r1gryn6hhZ", :by "root", :at 1507806173399 + :data { + "T" {:type :leaf, :text "defn", :id "rJZSy2T2n-", :by "root", :at 1507806175705} + "j" {:type :leaf, :text "on-exit!", :id "B1fHy2pnnb", :by "root", :at 1507806173399} + "v" { + :type :expr, :id "H1rrkn63h-", :by "root", :at 1507806173399 + :data { + "T" {:type :leaf, :text "code", :id "rk8rJh63nW", :by "root", :at 1507806173399} + } + } + "x" { + :type :expr, :by "root", :at 1521797541557, :id "rJRiKSf9M" + :data { + "T" {:type :leaf, :by "root", :at 1521797534647, :text "persist-db!", :id "HyMlDiFBG9G"} + } + } + "xD" { + :type :expr, :by "root", :at 1521797676085, :id "rJVE9BM5z" + :data { + "T" {:type :leaf, :by "root", :at 1521797676956, :text "println", :id "rJVE9BM5zleaf"} + "j" {:type :leaf, :by "root", :at 1521797683859, :text "|exit code is:", :id "BJHrE9rG5G"} + "r" { + :type :expr, :by "root", :at 1521797684755, :id "Skp45HfqM" + :data { + "T" {:type :leaf, :by "root", :at 1521797685691, :text "pr-str", :id "Hken4qrMcG"} + "j" {:type :leaf, :by "root", :at 1521797686800, :text "code", :id "SkZCNqHGcz"} + } + } + } + } + "yT" { + :type :expr, :id "ry6rkhTh3b", :by "root", :at 1507806173399 + :data { + "T" {:type :leaf, :text ".exit", :id "BJRHk3pnhW", :by "root", :at 1507806173399} + "j" {:type :leaf, :text "js/process", :id "r11eSkha3nW", :by "root", :at 1507806173399} + } + } + } + } + "persist-db!" { + :type :expr, :by "root", :at 1521797534647, :id "BkgwiFHf5M" + :data { + "T" {:type :leaf, :by "root", :at 1521797538383, :text "defn", :id "HJWwitHG5M"} + "j" {:type :leaf, :by "root", :at 1521797534647, :text "persist-db!", :id "S1GwoYHf5M"} + "n" { + :type :expr, :by "root", :at 1521797539426, :id "SJZiiKrM9z" + :data {} + } + "v" { + :type :expr, :by "root", :at 1529516703080, :id "ryePizzuZX" + :data { + "T" {:type :leaf, :by "root", :at 1529516707700, :text "let", :id "ryxsjMM_WQ"} + "j" { + :type :expr, :by "root", :at 1529516711063, :id "rklJ3fMdWQ" + :data { + "5" { + :type :expr, :by "root", :at 1529516837153, :id "HJp7Xf_b7" + :data { + "T" {:type :leaf, :by "root", :at 1529516842334, :text "file-content", :id "HJp7Xf_b7leaf"} + "j" { + :type :expr, :by "root", :at 1521797534647, :id "H1lPEXMdbm" + :data { + "T" {:type :leaf, :by "root", :at 1521797534647, :text "pr-str", :id "BktPitHG9M"} + "j" { + :type :expr, :by "root", :at 1521797534647, :id "ry5PsFrzqz" + :data { + "T" {:type :leaf, :by "root", :at 1521797534647, :text "assoc", :id "S1ovsKrz9M"} + "j" { + :type :expr, :by "root", :at 1521797534647, :id "rJhPjtBG5f" + :data { + "T" {:type :leaf, :by "root", :at 1521797534647, :text ":db", :id "r1pwiYBzqf"} + "j" {:type :leaf, :by "root", :at 1521797534647, :text "@*reel", :id "B1CPstHfqz"} + } + } + "r" {:type :leaf, :by "root", :at 1521797534647, :text ":sessions", :id "rk1lvjtrM9M"} + "v" { + :type :expr, :by "root", :at 1521797534647, :id "HkgxDiFSM5G" + :data { + "T" {:type :leaf, :by "root", :at 1521797534647, :text "{}", :id "S1WgviYHzqf"} + } + } + } + } + } + } + } + } + "D" { + :type :expr, :by "root", :at 1529516734431, :id "Sy-IazGOWm" + :data { + "T" {:type :leaf, :by "root", :at 1529516735500, :text "now", :id "Sy-IazGOWmleaf"} + "j" { + :type :expr, :by "root", :at 1529516736191, :id "HkldpfGdWQ" + :data { + "T" {:type :leaf, :by "root", :at 1529516740658, :text "js/Date.", :id "ryupfGdW7"} + } + } + } + } + "L" { + :type :expr, :by "root", :at 1529516997256, :id "Hyg6aXzOZQ" + :data { + "T" {:type :leaf, :by "root", :at 1529517003417, :text "storage-path", :id "Hyg6aXzOZQleaf"} + "j" { + :type :expr, :by "root", :at 1521797534647, :id "Bk3CmfdW7" + :data { + "T" {:type :leaf, :by "root", :at 1524298920268, :text ":storage-path", :id "By8PoFSG9f"} + "j" {:type :leaf, :by "root", :at 1527788976821, :text "node-config/env", :id "HJDwsYBG5z"} + } + } + } + } + "T" { + :type :expr, :by "root", :at 1529516714998, :id "rJ7nMGu-7" + :data { + "D" {:type :leaf, :by "root", :at 1529516720230, :text "backup-path", :id "rklm3fzu-X"} + "T" { + :type :expr, :by "root", :at 1524298667358, :id "SyOiMMuZQ" + :data { + "T" {:type :leaf, :by "root", :at 1524298686903, :text "path/join", :id "Hk73QOO2G"} + "j" {:type :leaf, :by "root", :at 1524298689900, :text "js/__dirname", :id "BkQDTmdO2G"} + "n" {:type :leaf, :by "root", :at 1529517096432, :text "\"backups", :id "ry5nGGOWm"} + "p" { + :type :expr, :by "root", :at 1529516938432, :id "rJeG5Qf_-7" + :data { + "D" {:type :leaf, :by "root", :at 1529516939417, :text "str", :id "SymqmGdZ7"} + "T" { + :type :expr, :by "root", :at 1529516753649, :id "r1c0GMO-X" + :data { + "D" {:type :leaf, :by "root", :at 1529516754442, :text "inc", :id "Byl9AfMuW7"} + "T" { + :type :expr, :by "root", :at 1529516745656, :id "rkM0MMd-7" + :data { + "T" {:type :leaf, :by "root", :at 1529516747835, :text ".getMonth", :id "SkgRpzzub7"} + "j" {:type :leaf, :by "root", :at 1529516753109, :text "now", :id "BJORffuWm"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1529516759617, :id "rkx17MdZX" + :data { + "D" {:type :leaf, :by "root", :at 1529516761353, :text "str", :id "Bkg-yQGObX"} + "L" { + :type :expr, :by "root", :at 1529516763683, :id "HyVk7f_ZX" + :data { + "T" {:type :leaf, :by "root", :at 1529516765561, :text ".getDate", :id "r1WX1mMdbX"} + "j" {:type :leaf, :by "root", :at 1529516766773, :text "now", :id "HJxIkXz_bX"} + } + } + "T" {:type :leaf, :by "root", :at 1529516770902, :text "\"-storage.edn", :id "H1j6mduhM"} + } + } + } + } + } + } + } + } + "n" { + :type :expr, :by "root", :at 1521797534647, :id "Skc4Xf_-X" + :data { + "T" {:type :leaf, :by "root", :at 1521797534647, :text "fs/writeFileSync", :id "HyVvstrz5f"} + "f" {:type :leaf, :by "root", :at 1529517008985, :text "storage-path", :id "HkgPAmzOZQ"} + "r" {:type :leaf, :by "root", :at 1529516853625, :text "file-content", :id "rkx3NXGuW7"} + } + } + "r" { + :type :expr, :by "root", :at 1529516777363, :id "BJlblmG_b7" + :data { + "j" {:type :leaf, :by "root", :at 1529516817583, :text "cp/execSync", :id "BJmm-mfuZX"} + "r" { + :type :expr, :by "root", :at 1529516798716, :id "rkDZXz_-7" + :data { + "T" {:type :leaf, :by "root", :at 1529516800592, :text "str", :id "BkrZQfd-7"} + "j" {:type :leaf, :by "root", :at 1529516808718, :text "\"mkdir -p ", :id "HyWtbQMuZX"} + "r" { + :type :expr, :by "root", :at 1529516809405, :id "B1ZZGmf_bm" + :data { + "T" {:type :leaf, :by "root", :at 1529516821273, :text "path/dirname", :id "SygWGmz_b7"} + "j" {:type :leaf, :by "root", :at 1529516826860, :text "backup-path", :id "rkQmQMuZQ"} + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1521797534647, :id "SJl97XMuWQ" + :data { + "T" {:type :leaf, :by "root", :at 1521797534647, :text "fs/writeFileSync", :id "HyVvstrz5f"} + "f" {:type :leaf, :by "root", :at 1529516865857, :text "backup-path", :id "S19SQGu-X"} + "r" {:type :leaf, :by "root", :at 1529516862015, :text "file-content", :id "ByrBQGuW7"} + } + } + "x" { + :type :expr, :id "HkohXf_ZQ", :by "root", :at 1507806173399 + :data { + "T" {:type :leaf, :text "println", :id "r1cH1nan3W", :by "root", :at 1507806173399} + "j" {:type :leaf, :text "\"Saved file in", :id "BJiSk26n2Z", :by "root", :at 1529517039462} + "r" {:type :leaf, :by "root", :at 1529517015777, :text "storage-path", :id "HkeJJNfO-X"} + "v" {:type :leaf, :by "root", :at 1529517086137, :text "\"and saved backup in", :id "HkgQJNMdWX"} + "x" {:type :leaf, :by "root", :at 1529517034685, :text "backup-path", :id "S1eeNfOb7"} + } + } + } + } + } + } + "reload!" { + :type :expr, :id "SyV_WxUZlCSZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BkHOZxL-eRHb", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "H1LO-x8bxCrZ", :text "reload!", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "ByP_-xUblRHZ", :by nil, :at 1500541255553 + :data {} + } + "v" { + :type :expr, :id "Sk_O-xUZgAH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJFu-e8-lABZ", :text "println", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SJ9u-lUbeABZ", :text "|Code updated.", :by "root", :at 1500541255553} + } + } + "w" { + :type :expr, :id "B1x-uS0nnW", :by "root", :at 1507808617377 + :data { + "T" {:type :leaf, :text "reset!", :id "B1x-uS0nnWleaf", :by "root", :at 1507808618991} + "j" {:type :leaf, :text "*reel", :id "rJfX_rR2hb", :by "root", :at 1507808620966} + "r" { + :type :expr, :id "B1IOrRnn-", :by "root", :at 1507808621613 + :data { + "T" {:type :leaf, :text "refresh-reel", :id "BkXHdSAhnZ", :by "root", :at 1507808630362} + "X" {:type :leaf, :text "@*reel", :id "HygJ5HR2nb", :by "root", :at 1507808655126} + "b" {:type :leaf, :text "initial-db", :id "HJSmYHR3hW", :by "root", :at 1507808637814} + "j" {:type :leaf, :text "updater", :id "HyzKBRnhb", :by "root", :at 1507808635015} + } + } + } + } + "x" { + :type :expr, :id "SksuZxUbxABW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H13dbl8ZgAB-", :text "sync-clients!", :by "root", :at 1507806907419} + "j" {:type :leaf, :id "S1aO-x8bxABZ", :text "@*reader-reel", :by "root", :at 1507829993436} + } + } + } + } + "render-loop!" { + :type :expr, :id "ry9MzxLZxAHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HksGfeIWx0Bb", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SJhGfeIWeAHZ", :text "render-loop!", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "H1pzfgUZxRr-", :by nil, :at 1500541255553 + :data {} + } + "v" { + :type :expr, :id "BJCGfg8ZgRrb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Byy7MeU-e0Bb", :text "if", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "BJlR2dXahb", :by "root", :at 1507829942161 + :data { + "D" {:type :leaf, :text "not", :id "Skb0n_Xpnb", :by "root", :at 1507829942884} + "T" { + :type :expr, :id "rylQGeLbgArW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJb7zeUbx0Bb", :text "identical?", :by "root", :at 1507829941197} + "j" {:type :leaf, :id "HkzmGlIbe0SZ", :text "@*reader-reel", :by "root", :at 1507830005566} + "r" {:type :leaf, :text "@*reel", :id "BJfD04An2W", :by "root", :at 1507808466061} + } + } + } + } + "r" { + :type :expr, :id "SkNQzeIbgRS-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJS7zgUZgRrb", :text "do", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HJ8QGlIWxRrZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Byw7zlIWxRSZ", :text "reset!", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "S1OmzeLZeRS-", :text "*reader-reel", :by "root", :at 1507829950396} + "r" {:type :leaf, :text "@*reel", :id "BJfD04An2W", :by "root", :at 1507808466061} + } + } + "v" { + :type :expr, :id "HkCQfg8-g0HZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H11NMgLZx0SZ", :text "sync-clients!", :by "root", :at 1507806914566} + "j" {:type :leaf, :id "H1e4fgLZeRH-", :text "@*reader-reel", :by "root", :at 1507829954052} + } + } + } + } + } + } + "x" { + :type :expr, :id "rJ-4Gl8bgCBW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SyfVzeIZlAH-", :text "js/setTimeout", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Sy7EMeIbeCSb", :text "render-loop!", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "H144flU-x0Hb", :text "200", :by "root", :at 1519368287026} + } + } + } + } + } + :proc { + :type :expr, :id "rJ5I-xLblCH-", :by nil, :at 1500541255553 + :data {} + } + } + "app.service" { + :ns { + :type :expr, :id "SysVGxUWe0rb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJnNflIZxCBb", :text "ns", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "S1pEfg8ZeCrW", :text "app.service", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "H1R4MlIbeCBb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJ1Hzx8-xRBb", :text ":require", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rklrGxL-eCrW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJbHGe8be0S-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJMrMxU-eCr-", :text "cljs.nodejs", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "B17rMlLZeRS-", :text ":as", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "Sk4BMxLbeASb", :text "nodejs", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "r1BrMgIWeAr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkLrGe8ZlRH-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rkvrfl8ZeCSb", :text "cljs.reader", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "rJuSMgIWe0BW", :text ":as", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "ByFHMlI-lRrZ", :text "reader", :by "root", :at 1500541255553} + } + } + "x" { + :type :expr, :id "BkMIfxUZgAHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1m8MgUZlCrW", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJELzeU-e0r-", :text "app.twig.container", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "S1HIMg8ZlRSZ", :text ":refer", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "rJ8IMl8beCBb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B1D8fxIWxCrb", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "B1_UGlLWgAH-", :text "twig-container", :by "root", :at 1500541255553} + } + } + } + } + "y" { + :type :expr, :id "Hyt8zxIWlABW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B1qUGgUbl0rW", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HkoLGx8WlABZ", :text "recollect.diff", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "Hy3UMlIWeRBW", :text ":refer", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "r1T8zeLZgRHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkAIGlIWe0rW", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SJkvfeUbl0rZ", :text "diff-twig", :by "root", :at 1511004310103} + } + } + } + } + "yT" { + :type :expr, :id "HJePGgUbe0Bb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkZPMgLbxCrW", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Byfvfe8WlRHZ", :text "recollect.twig", :by "root", :at 1511004290065} + "r" {:type :leaf, :id "HJXvfgIWlCrb", :text ":refer", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "H1VvGxLWe0Bb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BkHwGxUZeCBZ", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SyLvGl8ZeArb", :text "render-twig", :by "root", :at 1511004292866} + } + } + } + } + "yj" { + :type :expr, :id "B1y7Y63nb", :by "root", :at 1507805462557 + :data { + "T" {:type :leaf, :text "[]", :id "B1y7Y63nbleaf", :by "root", :at 1507805463132} + "j" {:type :leaf, :text "|shortid", :id "Skz1mYphh-", :by "root", :at 1507805465580} + "r" {:type :leaf, :text ":as", :id "r1lf7tahn-", :by "root", :at 1507805487329} + "v" {:type :leaf, :text "shortid", :id "S1mI7t6h3b", :by "root", :at 1507805472378} + } + } + "yr" { + :type :expr, :id "H1g0EFT32-", :by "root", :at 1507805494357 + :data { + "T" {:type :leaf, :text "[]", :id "H1g0EFT32-leaf", :by "root", :at 1507805494722} + "j" {:type :leaf, :text "|ws", :id "HkZJrFahhW", :by "root", :at 1507805497134} + "r" {:type :leaf, :text ":as", :id "SkW-BYannZ", :by "root", :at 1507805499275} + "v" {:type :leaf, :text "ws", :id "S1VXHKTnnW", :by "root", :at 1507805500528} + } + } + } + } + } + } + :defs { + "*registry" { + :type :expr, :id "SJZ_GeUWxCH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1Gdfe8WxABZ", :text "defonce", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "B1XOMxLbgCH-", :text "*registry", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "B1NuzlIblCrW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJH_zeUbl0SZ", :text "atom", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "ByLOfg8ZlASZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ByDufeU-eCr-", :text "{}", :by "root", :at 1500541255553} + } + } + } + } + } + } + "client-caches" { + :type :expr, :id "S1VrmlLWxAr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HyrB7gIWeCrb", :text "defonce", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "S1UH7xLWl0BZ", :text "client-caches", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "BkvBXg8bxABW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B1OBmxIWlAH-", :text "atom", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rkFH7l8bl0Bb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rk5SXeI-x0BW", :text "{}", :by "root", :at 1500541255553} + } + } + } + } + } + } + "run-server!" { + :type :expr, :id "B1OOMlL-l0r-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HytOfeUZlCBb", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Hk9_GeUbe0r-", :text "run-server!", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "rJj_GeI-lASZ", :by nil, :at 1500541255553 + :data { + "D" {:type :leaf, :text "on-action!", :id "r1lVBqp3n-", :by "root", :at 1507806727761} + "T" {:type :leaf, :id "By3dzxL-l0H-", :text "port", :by "root", :at 1507806349085} + } + } + "v" { + :type :expr, :id "SJpdGl8WlRrZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJAuMgLZe0BW", :text "let", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "SykYMxUbg0HW", :by nil, :at 1500541255553 + :data { + "D" { + :type :expr, :id "HkuLt6nhb", :by "root", :at 1507805519742 + :data { + "T" {:type :leaf, :text "WebSocketServer", :id "HkuLt6nhbleaf", :by "root", :at 1507805526726} + "j" { + :type :expr, :id "ByGyDKTn2b", :by "root", :at 1507805527021 + :data { + "T" {:type :leaf, :text ".-Server", :id "HJZ1PFp33W", :by "root", :at 1507805531943} + "j" {:type :leaf, :text "ws", :id "H1MEwK623-", :by "root", :at 1507805532663} + } + } + } + } + "T" { + :type :expr, :id "BketzxLZg0Hb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkWFfgLbe0BZ", :text "wss", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "S1fKMl8WgASW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkQYzlIZxCSZ", :text "new", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJ4tGlUZlRHb", :text "WebSocketServer", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "rJStzlL-gRHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkItGx8WlAB-", :text "js-obj", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SyPYfxL-e0BW", :text "|port", :by "root", :at 1500541255553} + "r" {:type :leaf, :text "port", :id "Skx-ch6h2b", :by "root", :at 1507806346657} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "rkoKGlIZxAr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJ2YGgIbeRS-", :text ".on", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SyaYfe8beAHZ", :text "wss", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "SkRYzlLZxCHb", :text "|connection", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "SyJcMxLWlRS-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1e5MeLWlRHW", :text "fn", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HJb9fl8bgCHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJM5fxU-xAH-", :text "socket", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "ryQ9fxLZlRBZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1N9zlIWxArZ", :text "let", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "H1r5fxLbl0HW", :by nil, :at 1500541255553 + :data { + "T" { + :type :expr, :id "r1UqGeUWx0S-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SyPczeIblCH-", :text "sid", :by "root", :at 1507806792850} + "j" { + :type :expr, :id "S1OcMgUZgRr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HkY9MlIbeAHZ", :text ".generate", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJ95fg8bx0H-", :text "shortid", :by "root", :at 1500541255553} + } + } + } + } + } + } + "r" { + :type :expr, :id "r1j9fx8blCr-", :by nil, :at 1500541255553 + :data { + "b" {:type :leaf, :text "on-action!", :id "SyhO9ah2W", :by "root", :at 1507806729909} + "j" {:type :leaf, :id "S1p9MeUblCBW", :text ":session/connect", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "BkC5MxUbgArW", :text "nil", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "r1kjMgLZgCB-", :text "sid", :by "root", :at 1513612500265} + } + } + "v" { + :type :expr, :id "SyxiGgLWgCHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1-izxLZlRHZ", :text "swap!", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "H1fsGx8-xRHZ", :text "*registry", :by "root", :at 1507830851867} + "r" {:type :leaf, :id "BkmiGxUblArb", :text "assoc", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "BkVsfgL-lCBb", :text "sid", :by "root", :at 1507806789387} + "x" {:type :leaf, :id "ryBiMlL-eASW", :text "socket", :by "root", :at 1500541255553} + } + } + "x" { + :type :expr, :id "S1LiMgUWe0SZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HyDjfgU-lArW", :text ".info", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Hydofe8blRBW", :text "js/console", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "BkYjzlUbgCr-", :text "|New client.", :by "root", :at 1500541255553} + } + } + "y" { + :type :expr, :id "rycjzlIZe0Bb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1oiMxL-eRHW", :text ".on", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Sk2sGeUZeABb", :text "socket", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "rJpizgUbxCBW", :text "|message", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "rkAife8ZxABZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1knzxI-l0rZ", :text "fn", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "SJx3GlUZeCrb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1W2MxL-g0SZ", :text "rawData", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "HkG2zlLZgAB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ryQ2zxLblRrZ", :text "let", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HJ4hzxI-g0H-", :by nil, :at 1500541255553 + :data { + "T" { + :type :expr, :id "H1rhfgLZgAHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Hk8nzxUZeABZ", :text "action", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rkvhfxU-lAHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Sy_nMl8bgCB-", :text "reader/read-string", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1KhGgUblCrZ", :text "rawData", :by "root", :at 1500541255553} + } + } + } + } + "j" { + :type :expr, :id "ry9nzlU-xRrZ", :by nil, :at 1500541255553 + :data { + "T" { + :type :expr, :id "Hys2GlL-g0rZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ryh3GxL-g0BW", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BkpnzxLWg0BZ", :text "op", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "SkCnGeLWgCS-", :text "op-data", :by "root", :at 1500541255553} + } + } + "j" {:type :leaf, :id "BJJTfeIZgABb", :text "action", :by "root", :at 1500541255553} + } + } + } + } + "r" { + :type :expr, :id "HJxTzxL-lCBb", :by nil, :at 1500541255553 + :data { + "b" {:type :leaf, :text "on-action!", :id "BklZFqa3hW", :by "root", :at 1507806722555} + "j" {:type :leaf, :id "Skz6feLWeABb", :text "op", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "Sk7TGxUblRBW", :text "op-data", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "HkNpGg8-e0rW", :text "sid", :by "root", :at 1513612505390} + } + } + } + } + } + } + } + } + "yT" { + :type :expr, :id "HJr6MgI-xAr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1LTMe8ZeCHb", :text ".on", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BJD6zxU-lRS-", :text "socket", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "B1daGgLWg0r-", :text "|close", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "Byt6fl8-gRHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S19pfeU-gArZ", :text "fn", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rJoTMlI-l0SZ", :by nil, :at 1500541255553 + :data {} + } + "r" { + :type :expr, :id "By3TMxU-xAr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ry66zl8Zg0Hb", :text ".warn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BJATfe8-lABZ", :text "js/console", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "BkyAfx8ZeCSZ", :text "|Client closed!", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "HJlAzeLWeCr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkWRGeU-e0Hb", :text "swap!", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "S1fAfl8ZeArb", :text "*registry", :by "root", :at 1507830854556} + "r" {:type :leaf, :id "S1mCGeIWxRHZ", :text "dissoc", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "r14AzgLZlAHZ", :text "sid", :by "root", :at 1507806798275} + } + } + "x" { + :type :expr, :id "BJBCfeI-e0rb", :by nil, :at 1500541255553 + :data { + "b" {:type :leaf, :text "on-action!", :id "SygXK9633-", :by "root", :at 1507806724735} + "j" {:type :leaf, :id "rJP0MlLZe0S-", :text ":session/disconnect", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "SJ_AGlIWe0r-", :text "nil", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "H1FCfeL-gAHb", :text "sid", :by "root", :at 1507806785919} + } + } + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1519314314588, :id "BJm5BDhvG" + :data { + "T" {:type :leaf, :by "root", :at 1519314316580, :text ".on", :id "BJm5BDhvGleaf"} + "j" {:type :leaf, :by "root", :at 1519314318139, :text "socket", :id "SyxB5Bv3wf"} + "r" {:type :leaf, :by "root", :at 1519314319405, :text "|error", :id "S17L5SDnPG"} + "v" { + :type :expr, :by "root", :at 1519314319866, :id "S1edqSvhvM" + :data { + "T" {:type :leaf, :by "root", :at 1519314320197, :text "fn", :id "H1O9HwnvG"} + "j" { + :type :expr, :by "root", :at 1519314320449, :id "BJNu5rv3DM" + :data { + "T" {:type :leaf, :by "root", :at 1519314323189, :text "error", :id "H17u5BP3PG"} + } + } + "r" { + :type :expr, :by "root", :at 1519314324412, :id "BJ25HPnvM" + :data { + "T" {:type :leaf, :by "root", :at 1519314327321, :text ".error", :id "BJ25HPnvMleaf"} + "j" {:type :leaf, :by "root", :at 1519314328532, :text "js/console", :id "rJ4ysBD2vz"} + "r" {:type :leaf, :by "root", :at 1519314330310, :text "error", :id "rylbjHvnwz"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "sync-clients!" { + :type :expr, :id "B1jCGxL-gRrW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1nAfeLblCrW", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HkaRMx8WxCrZ", :text "sync-clients!", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "Hk0CGgLbgASW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJ11Qx8beRS-", :text "reel", :by "root", :at 1507829969369} + } + } + "v" { + :type :expr, :id "Sko0dXp3-", :by "root", :at 1507829970590 + :data { + "D" {:type :leaf, :text "let", :id "SyxjC_mpnZ", :by "root", :at 1507829971355} + "L" { + :type :expr, :id "SJnRuQTh-", :by "root", :at 1507829971641 + :data { + "T" { + :type :expr, :id "Bye30_XahW", :by "root", :at 1507829971794 + :data { + "T" {:type :leaf, :text "db", :id "SJVjC_mp2b", :by "root", :at 1507829972179} + "j" { + :type :expr, :id "BJARuQThb", :by "root", :at 1507829973720 + :data { + "T" {:type :leaf, :text ":db", :id "H1X3Rd7p2W", :by "root", :at 1507829974499} + "j" {:type :leaf, :text "reel", :id "By1yFQa3-", :by "root", :at 1507829975266} + } + } + } + } + "j" { + :type :expr, :id "BJxSkFm6hZ", :by "root", :at 1507829980965 + :data { + "T" {:type :leaf, :text "records", :id "BJxSkFm6hZleaf", :by "root", :at 1507829983502} + "j" { + :type :expr, :id "BkxdJKmp2-", :by "root", :at 1507829983921 + :data { + "T" {:type :leaf, :text ":records", :id "rydkYQ62b", :by "root", :at 1507829985396} + "j" {:type :leaf, :text "reel", :id "rJUKyYQ63-", :by "root", :at 1507829986399} + } + } + } + } + } + } + "T" { + :type :expr, :id "Hyg17eL-x0B-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJWyXlLWlRSb", :text "doseq", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "S1M5dNPBMz", :by "root", :at 1513612402509 + :data { + "T" { + :type :expr, :id "ByGkmlL-lABZ", :by nil, :at 1500541255553 + :data { + "j" {:type :leaf, :id "HJE1QeLWeRBb", :text "sid", :by "root", :at 1507830954060} + "r" { + :type :expr, :id "S1HJXxUWeASW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1L17lIWgCrZ", :text "keys", :by "root", :at 1507830789091} + "j" {:type :leaf, :id "H1wkXl8ZeArZ", :text "@*registry", :by "root", :at 1507830830231} + } + } + } + } + } + } + "r" { + :type :expr, :id "Bkdk7g8WeRrW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rytkQgU-e0rZ", :text "let", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "r19k7xUWeCBW", :by nil, :at 1500541255553 + :data { + "D" { + :type :expr, :id "Hye5hnQ63Z", :by "root", :at 1507830961909 + :data { + "T" {:type :leaf, :text "sid", :id "Hye5hnQ63Zleaf", :by "root", :at 1507830964063} + "j" {:type :leaf, :text "sid", :id "HJG2h37anW", :by "root", :at 1507830965168} + } + } + "L" { + :type :expr, :id "HkxJ6276h-", :by "root", :at 1507830967191 + :data { + "T" {:type :leaf, :text "session", :id "HkxJ6276h-leaf", :by "root", :at 1507830970328} + "j" { + :type :expr, :id "S1lQphX62W", :by "root", :at 1507830971031 + :data { + "T" {:type :leaf, :text "get-in", :id "BJ7a2QahW", :by "root", :at 1507830971990} + "j" {:type :leaf, :text "db", :id "H17V63Q6nW", :by "root", :at 1507830974986} + "r" { + :type :expr, :id "rkd62Q63Z", :by "root", :at 1507830975545 + :data { + "T" {:type :leaf, :text "[]", :id "ry-Pp2m6hZ", :by "root", :at 1507830975901} + "j" {:type :leaf, :text ":sessions", :id "Byz_T2XT2Z", :by "root", :at 1507830977421} + "r" {:type :leaf, :text "sid", :id "B19a2Qa2Z", :by "root", :at 1507830979502} + } + } + } + } + } + } + "j" { + :type :expr, :id "BJZxXgLWe0rZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HkGxQx8Zg0H-", :text "old-store", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "Hy7e7eUZlAH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H14lQeIZlRHZ", :text "or", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "ryHgmlUZlABZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B1Ul7eU-e0B-", :text "get", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SyPe7lUbeCrW", :text "@client-caches", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "r1OeQgU-x0r-", :text "sid", :by "root", :at 1500541255553} + } + } + "r" {:type :leaf, :id "rytxme8ZeCS-", :text "nil", :by "root", :at 1500541255553} + } + } + } + } + "r" { + :type :expr, :id "HJclXeLblRBb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJjgQgUWlRHZ", :text "new-store", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rJ3lQgIWlRSZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Hy6lmgIZlCHb", :text "render-twig", :by "root", :at 1511004322898} + "j" { + :type :expr, :id "HJCxmxIbxRBb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJkbmx8Zl0SZ", :text "twig-container", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BJe-XeLWlRHb", :text "db", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "ByZbQlUWlRSW", :text "session", :by "root", :at 1500541255553} + "v" {:type :leaf, :text "records", :id "B1Zr2NQp3W", :by "root", :at 1507828909869} + } + } + "r" {:type :leaf, :id "rkM-Qx8bgRSb", :text "old-store", :by "root", :at 1500541255553} + } + } + } + } + "v" { + :type :expr, :id "HyQbQxLZxASW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B1NZ7gUWe0rW", :text "changes", :by "root", :at 1507805179505} + "j" { + :type :expr, :id "SJgYbup2hZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SysGQeU-gCr-", :text "diff-twig", :by "root", :at 1511004324857} + "v" {:type :leaf, :id "HykQml8-l0BW", :text "old-store", :by "root", :at 1500541255553} + "x" {:type :leaf, :id "rkgXQx8ZeAB-", :text "new-store", :by "root", :at 1500541255553} + "y" { + :type :expr, :id "ByGQ9ua33W", :by "root", :at 1507805323503 + :data { + "T" {:type :leaf, :text "{}", :id "S1WXcu62hZ", :by "root", :at 1507805324087} + "j" { + :type :expr, :id "ryzE9OT22Z", :by "root", :at 1507805324342 + :data { + "T" {:type :leaf, :text ":key", :id "ryWN9_pn2b", :by "root", :at 1507805325626} + "j" {:type :leaf, :text ":id", :id "SkeI9_ahhW", :by "root", :at 1507805326990} + } + } + } + } + } + } + } + } + "y" { + :type :expr, :id "HJNMXgLWeABW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1SzXeIbgCrW", :text "socket", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "SkIz7xIWeAH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1DzQe8-xCrW", :text "get", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJuzQxUbl0r-", :text "@*registry", :by "root", :at 1507830833026} + "r" {:type :leaf, :id "r1KzQxUZgRr-", :text "sid", :by "root", :at 1500541255553} + } + } + } + } + } + } + "v" { + :type :expr, :id "B1b77gUWeCHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJfXQlLZe0Hb", :text "println", :by "root", :at 1519314507238} + "r" {:type :leaf, :id "By4QQgLZg0H-", :text "|Changes for", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "SySmXlUWlRrZ", :text "sid", :by "root", :at 1500541255553} + "x" {:type :leaf, :id "HyLX7lLbgCSZ", :text "|:", :by "root", :at 1500541255553} + "y" {:type :leaf, :id "SJYmmxLZe0BZ", :text "changes", :by "root", :at 1507805197102} + "yT" { + :type :expr, :id "H1zQH7pnZ", :by "root", :at 1507829017719 + :data { + "T" {:type :leaf, :text "count", :id "Byl-QrXT2W", :by "root", :at 1507829018503} + "j" {:type :leaf, :text "records", :id "Sym7HQ63b", :by "root", :at 1507829021532} + } + } + } + } + "x" { + :type :expr, :id "SkqXXgUWlAH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Hyo77e8-eRSb", :text "if", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "Hknmme8WeRHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1a7XxL-xCrb", :text "and", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "Bk0m7l8-eCHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1kEml8-lCBb", :text "not=", :by "root", :at 1507805336153} + "j" {:type :leaf, :id "HyeN7eU-xRrb", :text "changes", :by "root", :at 1507805191931} + "r" { + :type :expr, :id "BJWVmxLWgCBb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ByfEQe8-gRHZ", :text "[]", :by "root", :at 1500541255553} + } + } + } + } + "r" { + :type :expr, :id "rkXVXeLZlCBW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJVE7eIblRBW", :text "some?", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1rNXg8-l0BW", :text "socket", :by "root", :at 1500541255553} + } + } + } + } + "r" { + :type :expr, :id "rkUNXxLbgCSb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJvE7xUbl0H-", :text "do", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "BydEQxLZxCHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1YNmxIbxRr-", :text ".send", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJc4mgU-x0BZ", :text "socket", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "Byi4QxLbeCS-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SknNXeUZg0H-", :text "pr-str", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJpNmlIWxArW", :text "changes", :by "root", :at 1507805194072} + } + } + } + } + "r" { + :type :expr, :id "ry0EXxLWlCrW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HyJr7xLbx0SZ", :text "swap!", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ByxHmg8bxRH-", :text "client-caches", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "Hk-r7e8Wx0Sb", :text "assoc", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "H1fB7x8WlAB-", :text "sid", :by "root", :at 1500541255553} + "x" {:type :leaf, :id "B1QrmxIblRSZ", :text "new-store", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "SJguzeUWgCHb", :by nil, :at 1500541255553 + :data {} + } + } + "app.style" { + :ns { + :type :expr, :by "root", :at 1519367963533, :id "HygVXDNTvf" + :data { + "T" {:type :leaf, :by "root", :at 1519367963533, :text "ns", :id "rkbV7wETvz"} + "j" {:type :leaf, :by "root", :at 1519367963533, :text "app.style", :id "BkfNmPV6wG"} + "r" { + :type :expr, :by "root", :at 1519368036923, :id "S1fTDw4pDf" + :data { + "T" {:type :leaf, :by "root", :at 1519368038192, :text ":require", :id "BJWpwDNavz"} + "j" { + :type :expr, :by "root", :at 1519368038575, :id "S1ydDETwM" + :data { + "T" {:type :leaf, :by "root", :at 1519368038764, :text "[]", :id "BJSADvEpPz"} + "j" {:type :leaf, :by "root", :at 1519368040947, :text "hsl.core", :id "HyfJOwN6Pf"} + "r" {:type :leaf, :by "root", :at 1519368041713, :text ":refer", :id "rkXWdwEavf"} + "v" { + :type :expr, :by "root", :at 1519368041918, :id "H1GzdP46Pz" + :data { + "T" {:type :leaf, :by "root", :at 1519368042785, :text "[]", :id "HkWf_w46wf"} + "j" {:type :leaf, :by "root", :at 1519368043289, :text "hsl", :id "ryxQdvEpDM"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1519368236509, :id "HJZV4OEavG" + :data { + "T" {:type :leaf, :by "root", :at 1519368236979, :text "[]", :id "HJZV4OEavGleaf"} + "j" {:type :leaf, :by "root", :at 1519368258261, :text "respo-ui.core", :id "BJ-HV_VTPz"} + "r" {:type :leaf, :by "root", :at 1519368241627, :text ":as", :id "Bkm_4d4pvG"} + "v" {:type :leaf, :by "root", :at 1519368242073, :text "ui", :id "SyW5N_46wG"} + } + } + } + } + } + } + :defs { + "button" { + :type :expr, :by "root", :at 1539099205546, :id "G9HwfFmGmr" + :data { + "T" {:type :leaf, :by "root", :at 1539099205546, :text "def", :id "hNQymT8myA"} + "j" {:type :leaf, :by "root", :at 1539099205546, :text "button", :id "CdLti3MIkH"} + "r" { + :type :expr, :by "root", :at 1539099205546, :id "3ElQwH0pac" + :data { + "T" {:type :leaf, :by "root", :at 1539099205546, :text "merge", :id "6nwNmM2v4m"} + "j" {:type :leaf, :by "root", :at 1539099205546, :text "ui/button", :id "Y73b38McZH"} + "r" { + :type :expr, :by "root", :at 1539099205546, :id "6EBAnsvsLO" + :data { + "T" {:type :leaf, :by "root", :at 1539099205546, :text "{}", :id "xU0pBR4t4d"} + "j" { + :type :expr, :by "root", :at 1539099205546, :id "5_9-G9KmgO" + :data { + "T" {:type :leaf, :by "root", :at 1539099205546, :text ":padding", :id "oAQ8Vd89id"} + "j" {:type :leaf, :by "root", :at 1539099205546, :text "|0 8px", :id "ODEqHYXuIW"} + } + } + "r" { + :type :expr, :by "root", :at 1539099205546, :id "vYbtUI5Ypp" + :data { + "T" {:type :leaf, :by "root", :at 1539099205546, :text ":min-width", :id "4NFXwc1-Ic"} + "j" {:type :leaf, :by "root", :at 1539099205546, :text "40", :id "ewCJRvYeXP"} + } + } + "v" { + :type :expr, :by "root", :at 1539099205546, :id "YXJxXNWnSu" + :data { + "T" {:type :leaf, :by "root", :at 1539099205546, :text ":line-height", :id "oB-dxvEcKef"} + "j" {:type :leaf, :by "root", :at 1539099205546, :text "|24px", :id "rKywgwkBvU5"} + } + } + "x" { + :type :expr, :by "root", :at 1539099205546, :id "x1j7LQ08S0E" + :data { + "T" {:type :leaf, :by "root", :at 1539099205546, :text ":height", :id "M92YLSesZ9g"} + "j" {:type :leaf, :by "root", :at 1539099205546, :text "|24px", :id "Uz3K5hOVZbn"} + } + } + } + } + } + } + } + } + "input" { + :type :expr, :by "root", :at 1539099217894, :id "nPuIaMlodC" + :data { + "T" {:type :leaf, :by "root", :at 1539099217894, :text "def", :id "N8XFhhsQ7c"} + "j" {:type :leaf, :by "root", :at 1539099217894, :text "input", :id "AOaX88ZiTY"} + "r" { + :type :expr, :by "root", :at 1539099217894, :id "wH2wuOp-tf" + :data { + "T" {:type :leaf, :by "root", :at 1539099217894, :text "merge", :id "9gBEhNWyqD"} + "j" {:type :leaf, :by "root", :at 1539099217894, :text "ui/input", :id "EjgsjBw_Kv"} + "r" { + :type :expr, :by "root", :at 1539099217894, :id "6WlhfmXOZ8" + :data { + "T" {:type :leaf, :by "root", :at 1539099217894, :text "{}", :id "YuXjgfRwCz"} + "j" { + :type :expr, :by "root", :at 1539099217894, :id "o1650nTYdW" + :data { + "T" {:type :leaf, :by "root", :at 1539099217894, :text ":width", :id "i833m63P9V"} + "j" {:type :leaf, :by "root", :at 1539099217894, :text "320", :id "BNA1YvA-fl"} + } + } + } + } + } + } + } + } + "link" { + :type :expr, :by "root", :at 1519367966237, :id "B1eU7P4avf" + :data { + "T" {:type :leaf, :by "root", :at 1519367970413, :text "def", :id "SyWUQP46vz"} + "j" {:type :leaf, :by "root", :at 1519367966237, :text "link", :id "H1MImvEaPG"} + "r" { + :type :expr, :by "root", :at 1519367966237, :id "BkX8QDNpPM" + :data { + "T" {:type :leaf, :by "root", :at 1519367974187, :text "{}", :id "HJAQwV6Df"} + "j" { + :type :expr, :by "root", :at 1519367974501, :id "rkQAmw4pPG" + :data { + "T" {:type :leaf, :by "root", :at 1519367980887, :text ":text-decoration", :id "B1M0QDE6Dz"} + "j" {:type :leaf, :by "root", :at 1519367984967, :text ":underline", :id "BkQSEDNTwf"} + } + } + "r" { + :type :expr, :by "root", :at 1519367985371, :id "S1QYVP4pPG" + :data { + "T" {:type :leaf, :by "root", :at 1519367998049, :text ":cursor", :id "S1QYVP4pPGleaf"} + "j" {:type :leaf, :by "root", :at 1519367996458, :text ":pointer", :id "HkzfrDEaPf"} + } + } + "v" { + :type :expr, :by "root", :at 1519368028360, :id "Bk-Nvv4aPz" + :data { + "T" {:type :leaf, :by "root", :at 1519368029579, :text ":color", :id "Bk-Nvv4aPzleaf"} + "j" { + :type :expr, :by "root", :at 1519368031142, :id "SylwPvNTvf" + :data { + "T" {:type :leaf, :by "root", :at 1519368031562, :text "hsl", :id "rygIwwV6Df"} + "j" {:type :leaf, :by "root", :at 1519368032307, :text "240", :id "rkx_wPNTPz"} + "r" {:type :leaf, :by "root", :at 1519368032737, :text "80", :id "B1NOvw4pwM"} + "v" {:type :leaf, :by "root", :at 1519368033240, :text "80", :id "By-FwDEaPG"} + } + } + } + } + "x" { + :type :expr, :by "root", :at 1519368217607, :id "SkfXu46vf" + :data { + "T" {:type :leaf, :by "root", :at 1519368219848, :text ":font-family", :id "SkfXu46vfleaf"} + "j" {:type :leaf, :by "root", :at 1519368227853, :text "ui/font-fancy", :id "rJWVXuV6wG"} + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1519367963533, :id "SyXN7PVpPM" + :data {} + } + } + "app.twig.container" { + :ns { + :type :expr, :id "rkSex8bg0S-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkIleLblAr-", :text "ns", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ByDelU-eRSZ", :text "app.twig.container", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "HkOlxUZlRH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1txeIZlRSb", :text ":require", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "Bk9llIWgCBW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJjxeUZxRBW", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJ2llIbe0SZ", :text "recollect.macros", :by "root", :at 1511004248883} + "r" {:type :leaf, :id "rJTgg8WlASZ", :text ":refer", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "HyCll8blCSb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJJ-eUZlAHW", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rkeWl8WgArb", :text "deftwig", :by "root", :at 1511004252919} + } + } + } + } + "r" { + :type :expr, :id "rkZblUblRHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkM-lUbxASW", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SJX-gU-e0SW", :text "app.twig.user", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "Hy4We8bgCB-", :text ":refer", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "r1SbgUbg0S-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJ8-x8WeCH-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BJv-e8beRSW", :text "twig-user", :by "root", :at 1500541255553} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1524279121206, :id "HkWtUPm_hM" + :data { + "T" {:type :leaf, :by "root", :at 1524279121814, :text "[]", :id "HkWtUPm_hMleaf"} + "j" {:type :leaf, :by "root", :at 1524279148454, :text "\"randomcolor", :id "Syeq8DmOnG"} + "r" {:type :leaf, :by "root", :at 1524279133262, :text ":as", :id "S1ezvwQdnz"} + "v" {:type :leaf, :by "root", :at 1524279134256, :text "color", :id "rkUvD7u2M"} + } + } + } + } + } + } + :defs { + "twig-container" { + :type :expr, :id "ByY-eUZeAr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJ5bxLZlRBZ", :text "deftwig", :by "root", :at 1511004235720} + "j" {:type :leaf, :id "Hkibe8Wl0S-", :text "twig-container", :by "root", :at 1500541255553} + "n" { + :type :expr, :id "Sk-PI_qp1z", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Hkzzg8WlRBZ", :text "db", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ByXzxL-lCH-", :text "session", :by "root", :at 1500541255553} + "r" {:type :leaf, :text "records", :id "rklw6NmanW", :by "root", :at 1507828952210} + } + } + "r" { + :type :expr, :id "ryl38_qaJf", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ByHzl8bgCSZ", :text "let", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HyUflIWgRrZ", :by nil, :at 1500541255553 + :data { + "T" { + :type :expr, :id "HywGl8-gCHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1_MlIbg0SW", :text "logged-in?", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "B1FGxLWeRHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ry5fe8ZlRS-", :text "some?", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "BkiGlU-e0B-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJnGeLZlAHb", :text ":user-id", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJTMlI-eAB-", :text "session", :by "root", :at 1500541255553} + } + } + } + } + } + } + "j" { + :type :expr, :id "rJ0GgLZlCS-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BkkQeLZlCHW", :text "router", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "SkemlIWxRBb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJWmlLWeRHZ", :text ":router", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJzXlLWxAHZ", :text "session", :by "root", :at 1500541255553} + } + } + } + } + "r" { + :type :expr, :id "ryowoQp2W", :by "root", :at 1507830626848 + :data { + "T" {:type :leaf, :text "base-data", :id "ryowoQp2Wleaf", :by "root", :at 1507830630278} + "j" { + :type :expr, :id "r1lyujmp3b", :by "root", :at 1507830631302 + :data { + "T" {:type :leaf, :text "{}", :id "By1djQTnb", :by "root", :at 1507830631896} + "j" { + :type :expr, :id "ryGxdimT2-", :by "root", :at 1507830632113 + :data { + "T" {:type :leaf, :text ":logged-in?", :id "Sy-guiXp2b", :by "root", :at 1507830641027} + "j" {:type :leaf, :text "logged-in?", :id "ByBusQ6hW", :by "root", :at 1507830639219} + } + } + "n" { + :type :expr, :id "ByecqsQ6nW", :by "root", :at 1507830674443 + :data { + "T" {:type :leaf, :text ":session", :id "ByecqsQ6nWleaf", :by "root", :at 1507830677551} + "j" {:type :leaf, :text "session", :id "BJlA5oXpn-", :by "root", :at 1507830679311} + } + } + "v" { + :type :expr, :id "SyxMtsm62Z", :by "root", :at 1507830649968 + :data { + "T" {:type :leaf, :text ":reel-length", :id "SyxMtsm62Zleaf", :by "root", :at 1507830655148} + "j" { + :type :expr, :id "B1xuKj7p3-", :by "root", :at 1507830655987 + :data { + "T" {:type :leaf, :text "count", :id "S1dKjma2Z", :by "root", :at 1507830657551} + "j" {:type :leaf, :text "records", :id "HkgcFsXT3b", :by "root", :at 1507830658789} + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099575916, :id "3_lVzhsHRP" + :data { + "T" { + :type :expr, :by "root", :at 1539099575916, :id "92JyrzujNV" + :data { + "T" {:type :leaf, :by "root", :at 1539099575916, :text "{}", :id "G0VoOySw2D"} + "j" { + :type :expr, :by "root", :at 1539099575916, :id "Tp6asy2ZYV" + :data { + "T" {:type :leaf, :by "root", :at 1539099575916, :text "workflows", :id "xOLkCWwn3W"} + "j" {:type :leaf, :by "root", :at 1539099575916, :text ":workflows", :id "ezmhwEAL8g"} + } + } + "r" { + :type :expr, :by "root", :at 1539099575916, :id "fImWePaF4q" + :data { + "T" {:type :leaf, :by "root", :at 1539099575916, :text "processes", :id "usIfyaTDWS"} + "j" {:type :leaf, :by "root", :at 1539099575916, :text ":processes", :id "svwjxhI2tw"} + } + } + "v" { + :type :expr, :by "root", :at 1539099575916, :id "gVfLl_0eV_" + :data { + "T" {:type :leaf, :by "root", :at 1539099575916, :text "histories", :id "IEtRYm33Az"} + "j" {:type :leaf, :by "root", :at 1539099575916, :text ":histories", :id "jAKE_3oCjM"} + } + } + } + } + "j" {:type :leaf, :by "root", :at 1539099575916, :text "db", :id "PhcU8Alghw"} + } + } + } + } + "r" { + :type :expr, :id "BkxpKj76h-", :by "root", :at 1507830661017 + :data { + "D" {:type :leaf, :text "merge", :id "H1W6KoQ6hZ", :by "root", :at 1507830661999} + "L" {:type :leaf, :text "base-data", :id "rJVCFjmp2b", :by "root", :at 1507830664014} + "T" { + :type :expr, :id "HJQmlU-e0rW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJVmgLZlAr-", :text "if", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1S7gUZlArb", :text "logged-in?", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "HJUQxIbx0rZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJPQl8ZgCHb", :text "{}", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "B107eU-lCHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Hy1VxUbeCS-", :text ":user", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HJlNxUbx0r-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SyZVxIZeCS-", :text "twig-user", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HyG4lIZlRHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HkXVeL-l0Sb", :text "get-in", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJ4Nx8WeCrb", :text "db", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "HkrVgLZg0B-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ByIEeLbxCHb", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "H1v4xIWxArZ", :text ":users", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "HJ_VxL-xRr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJYNgUbgCBb", :text ":user-id", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ryqNeLZeCHb", :text "session", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + } + } + "x" { + :type :expr, :id "SJsEe8ZgCBZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJ2EeUWe0SZ", :text ":router", :by "root", :at 1500541255553} + "j" { + :type :expr, :by "root", :at 1524070628251, :id "ryh1FgBhM" + :data { + "D" {:type :leaf, :by "root", :at 1524070634499, :text "assoc", :id "rJbWgKgBhz"} + "T" {:type :leaf, :id "BJaEl8ZxCS-", :text "router", :by "root", :at 1500541255553} + "j" {:type :leaf, :by "root", :at 1524070635855, :text ":data", :id "rygQeYlH3G"} + "r" { + :type :expr, :by "root", :at 1524070636122, :id "r1VNlFlHnz" + :data { + "T" {:type :leaf, :by "root", :at 1524070641567, :text "case", :id "BJ74eFlB2z"} + "j" { + :type :expr, :by "root", :at 1524070641804, :id "HybcgKxB2G" + :data { + "T" {:type :leaf, :by "root", :at 1524070642493, :text ":name", :id "S1g9etlS2M"} + "j" {:type :leaf, :by "root", :at 1524070643351, :text "router", :id "HJilKgSnf"} + } + } + "l" { + :type :expr, :by "root", :at 1539099625144, :id "m7Hm7IsgeE" + :data { + "T" {:type :leaf, :by "root", :at 1539099625144, :text ":history", :id "bEvEpcQ8nz"} + "j" { + :type :expr, :by "root", :at 1539099625144, :id "LYDuG4ezww" + :data { + "T" {:type :leaf, :by "root", :at 1539099625144, :text "{}", :id "q_cTuNrWF-"} + "j" { + :type :expr, :by "root", :at 1539099625144, :id "2BiMv1Z8ir" + :data { + "T" {:type :leaf, :by "root", :at 1539099625144, :text ":histories", :id "nJGAZvXNN8"} + "j" {:type :leaf, :by "root", :at 1539099625144, :text "histories", :id "xeLOkHUvox"} + } + } + } + } + } + } + "n" { + :type :expr, :by "root", :at 1539099620184, :id "6dU3xTzClt" + :data { + "T" {:type :leaf, :by "root", :at 1539099620184, :text ":workflows", :id "NyIn3LvpVF"} + "j" { + :type :expr, :by "root", :at 1539099620184, :id "adwNTQVqP8" + :data { + "T" {:type :leaf, :by "root", :at 1539099620184, :text "{}", :id "RvnA2pcYhK"} + "j" { + :type :expr, :by "root", :at 1539099620184, :id "TXJ_lUUZnU" + :data { + "T" {:type :leaf, :by "root", :at 1539099620184, :text ":workflows", :id "DuJpCY0Mgx"} + "j" {:type :leaf, :by "root", :at 1539099620184, :text "workflows", :id "jR0jkWUQLm"} + } + } + } + } + } + } + "p" { + :type :expr, :by "root", :at 1539099614616, :id "wELnXhXLip" + :data { + "T" {:type :leaf, :by "root", :at 1539099614616, :text ":home", :id "O2jeAQ5HvZ"} + "j" { + :type :expr, :by "root", :at 1539099614616, :id "X2qN2ksQd8" + :data { + "T" {:type :leaf, :by "root", :at 1539099614616, :text "{}", :id "sWUgG_aRuQ"} + "j" { + :type :expr, :by "root", :at 1539099614616, :id "AO328wFXuS" + :data { + "T" {:type :leaf, :by "root", :at 1539099614616, :text ":processes", :id "j4xoEpb2qt"} + "j" {:type :leaf, :by "root", :at 1539099614616, :text "processes", :id "wenRxHkEtx"} + } + } + "r" { + :type :expr, :by "root", :at 1539099614616, :id "nKdBeIMKmi" + :data { + "T" {:type :leaf, :by "root", :at 1539099614616, :text ":workflows", :id "gguWH-0bJ9"} + "j" {:type :leaf, :by "root", :at 1539099614616, :text "workflows", :id "dO9kKtwOT6"} + } + } + } + } + } + } + "q" { + :type :expr, :by "root", :at 1539099632627, :id "3-ghWnZDIA" + :data { + "T" {:type :leaf, :by "root", :at 1539099632627, :text ":process", :id "UTEB-19X0U"} + "j" { + :type :expr, :by "root", :at 1539099632627, :id "NlE-4Tet_g" + :data { + "T" {:type :leaf, :by "root", :at 1539099632627, :text "let", :id "80-Yf4Kjec"} + "j" { + :type :expr, :by "root", :at 1539099632627, :id "3LSW3JPnmE" + :data { + "T" { + :type :expr, :by "root", :at 1539099632627, :id "ElDBeFmPdP" + :data { + "T" {:type :leaf, :by "root", :at 1539099632627, :text "process-id", :id "g7j4Pfoy6A"} + "j" { + :type :expr, :by "root", :at 1539099632627, :id "_hgJgqATN8" + :data { + "T" {:type :leaf, :by "root", :at 1539099632627, :text "->", :id "9lHBxUrqq1"} + "j" {:type :leaf, :by "root", :at 1539099632627, :text "router", :id "Tz1ifEO7P0"} + "r" {:type :leaf, :by "root", :at 1539099632627, :text ":params", :id "eguZeWgxNg"} + "v" {:type :leaf, :by "root", :at 1539099632627, :text ":id", :id "GZ2n9euOoh"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099632627, :id "MBc84B7fWQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099632627, :text "get", :id "yRrpZfwb7D"} + "j" {:type :leaf, :by "root", :at 1539099632627, :text "processes", :id "lMHV8ZGAvI"} + "r" {:type :leaf, :by "root", :at 1539099632627, :text "process-id", :id "_zunVANEQ0s"} + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1524070643948, :id "Bke3gKgB3z" + :data { + "T" {:type :leaf, :by "root", :at 1524070646898, :text ":profile", :id "Skb6etxBhG"} + "j" { + :type :expr, :by "root", :at 1524070654495, :id "ryLWFernz" + :data { + "T" {:type :leaf, :by "root", :at 1524070662619, :text "twig-members", :id "B1zJ-teBnM"} + "j" { + :type :expr, :by "root", :at 1524070665615, :id "B1MzFxBhz" + :data { + "T" {:type :leaf, :by "root", :at 1524070670477, :text ":sessions", :id "Bk-MYxShG"} + "j" {:type :leaf, :by "root", :at 1524070672563, :text "db", :id "SyPMtxH2G"} + } + } + "r" { + :type :expr, :by "root", :at 1524070673171, :id "HyWFMYxB3G" + :data { + "T" {:type :leaf, :by "root", :at 1524070674094, :text ":users", :id "HyWFMYxB3Gleaf"} + "j" {:type :leaf, :by "root", :at 1524070675166, :text "db", :id "HyVcztlS2f"} + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1524070648640, :id "ry-WtlH2M" + :data { + "T" {:type :leaf, :by "root", :at 1524070649106, :text "{}", :id "ry-WtlH2Mleaf"} + } + } + } + } + } + } + } + } + "y" { + :type :expr, :by "root", :at 1523120222572, :id "H1DPud8iG" + :data { + "T" {:type :leaf, :by "root", :at 1523120223864, :text ":count", :id "H1DPud8iGleaf"} + "j" { + :type :expr, :by "root", :at 1523120229051, :id "rygpP_OUif" + :data { + "T" {:type :leaf, :by "root", :at 1523120230136, :text "count", :id "HkaDOd8iM"} + "j" { + :type :expr, :by "root", :at 1523120230346, :id "SJrAwd_8oM" + :data { + "T" {:type :leaf, :by "root", :at 1523120232122, :text ":sessions", :id "rJVAwd_8if"} + "j" {:type :leaf, :by "root", :at 1523120232500, :text "db", :id "BJreO_d8of"} + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1524279105545, :id "rycrDmO2f" + :data { + "T" {:type :leaf, :by "B1y7Rc-Zz", :at 1533834715393, :text ":color", :id "rycrDmO2fleaf"} + "j" { + :type :expr, :by "root", :at 1524279111422, :id "Hyx1LP7d3z" + :data { + "T" {:type :leaf, :by "root", :at 1524279116617, :text "color/randomColor", :id "ryJUwQd2f"} + } + } + } + } + } + } + "v" {:type :leaf, :text "nil", :id "ryg7ssXahb", :by "root", :at 1507830683551} + } + } + } + } + } + } + } + } + "twig-members" { + :type :expr, :by "root", :at 1524070676419, :id "SkZ3zYeShG" + :data { + "T" {:type :leaf, :by "root", :at 1524070678073, :text "deftwig", :id "rJG3GYxHhG"} + "j" {:type :leaf, :by "root", :at 1524070676419, :text "twig-members", :id "rymhzFxH3G"} + "r" { + :type :expr, :by "root", :at 1524070676419, :id "Hy4nzKerhG" + :data { + "T" {:type :leaf, :by "root", :at 1524070680419, :text "sessions", :id "rygJQFlrnf"} + "j" {:type :leaf, :by "root", :at 1524070708862, :text "users", :id "r1-QYlSnf"} + } + } + "v" { + :type :expr, :by "root", :at 1524070683188, :id "SJxXQKlB2M" + :data { + "T" {:type :leaf, :by "root", :at 1524070689100, :text "->>", :id "SJxXQKlB2Mleaf"} + "j" {:type :leaf, :by "root", :at 1524070692906, :text "sessions", :id "rk7F7txBnM"} + "r" { + :type :expr, :by "root", :at 1524070693234, :id "ByNpmYeS3M" + :data { + "T" {:type :leaf, :by "root", :at 1524070695660, :text "map", :id "Hy7T7KeH2z"} + "j" { + :type :expr, :by "root", :at 1524070696021, :id "rkZg4tlH2M" + :data { + "T" {:type :leaf, :by "root", :at 1524070696334, :text "fn", :id "r1gxVYgrnz"} + "j" { + :type :expr, :by "root", :at 1524070696681, :id "HyW4Flr2f" + :data { + "T" { + :type :expr, :by "root", :at 1524070696875, :id "rJlZ4Fgr2G" + :data { + "T" {:type :leaf, :by "root", :at 1524070697162, :text "[]", :id "S1NeVKxrnf"} + "j" {:type :leaf, :by "root", :at 1524070697507, :text "k", :id "BJX-4YgrhG"} + "r" {:type :leaf, :by "root", :at 1524070699358, :text "session", :id "r1z4tgS3M"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1524070700350, :id "B1WEVFer3z" + :data { + "T" {:type :leaf, :by "root", :at 1524070701520, :text "[]", :id "B1WEVFer3zleaf"} + "j" {:type :leaf, :by "root", :at 1524070702142, :text "k", :id "BJxLVtgH3f"} + "r" { + :type :expr, :by "root", :at 1524070702968, :id "Hklw4FlH2G" + :data { + "T" {:type :leaf, :by "root", :at 1524070705127, :text "get-in", :id "SkPEYxB3M"} + "j" {:type :leaf, :by "root", :at 1524070714762, :text "users", :id "BklA4FeS3G"} + "r" { + :type :expr, :by "root", :at 1524070715457, :id "rJZ7BKlBnf" + :data { + "T" {:type :leaf, :by "root", :at 1524070716715, :text "[]", :id "r1eXHKxS2z"} + "j" { + :type :expr, :by "root", :at 1524070717257, :id "HkMHSYxB2G" + :data { + "T" {:type :leaf, :by "root", :at 1524070720176, :text ":user-id", :id "SkbrHKeBhM"} + "j" {:type :leaf, :by "root", :at 1524070722292, :text "session", :id "rJMOBteH3f"} + } + } + "r" {:type :leaf, :by "root", :at 1524070725752, :text ":name", :id "r1ZiBKeB3G"} + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1524070729744, :id "r1eM8YlS2M" + :data { + "T" {:type :leaf, :by "root", :at 1524070730314, :text "into", :id "r1eM8YlS2Mleaf"} + "j" { + :type :expr, :by "root", :at 1524070730745, :id "rklQUKeH2z" + :data { + "T" {:type :leaf, :by "root", :at 1524070731125, :text "{}", :id "rkmIKeH3G"} + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "H1ubxLZx0SZ", :by nil, :at 1500541255553 + :data {} + } + } + "app.twig.user" { + :ns { + :type :expr, :id "rJ7t7eU-lRrZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkVF7xUWgASZ", :text "ns", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rkrFQxUZxRBb", :text "app.twig.user", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "By8K7xL-eArW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HyvKQx8WlRHW", :text ":require", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rJdKQgIbxCSW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkKF7eLWgCHb", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BJcKXg8WgRH-", :text "recollect.macros", :by "root", :at 1511004268753} + "r" {:type :leaf, :id "H1iKQx8WeASZ", :text ":refer", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "S1nYXeLbxRHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Sk6Kmx8blRHW", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJCKmgIZg0BW", :text "deftwig", :by "root", :at 1511004273474} + } + } + } + } + } + } + } + } + :defs { + "twig-user" { + :type :expr, :id "SJxcQeIWxASZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1ZqXeIblCH-", :text "deftwig", :by "root", :at 1511004265893} + "j" {:type :leaf, :id "ByzcXgUblRBW", :text "twig-user", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "ByuqXg8ZxArZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJY57eLWxAH-", :text "user", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "Hk99QgIbxAHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Bkjc7xUZlCSW", :text "dissoc", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJ3qXeIbxRHW", :text "user", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "rk6cXgLZx0HZ", :text ":password", :by "root", :at 1500541255553} + } + } + } + } + } + :proc { + :type :expr, :id "H1JqQxLblABb", :by nil, :at 1500541255553 + :data {} + } + } + "app.updater" { + :ns { + :type :expr, :id "BJR97lLZlRSZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ry1omxI-g0r-", :text "ns", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ryxjmgIZgArZ", :text "app.updater", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "SJ-o7eUZlRBZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkGj7eUZgCrZ", :text ":require", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "S1momeUWgRHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkEsmx8Wg0rZ", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BySiQgUZxCS-", :text "app.updater.session", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "S1Ismg8blABW", :text ":as", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "BkDsme8-l0H-", :text "session", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "S1uoQlLWe0HW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1FoXeI-e0BZ", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "H19oXxI-xAH-", :text "app.updater.user", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "HyojQg8WeCH-", :text ":as", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "SJ2o7eIWeAHb", :text "user", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "BkTsXxUbg0S-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Sy0sXlLbxRBb", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "B1J3XgIZe0SZ", :text "app.updater.router", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "rkgnmg8-x0BZ", :text ":as", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "HkZ3XxLZlCSW", :text "router", :by "root", :at 1500541255553} + } + } + "y" { + :type :expr, :by "root", :at 1529231005993, :id "Ske8iUnXWm" + :data { + "T" {:type :leaf, :by "root", :at 1529231006285, :text "[]", :id "Ske8iUnXWmleaf"} + "j" {:type :leaf, :by "root", :at 1529231007723, :text "app.schema", :id "BJXLiI2Qb7"} + "r" {:type :leaf, :by "root", :at 1529231008972, :text ":as", :id "SyGuiI3QWX"} + "v" {:type :leaf, :by "root", :at 1529231009860, :text "schema", :id "HkZtj8hXZQ"} + } + } + "yT" { + :type :expr, :by "root", :at 1529231108810, :id "rkpWDhQW7" + :data { + "T" {:type :leaf, :by "root", :at 1529231110305, :text "[]", :id "rkpWDhQW7leaf"} + "j" {:type :leaf, :by "root", :at 1529231113905, :text "respo-message.updater", :id "HyE0bP3mWQ"} + "r" {:type :leaf, :by "root", :at 1529231114617, :text ":refer", :id "SJ7GMD27bX"} + "v" { + :type :expr, :by "root", :at 1529231114849, :id "rJG7Mvn7Z7" + :data { + "T" {:type :leaf, :by "root", :at 1529231116379, :text "[]", :id "B1-XMPnX-7"} + "j" {:type :leaf, :by "root", :at 1529231118760, :text "update-messages", :id "SyWVGD2XZQ"} + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1539099787001, :id "R8iB2DVKBqg" + :data { + "T" {:type :leaf, :by "root", :at 1539099787001, :text "[]", :id "iYNsnpVLk8j"} + "j" {:type :leaf, :by "root", :at 1539099795078, :text "app.updater.process", :id "AxlYJHORTif"} + "r" {:type :leaf, :by "root", :at 1539099787001, :text ":as", :id "EDYhsyGOZQI"} + "v" {:type :leaf, :by "root", :at 1539099787001, :text "process", :id "k4JYYx3P8OX"} + } + } + "yr" { + :type :expr, :by "root", :at 1539099787001, :id "2hFpLvPwf7h" + :data { + "T" {:type :leaf, :by "root", :at 1539099787001, :text "[]", :id "8iHoyGeKreJ"} + "j" {:type :leaf, :by "root", :at 1539099796543, :text "app.updater.workflow", :id "5tqG-i978xN"} + "r" {:type :leaf, :by "root", :at 1539099787001, :text ":as", :id "WV81AKxW0s0"} + "v" {:type :leaf, :by "root", :at 1539099787001, :text "workflow", :id "aCF2OGW9tM1"} + } + } + } + } + } + } + :defs { + "updater" { + :type :expr, :id "Hk7nmeIbx0SZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkV3Qe8WlRHb", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Hkrn7xI-gASZ", :text "updater", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "rk82mlUZxRB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Byw3XlIZg0B-", :text "db", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "H1_hme8WxAr-", :text "op", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "ByY2QgLbxArZ", :text "op-data", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "H1537x8-gABW", :text "sid", :by "root", :at 1517930722619} + "x" {:type :leaf, :id "Hksn7xL-gASW", :text "op-id", :by "root", :at 1500541255553} + "y" {:type :leaf, :id "SJ22mx8ZeRBb", :text "op-time", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :by "root", :at 1517930695338, :id "rykROrP8f" + :data { + "D" {:type :leaf, :by "root", :at 1517930698044, :text "let", :id "rklROHw8z"} + "T" { + :type :expr, :by "root", :at 1517930701054, :id "SJlBRdSPUz" + :data { + "T" { + :type :expr, :by "root", :at 1517930698683, :id "H1X0OSD8f" + :data { + "D" {:type :leaf, :by "root", :at 1517930699996, :text "f", :id "r14RdHv8M"} + "T" { + :type :expr, :id "BJ6hmlU-lASb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJ0h7eUbg0rb", :text "case", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJyaXeU-gRBZ", :text "op", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "HygpXe8Ze0Sb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJZ6XxLWe0HW", :text ":session/connect", :by "root", :at 1500541255553} + "j" {:type :leaf, :by "root", :at 1517930788022, :text "session/connect", :id "SksmtSP8z"} + } + } + "v" { + :type :expr, :id "r1KaQgU-xRrW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B1cTQlUWlASW", :text ":session/disconnect", :by "root", :at 1500541255553} + "j" {:type :leaf, :by "root", :at 1517930783929, :text "session/disconnect", :id "r1_7FBPIM"} + } + } + "w" { + :type :expr, :by "root", :at 1529231445104, :id "Bkx1qO2QZm" + :data { + "T" {:type :leaf, :by "root", :at 1529231483623, :text ":session/remove-message", :id "rJ-aIO2Q-Qleaf"} + "j" {:type :leaf, :by "root", :at 1529231491015, :text "session/remove-message", :id "BkrY_h7ZQ"} + } + } + "x" { + :type :expr, :id "r1fCQxUWe0rb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Bkm0mgLZx0S-", :text ":user/log-in", :by "root", :at 1500541255553} + "j" {:type :leaf, :by "root", :at 1517930780888, :text "user/log-in", :id "BkBmtrD8M"} + } + } + "y" { + :type :expr, :id "rksRmlIZlCSW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ry3Cmx8blABb", :text ":user/sign-up", :by "root", :at 1500541255553} + "j" {:type :leaf, :by "root", :at 1517930777757, :text "user/sign-up", :id "Bke-QtSDUM"} + } + } + "yT" { + :type :expr, :id "B1V1Nl8Zx0BZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1rJ4eIblRr-", :text ":user/log-out", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ryvkVgIbg0rW", :text "user/log-out", :by "root", :at 1500541255553} + } + } + "yr" { + :type :expr, :id "HyUe4gLbxCr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJDxEeLWgASb", :text ":router/change", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1tl4lIZx0SW", :text "router/change", :by "root", :at 1500541255553} + } + } + "yuj" { + :type :expr, :by "root", :at 1539099704460, :id "UAnPy0R4s3I" + :data { + "T" {:type :leaf, :by "root", :at 1539099704460, :text ":process/create", :id "EHVM6KXvAG0"} + "b" {:type :leaf, :by "root", :at 1539099731759, :text "process/create", :id "XvG7yukcL2"} + } + } + "yur" { + :type :expr, :by "root", :at 1539099704460, :id "Om37fuG8x94" + :data { + "T" {:type :leaf, :by "root", :at 1539099704460, :text ":process/kill", :id "WVtdRoe69Hf"} + "b" {:type :leaf, :by "root", :at 1539099736467, :text "process/kill", :id "QI2AlUJLn5"} + } + } + "yuv" { + :type :expr, :by "root", :at 1539099704460, :id "5xCEdtS4PQH" + :data { + "T" {:type :leaf, :by "root", :at 1539099704460, :text ":process/stdout", :id "URMJrRT7g7S"} + "b" {:type :leaf, :by "root", :at 1539099740108, :text "process/stdout", :id "p04VxRqFAv"} + } + } + "yux" { + :type :expr, :by "root", :at 1539099704460, :id "Fuv2pumZUlI" + :data { + "T" {:type :leaf, :by "root", :at 1539099704460, :text ":process/stderr", :id "zyC3_MTLizH"} + "b" {:type :leaf, :by "root", :at 1539099746383, :text "process/stderr", :id "eBmF_ycJkh"} + } + } + "yuy" { + :type :expr, :by "root", :at 1539099704460, :id "8EvkYrqg9vT" + :data { + "T" {:type :leaf, :by "root", :at 1539099704460, :text ":process/clear", :id "uwcQl2zKu2Z"} + "b" {:type :leaf, :by "root", :at 1539099750827, :text "process/clear", :id "TBZSC_3T3f"} + } + } + "yuyT" { + :type :expr, :by "root", :at 1539099704460, :id "akBrTToPksS" + :data { + "T" {:type :leaf, :by "root", :at 1539099704460, :text ":process/finish", :id "mqYUr4S7enx"} + "j" {:type :leaf, :by "root", :at 1539099754644, :text "process/finish", :id "g-ANt_qpj_"} + } + } + "yuyj" { + :type :expr, :by "root", :at 1539099704460, :id "9BDmjaCcOKv" + :data { + "T" {:type :leaf, :by "root", :at 1539099757977, :text ":process/shorten-content", :id "c2KzYu4cjZV"} + "j" {:type :leaf, :by "root", :at 1539099758598, :text "process/shorten-content", :id "x2-_FCBev1"} + } + } + "yuyr" { + :type :expr, :by "root", :at 1539099704460, :id "rsdccbFAKJX" + :data { + "T" {:type :leaf, :by "root", :at 1539099704460, :text ":workflow/create", :id "gKE2SfxVDk7"} + "j" {:type :leaf, :by "root", :at 1539099761718, :text "workflow/create-workflow", :id "VbZXBeK4Qb"} + } + } + "yuyv" { + :type :expr, :by "root", :at 1539099704460, :id "xE2hoalpbys" + :data { + "T" {:type :leaf, :by "root", :at 1539099764839, :text ":workflow/remove", :id "-lBIyVWzZjf"} + "j" {:type :leaf, :by "root", :at 1539099765409, :text "workflow/remove-workflow", :id "YHrpO7ODPe"} + } + } + "yuyx" { + :type :expr, :by "root", :at 1539099704460, :id "ZpMBOz_h2ql" + :data { + "T" {:type :leaf, :by "root", :at 1539099704460, :text ":workflow/add-command", :id "_fDM0ZwvkuD"} + "j" {:type :leaf, :by "root", :at 1539099768347, :text "workflow/add-command", :id "FqGcOkwhqN"} + } + } + "yuyy" { + :type :expr, :by "root", :at 1539099704460, :id "xSHOaYe4vjQ" + :data { + "T" {:type :leaf, :by "root", :at 1539099704460, :text ":workflow/remove-command", :id "HoG7PzAZjY5"} + "j" {:type :leaf, :by "root", :at 1539099771109, :text "workflow/remove-command", :id "svgcl-iBp"} + } + } + "yuyyT" { + :type :expr, :by "root", :at 1539099704460, :id "zJ2HINRt4th" + :data { + "T" {:type :leaf, :by "root", :at 1539099704460, :text ":workflow/edit-command", :id "qJ1_HfapSnY"} + "j" {:type :leaf, :by "root", :at 1539099774646, :text "workflow/edit-command", :id "WSVMi22Bp5"} + } + } + "yuyyj" { + :type :expr, :by "root", :at 1539099704460, :id "Ue-vIA9amLn" + :data { + "T" {:type :leaf, :by "root", :at 1539099704460, :text ":workflow/edit", :id "qegalaxYExu"} + "j" {:type :leaf, :by "root", :at 1539099778200, :text "workflow/edit-workflow", :id "aXUvrxKhO"} + } + } + "yv" { + :type :expr, :by "root", :at 1529230952815, :id "SyGc_nmZX" + :data { + "T" {:type :leaf, :by "root", :at 1517930806310, :text "do", :id "HJRVtHw8f"} + "j" { + :type :expr, :by "root", :at 1517930806775, :id "HklyBKBPLf" + :data { + "T" {:type :leaf, :by "root", :at 1517930808254, :text "println", :id "Hk1SYSP8f"} + "j" {:type :leaf, :by "root", :at 1517930819804, :text "|Unknown op:", :id "S1LxSYrvLM"} + "r" {:type :leaf, :by "root", :at 1517930818446, :text "op", :id "Sye5StrPIf"} + } + } + "r" {:type :leaf, :id "BykZNlLbxRSW", :text "identity", :by "root", :at 1517930805185} + } + } + } + } + } + } + } + } + "j" { + :type :expr, :by "root", :at 1517930704255, :id "HyxOAOHDUM" + :data { + "T" {:type :leaf, :by "root", :at 1517930704937, :text "f", :id "HyxOAOHDUMleaf"} + "j" {:type :leaf, :by "root", :at 1517930706635, :text "db", :id "SkcC_SvLM"} + "r" {:type :leaf, :by "root", :at 1517930709018, :text "op-data", :id "HJ2RdSPUf"} + "v" {:type :leaf, :by "root", :at 1517930725426, :text "sid", :id "r1JytHD8G"} + "x" {:type :leaf, :by "root", :at 1517930717948, :text "op-id", :id "S1z4JKSDLG"} + "y" {:type :leaf, :by "root", :at 1517930719120, :text "op-time", :id "BkGLkYrDUz"} + } + } + } + } + } + } + } + :proc { + :type :expr, :id "SkfhmgLbxRHb", :by nil, :at 1500541255553 + :data {} + } + } + "app.updater.process" { + :ns { + :type :expr, :by "root", :at 1539099848491, :id "t8kg2XbLu9" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "ns", :id "FgAj92lc6j"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "app.updater.process", :id "OcKwJ3VCj-"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "J-gHNI5SKe" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":require", :id "h3sG5DmOnj"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "eXP1ZzTDPU" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "rIV-m2BuTM"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "app.schema", :id "KZaKWo5pR_"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text ":as", :id "bKqcAS7-PA"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text "schema", :id "iRTH343V-I"} + } + } + } + } + } + } + :defs { + "clear" { + :type :expr, :by "root", :at 1539099848491, :id "r9LM0NnJJh" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "defn", :id "OJb0JYGaem"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "clear", :id "LiTOvmzA8K"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "uBIkvjdhNE" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "xEbCMTU30P2"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "uqdB4UJSk9b"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "sid", :id "_BgO9TGdC93"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text "op-id", :id "-e9K1hSyyhj"} + "x" {:type :leaf, :by "root", :at 1539099848491, :text "op-time", :id "49ImwqRa0Sj"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "EMRGFce9Fme" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "update", :id "3wDRzPq1ybd"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "foFiJXy4vWj"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text ":processes", :id "bjjr1sY3hWA"} + "v" { + :type :expr, :by "root", :at 1539099848491, :id "d8w2LcfxzUS" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "fn", :id "9TbtaU_uloP"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "Lg1JSBEY-SM" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "processes", :id "NiHJ-pamNF6"} + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "agk-lAseNwD" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "->>", :id "XB05i0z9Cp2"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "processes", :id "xSNp4q03Dy-"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "mfMuq0hIEVz" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "filter", :id "_wqmXMiLvi7"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "A4YjMgSZvgj" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "fn", :id "kK1LPkhNYHO"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "9d_H9YLJ31a" + :data { + "T" { + :type :expr, :by "root", :at 1539099848491, :id "o-3CFTvRIS3" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "S4xLH_yTTAD"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "pid", :id "I2tAJBX-C_d"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "process", :id "8Nw4VaUVwxM"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "jmNhz0fsDZt" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":alive?", :id "iGvswfQkAaw"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "process", :id "m6X0l1SNGlM"} + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "4TTIZSiIQMK" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "into", :id "gly6dJwIWnM"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "Uut-mKp8eu-" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "{}", :id "UcxAFdBKhJW"} + } + } + } + } + } + } + } + } + } + } + } + } + "create" { + :type :expr, :by "root", :at 1539099848491, :id "aFz-atBM62W" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "defn", :id "0Tzh4IIoGOO"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "create", :id "HtKhIqlnmqq"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "PBpaP1RW-Q2" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "OkmoE9yKCyH"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "9NX3S3wnU07"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "sid", :id "JYiGWJAOYAT"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text "op-id", :id "HskXKEJVisC"} + "x" {:type :leaf, :by "root", :at 1539099848491, :text "op-time", :id "0Ch-G1MiuNT"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "iu8cnXmDA4x" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "->", :id "Y1joRh_n_6W"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "IOQyelMwdKD"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "0d8WdH93uBi" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "assoc-in", :id "KMV4CryD4OM"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "Kv_fjBEUmwC" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "XAKTBsA2Rex"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text ":processes", :id "E1OvDcjB72W"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "abooMpMwhiC" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":pid", :id "_eWTuBOAnds"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "x4up3m8e3J7"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "E1wjlHRE8WF" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "merge", :id "gU8OA1l7kPf"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "schema/process", :id "vRWr_oFv5xM"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "IZIe3yy1AvD"} + "v" { + :type :expr, :by "root", :at 1539099848491, :id "BvhTOmL1lbd" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "{}", :id "1xSkJLZxlx0"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "6kHhpsNnVBy" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":started-at", :id "jcWzJ04yoh0"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-time", :id "-EYxUDFipzR"} + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "jUb9-hqPd-B" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":alive?", :id "IJ_DD8Kpaqx"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "true", :id "9ZOechLRBSA"} + } + } + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "V33U6oOBNeF" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "update", :id "zt8_WZFZgpX"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text ":histories", :id "DQN7rp6S0jy"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "SQUQOZhXpEr" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "fn", :id "8XfqbnmwJF1"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "kIWvsGbbwgx" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "histories", :id "sXs3nCl9-e4"} + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "wLJWdMHfC7c" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "conj", :id "VL1CTzESQiH"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "histories", :id "H7u-Ef5xtCB"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "t5EonxkiHOA" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "merge", :id "WMOZt_sMttY"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "schema/history", :id "Rm4Kiwx9YKa"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "MDwVNRqF6U8" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "{}", :id "lcswsBGHUbr"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "dNhgyuYzeeb" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":command", :id "fxG16zCzGH6"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "l84GsYkFU1D" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":command", :id "HXmc5CPngoh"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "Zt2KcSNB6Nm"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "pJHTEJFhETp" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":cwd", :id "cvr9tNNCNwB"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "_60ni74BZg5" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":cwd", :id "eRqLkUfsR3Q"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "92G82ShfTUK"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "Jb3w0OfHUyT" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":started-at", :id "rU_b4DDEVaZ"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-time", :id "Ny-DOJUNtMl"} + } + } + "x" { + :type :expr, :by "root", :at 1539099848491, :id "WLFaLo3rFdl" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":id", :id "BS8CZVksjtI"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-id", :id "Mp3KzQ54-3n"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "error" { + :type :expr, :by "root", :at 1539099848491, :id "CelRMhhLSfV" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "defn", :id "au2WywFjaTp"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "error", :id "RRTPZxY0Etn"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "Zh9jPT7jU0v" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "RvUwCGfR9Sg"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "uAKJ2p9sjlI"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "sid", :id "JYQwynRlbKr"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text "op-id", :id "H4YdmbP8S2t"} + "x" {:type :leaf, :by "root", :at 1539099848491, :text "op-time", :id "Ic3593ewznr"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "sDVHEdTHQB7" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "let", :id "QQ4iDufhfr-"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "eCy0NshIGPo" + :data { + "T" { + :type :expr, :by "root", :at 1539099848491, :id "F8WfVzFvZPL" + :data { + "T" { + :type :expr, :by "root", :at 1539099848491, :id "hvcKrtKE4kO" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "UIfbaq0bNPe"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "pid", :id "YMiM3EOwWuB"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "data", :id "fJuINUJ5fIW"} + } + } + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "_hCGUcciMCw"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "mWBSll6bDOY" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "update-in", :id "9o_vM0btLha"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "ot3nMITgPSB"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "A6OuANUDz4U" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "Cgt2TKUawwd"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text ":processes", :id "SjT-sffeG8l"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "pid", :id "Jlqb9KDXSuh"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text ":content", :id "IJZMYLvLqoc"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "KB4dZnZDTRi" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "fn", :id "NIsCB0plMWG"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "G4jnnYJlLn4" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "content", :id "aVr3zGrN8uO"} + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "P6oCbQLyx20" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "conj", :id "HjO_7sou8jr"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "content", :id "A0X6m8Qzbwk"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "9lbdFpWSxpx" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "{}", :id "qjBldbLO3dj"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "Asp4_bPeD0s" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":type", :id "HPatv2OlMV1"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text ":error", :id "PidBuy0fFBz"} + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "ZaWXnrwXBUa" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":data", :id "ed121YIjDvM"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "data", :id "AHOC9Grzy8i"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "finish" { + :type :expr, :by "root", :at 1539099848491, :id "e3cfisbRF0t" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "defn", :id "Ci_L4H2-UE0"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "finish", :id "vWs9kifwtYE"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "TLG9Y_65FsK" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "0j1JUtENuzB"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "UoJdcyfw9Im"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "sid", :id "gMOEsoKT8zM"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text "op-id", :id "CLHuOUG7NuJ"} + "x" {:type :leaf, :by "root", :at 1539099848491, :text "op-time", :id "L5grEDocdNV"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "TJwIg_sFKGr" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "assoc-in", :id "8WPXPJGe1Xo"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "1SQJNNVVX40"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "enzCQhpsOTA" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "4cfx2K1e7wy"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text ":processes", :id "hvzz9Bz3b_U"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "w6D26FkCfpm"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text ":alive?", :id "OOcKr57JBVB"} + } + } + "v" {:type :leaf, :by "root", :at 1539099848491, :text "false", :id "X8jg6ZrKwuH"} + } + } + } + } + "kill" { + :type :expr, :by "root", :at 1539099848491, :id "DCVrrgBPqmG" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "defn", :id "_Mc_DQNf1qC"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "kill", :id "iF54Bsc517Z"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "b2onuvsq7" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "866o5CwfX8"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "FJaCqxuXxg"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "sid", :id "MAZ6DdeUZX"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text "op-id", :id "PNz1l9gr8K"} + "x" {:type :leaf, :by "root", :at 1539099848491, :text "op-time", :id "K37mXB6_rW"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "hKxteR5zG7" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "assoc-in", :id "mNF-S3lfoI"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "bu1DhJjur_"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "Uy_ZH3ztGW" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "HYKHbnjXMV"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text ":processes", :id "pnOu7oAMmc"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "QnFNcpe0BO"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text ":alive?", :id "M_3fM2bNiG"} + } + } + "v" {:type :leaf, :by "root", :at 1539099848491, :text "false", :id "MWt3hBQFlh"} + } + } + } + } + "shorten-content" { + :type :expr, :by "root", :at 1539099848491, :id "DW9areroDx" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "defn", :id "L8WhbsxVF3j"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "shorten-content", :id "YEr6cTea9KZ"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "OgInp95_WNj" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "-bgO68PM5B3"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "ZuY4gGXlpy3"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "sid", :id "9DFvzEXfJ3w"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text "op-id", :id "AtWZkOe7vfT"} + "x" {:type :leaf, :by "root", :at 1539099848491, :text "op-time", :id "q4o_1jt32LU"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "fzBY3eRW6FP" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "update-in", :id "GQhBs7nVePT"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "jlIovJ9Tg3d"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "OvX8UkoP1cW" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "eMX1IMECBKn"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text ":processes", :id "UYcNpgwFQBo"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "2jolPFV1vvg"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "8UCaPpt9RIl" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "fn", :id "o-WjI9F0srH"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "KpGGpG-Zg9e" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "process", :id "w6CtRQ0_1ep"} + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "RhuuJz23UTd" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "assoc", :id "_9xp8UmHR5n"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "process", :id "Vz2TK3F6Vr7"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text ":content", :id "fkeWPfkaO3L"} + "v" { + :type :expr, :by "root", :at 1539099848491, :id "bRy2EGlczSA" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "GG-gG0AnxoZ"} + } + } + } + } + } + } + } + } + } + } + "stderr" { + :type :expr, :by "root", :at 1539099848491, :id "nqQRsfDUTBU" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "defn", :id "cORGllcLDcp"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "stderr", :id "1kcJfXRheZy"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "nx9sCtYxGut" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "AWgZTH_059s"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "8l_U8GEj2vE"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "sid", :id "eByF0WhBF7X"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text "op-id", :id "bh4LkXIMg92"} + "x" {:type :leaf, :by "root", :at 1539099848491, :text "op-time", :id "HSRAvnbWY8y"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "T5k8r35PRWU" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "let", :id "E59QNltXSqE"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "6Q-FohFg0gj" + :data { + "T" { + :type :expr, :by "root", :at 1539099848491, :id "dPa6gPUWmPl" + :data { + "T" { + :type :expr, :by "root", :at 1539099848491, :id "nEceH5VQchJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "Hro8OEbzM7H"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "pid", :id "Hay9wnkdV-5"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "data", :id "qUKcGBmtvsb"} + } + } + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "QwvLodbkGyW"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "AE-YNqIaHB6" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "update-in", :id "49xeGTWycv3"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "LuxqeCY3n2H"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "XdX8ZekXpJz" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "H5V-TmsnJJj"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text ":processes", :id "fCq6cFwhZSf"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "pid", :id "-PfZd73WAOw"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text ":content", :id "lVTBaHWu6y_"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "xQoGD8nCRoi" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "fn", :id "1hF0icWo0wb"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "vEYmkUQ2nKT" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "content", :id "kp9mnC6OxcR"} + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "TRWotKcNtqK" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "conj", :id "mwdXiUSXZB7"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "content", :id "HAs9VcFlcYA"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "y9Fo-9f8e1P" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "{}", :id "LJd2jlcM3cq"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "ilMUlSsw91w" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":type", :id "-k8rKpxDZ2r"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text ":stderr", :id "DCxGPD4PHvt"} + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "3c3j8L_ePrK" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":data", :id "_8YncW7zaMc"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "data", :id "2LDDmQl1OJW"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "stdout" { + :type :expr, :by "root", :at 1539099848491, :id "K4t6Sr56F0y" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "defn", :id "Dqk3MTM2YX6"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "stdout", :id "t3s3i01jXy0"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "7DazZM9ACnz" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "eUm3cNNBJf4"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "9QzUMAXFXMw"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "sid", :id "PRQugxyG0be"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text "op-id", :id "590RWaaBH9t"} + "x" {:type :leaf, :by "root", :at 1539099848491, :text "op-time", :id "ChjFeFUY_Sm"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "5VhKdvqROor" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "let", :id "_QS6PM6yEa3"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "rOgmkJDKZnU" + :data { + "T" { + :type :expr, :by "root", :at 1539099848491, :id "cNlTRlicHWy" + :data { + "T" { + :type :expr, :by "root", :at 1539099848491, :id "xCrkYH7cUB-" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "wCtgL-VXjaX"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "pid", :id "3dbv8k09zvN"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "data", :id "i6hniiaf1Ou"} + } + } + "j" {:type :leaf, :by "root", :at 1539099848491, :text "op-data", :id "Zgb51YukNgT"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "dj4CV0c8NCr" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "update-in", :id "qb9Eijzp4xF"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "db", :id "sGDwNtZvucN"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "FFbeCIgJi2Q" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "[]", :id "ZXroE_iDrMz"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text ":processes", :id "WofPoRLxDYY"} + "r" {:type :leaf, :by "root", :at 1539099848491, :text "pid", :id "exNbTALQUeD"} + "v" {:type :leaf, :by "root", :at 1539099848491, :text ":content", :id "iVUUdH6nvdw"} + } + } + "v" { + :type :expr, :by "root", :at 1539099848491, :id "aDOdHG3Xs-J" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "fn", :id "7hCQ1p_hcxE"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "p0jRaa5Q-Eo" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "content", :id "UXHvu1Zkzz-"} + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "7khPy2LzV76" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "conj", :id "sbeWBkRVFAv"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "content", :id "ZFsLzJWMBxm"} + "r" { + :type :expr, :by "root", :at 1539099848491, :id "FWZeK1rkYll" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text "{}", :id "Tb0RS8EHIDa"} + "j" { + :type :expr, :by "root", :at 1539099848491, :id "J36nEqzCaeF" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":type", :id "QE4mrUxvpgG"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text ":stdout", :id "HpSiB_t2Q5n"} + } + } + "r" { + :type :expr, :by "root", :at 1539099848491, :id "eBNJ_uxzoIw" + :data { + "T" {:type :leaf, :by "root", :at 1539099848491, :text ":data", :id "KHzdU4_1O-6"} + "j" {:type :leaf, :by "root", :at 1539099848491, :text "data", :id "PemJwvuQa4A"} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539099848491, :id "nnuyL9uhRz" + :data {} + } + } + "app.updater.router" { + :ns { + :type :expr, :id "S1eLbxASW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1eeUbeCrZ", :text "ns", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1-l8We0BW", :text "app.updater.router", :by "root", :at 1500541255553} + } + } + :defs { + "change" { + :type :expr, :id "ryQxUbg0B-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Hy4gLZgABZ", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ByBlIWg0S-", :text "change", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "SkIxIWgAHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJvx8bxCBZ", :text "db", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HkdeLWxRBZ", :text "op-data", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "BkYlL-xCSZ", :text "sid", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "HJ9eLWxRSW", :text "op-id", :by "root", :at 1500541255553} + "x" {:type :leaf, :id "Hkog8blRSW", :text "op-time", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "BkhgI-xCrb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B1al8ZxAB-", :text "assoc-in", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "H1ClU-xRB-", :text "db", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "Hk1geLWx0H-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HklggLbxRB-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Hk-xxUbeRSZ", :text ":sessions", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "HyzlgIZgCSb", :text "sid", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "rkQgxU-l0Bb", :text ":router", :by "root", :at 1500541255553} + } + } + "v" {:type :leaf, :id "B14gg8WxCrb", :text "op-data", :by "root", :at 1500541255553} + } + } + } + } + } + :proc { + :type :expr, :id "HJzeUWeAr-", :by nil, :at 1500541255553 + :data {} + } + } + "app.updater.session" { + :ns { + :type :expr, :id "Sy_0leLZgCrW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1t0llUZg0r-", :text "ns", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ryq0ee8Wl0BZ", :text "app.updater.session", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "rJs0xxI-g0rZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B12AggIZl0rW", :text ":require", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "SyaAlgIZeCSW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJ00glL-xAr-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BkyJbxUWxCH-", :text "app.schema", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "S1xyWgUWlRHb", :text ":as", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "By-J-xU-gABb", :text "schema", :by "root", :at 1500541255553} + } + } + } + } + } + } + :defs { + "connect" { + :type :expr, :id "HyQ1WeI-xABW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJ4ybe8-g0Sb", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "B1SyWx8bxABW", :text "connect", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "ry8k-eUbgCr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJv1Wl8WgRBZ", :text "db", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Hk_JWeLZg0Hb", :text "op-data", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "ryYkWl8Wx0SZ", :text "sid", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "HyqJ-l8-lCBZ", :text "op-id", :by "root", :at 1500541255553} + "x" {:type :leaf, :id "r1jk-lIWlASb", :text "op-time", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "rJhyZe8blCHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rka1blIZeRrW", :text "assoc-in", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "B1Ry-lIZgRrZ", :text "db", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "r1klbeIWeRSZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJgeZeLbe0HZ", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HkWeWlLbl0rb", :text ":sessions", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "SyfgWx8WeAHW", :text "sid", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "rJ7xbgI-eAHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkNeWeUWx0HW", :text "merge", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BkBxWxIZxArW", :text "schema/session", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "HkUxZeLZxRrb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Skwebg8-gArb", :text "{}", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "BkdxZxL-l0S-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ryKxZl8-x0SZ", :text ":id", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r19ebe8WeArW", :text "sid", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + } + } + "disconnect" { + :type :expr, :id "HJsgZx8-lCr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Bknx-g8-gASW", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ByalZeUblRB-", :text "disconnect", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "rkCxZl8WxCH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1yWZxIbxRSW", :text "db", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1g--l8WeCHZ", :text "op-data", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "HkWbWe8WeCSW", :text "sid", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "B1G--lIWg0Sb", :text "op-id", :by "root", :at 1500541255553} + "x" {:type :leaf, :id "HkQ-bxLZx0BZ", :text "op-time", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "rJ4ZWeUWeArb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkrbZe8blCrZ", :text "update", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HyL-Wx8WgABb", :text "db", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "H1v-Wx8ZlCBb", :text ":sessions", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "rJ_-ZgUbx0H-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HyKZZxUbxRBb", :text "fn", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HyqWZlU-lCHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SyjWWlLWe0HW", :text "session", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "Syh-WgIZxCHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Bka-Zg8beAS-", :text "dissoc", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJAZZl8ZgABZ", :text "session", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "S1yMbeI-e0BW", :text "sid", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + "remove-message" { + :type :expr, :by "root", :at 1529231499908, :id "S1Z4cd3X-7" + :data { + "T" {:type :leaf, :by "root", :at 1529231499908, :text "defn", :id "rkMV9_nQZQ"} + "j" {:type :leaf, :by "root", :at 1529231499908, :text "remove-message", :id "HymV5_27ZX"} + "r" { + :type :expr, :id "rk5cu3XWm", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1yWZxIbxRSW", :text "db", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1g--l8WeCHZ", :text "op-data", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "HkWbWe8WeCSW", :text "sid", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "B1G--lIWg0Sb", :text "op-id", :by "root", :at 1500541255553} + "x" {:type :leaf, :id "HkQ-bxLZx0BZ", :text "op-time", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :by "root", :at 1529231506714, :id "H1icunXWQ" + :data { + "T" {:type :leaf, :by "root", :at 1529231507936, :text "update-in", :id "H1icunXWQleaf"} + "j" {:type :leaf, :by "root", :at 1529231509725, :text "db", :id "r1TcOh7Z7"} + "r" { + :type :expr, :by "root", :at 1529231509958, :id "H1QCcOnQ-X" + :data { + "T" {:type :leaf, :by "root", :at 1529231510376, :text "[]", :id "SyMC9_2XZQ"} + "j" {:type :leaf, :by "root", :at 1529231511756, :text ":sessions", :id "SkIRq_nmWm"} + "r" {:type :leaf, :by "root", :at 1529231512509, :text "sid", :id "HkGejd2QZX"} + "v" {:type :leaf, :by "root", :at 1529231515700, :text ":messages", :id "BJZj_hQ-m"} + } + } + "v" { + :type :expr, :by "root", :at 1529231534326, :id "H1bU2_hmZQ" + :data { + "D" {:type :leaf, :by "root", :at 1529231534991, :text "fn", :id "Syv3_27ZX"} + "L" { + :type :expr, :by "root", :at 1529231535248, :id "HJXvh_3XWX" + :data { + "T" {:type :leaf, :by "root", :at 1529231536189, :text "messages", :id "BkfPhun7bQ"} + } + } + "T" { + :type :expr, :by "root", :at 1529231516827, :id "r1Bi_2XZX" + :data { + "T" {:type :leaf, :by "root", :at 1529231517957, :text "dissoc", :id "r1Bi_2XZXleaf"} + "j" {:type :leaf, :by "root", :at 1529231519342, :text "messages", :id "S1m8sOh7ZQ"} + "r" { + :type :expr, :by "root", :at 1529231521395, :id "ryXYs_hXb7" + :data { + "T" {:type :leaf, :by "root", :at 1529231522521, :text ":id", :id "HyvvoO2QWQ"} + "j" {:type :leaf, :by "root", :at 1529231524125, :text "op-data", :id "rJxjjdnQZQ"} + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "rJGJZgL-x0rZ", :by nil, :at 1500541255553 + :data {} + } + } + "app.updater.user" { + :ns { + :type :expr, :id "SyuRgL-x0HZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1KCx8bgAH-", :text "ns", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Sk5AgLWlRrb", :text "app.updater.user", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "ryi0xL-lCH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r13AgIWlAS-", :text ":require", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "H16ClL-l0SZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B10Al8-eRS-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SJJ1eeLWxCH-", :text "app.util", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "SJgJegUbeCB-", :text ":refer", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "S1-yel8ZgAB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkfJxxU-eRr-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJQkxg8WgCH-", :text "find-first", :by "root", :at 1500541255553} + } + } + } + } + "r" { + :type :expr, :id "rkDjPKTbf", :by "root", :at 1513097118588 + :data { + "T" {:type :leaf, :text "[]", :id "rkDjPKTbfleaf", :by "root", :at 1513097119283} + "j" {:type :leaf, :text "|md5", :id "H1GPjPKpZf", :by "root", :at 1513097121683} + "r" {:type :leaf, :text ":as", :id "r1-ciPFpWG", :by "root", :at 1513097122864} + "v" {:type :leaf, :text "md5", :id "SkQojvtaWG", :by "root", :at 1513097123766} + } + } + } + } + } + } + :defs { + "log-in" { + :type :expr, :id "SJArel8-e0Sb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HykIxxLbxAB-", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SklIgeLWx0rZ", :text "log-in", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "Sk-UglUZgRHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1MUxxI-e0H-", :text "db", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BkXLxgIWeAH-", :text "op-data", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "H1NLxxIZxCSZ", :text "sid", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "BJSLeg8bxRrW", :text "op-id", :by "root", :at 1500541255553} + "x" {:type :leaf, :id "ryULlg8-xCB-", :text "op-time", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "r1DUeeI-g0BZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJuLleUZx0HZ", :text "let", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HyF8ge8WxArb", :by nil, :at 1500541255553 + :data { + "T" { + :type :expr, :id "H158llU-g0Hb", :by nil, :at 1500541255553 + :data { + "T" { + :type :expr, :id "HksLxxU-eRS-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ByhLglUbgCHZ", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJpLxlUZxRBW", :text "username", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "SyR8leIZx0H-", :text "password", :by "root", :at 1500541255553} + } + } + "j" {:type :leaf, :id "rJJDgxIWg0HZ", :text "op-data", :by "root", :at 1500541255553} + } + } + "j" { + :type :expr, :id "BklDegI-g0H-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJ-vgeUWxRBZ", :text "maybe-user", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "H1fwgeUWl0Sb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S17Dxl8Zg0SW", :text "find-first", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "S1EwlgLWgCHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SyrPelLWg0rW", :text "fn", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "r1Lwee8ZeRB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1wwxeUZxAr-", :text "user", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "r1_DxlI-gAS-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HkYPglIbeAHb", :text "and", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rycDxgIWxRBZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ryiPxeIbxCSW", :text "=", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Bk2DxlIZeAHb", :text "username", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "ByTPle8-xRSb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJ0DxlLWl0BZ", :text ":name", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Hy1uleUWl0BW", :text "user", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "SJlulx8beCBb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJWdlxIblRHW", :text "vals", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HJMugeUWlAr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1mOegUZgABb", :text ":users", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1Euex8beRH-", :text "db", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "ryBOgxUZlCB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B1IdxxIbgAHZ", :text "update-in", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJvuxl8WxRrW", :text "db", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "BJudgxL-l0rW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1Y_xlLWeCH-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Skcdee8blCBb", :text ":sessions", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "HJsdgeIWg0S-", :text "sid", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "Hk3_elLbxArb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJa_egLWlCSZ", :text "fn", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rJ0OglL-gRB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkJtglLbeRSZ", :text "session", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "rkxYleIZl0rW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJZKlxIZg0Bb", :text "if", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "B1fKge8be0SZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkQKeg8-l0rW", :text "some?", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HJEKglU-x0BW", :text "maybe-user", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "S1SYge8WeABW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BkIFegU-eRSZ", :text "if", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rJvKex8WgRB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BydYle8-xCB-", :text "=", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HJqpvtTWG", :by "root", :at 1513097153553 + :data { + "D" {:type :leaf, :text "md5", :id "HJgc6vt6bz", :by "root", :at 1513097155650} + "T" {:type :leaf, :id "S1FFglUWlRH-", :text "password", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "r15YxeLbeABb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1itgeLbxCHZ", :text ":password", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SkntxlUZg0SZ", :text "maybe-user", :by "root", :at 1500541255553} + } + } + } + } + "r" { + :type :expr, :id "HJ6Ylg8ZxCrZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJCYgg8WlArb", :text "assoc", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ryk5lgIWgASZ", :text "session", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "rkl9llIbgCSZ", :text ":user-id", :by "root", :at 1500541255553} + "v" { + :type :expr, :id "S1b5elUZgRSb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Syf5gxIWg0rZ", :text ":id", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SJX5eeUWxArb", :text "maybe-user", :by "root", :at 1500541255553} + } + } + } + } + "v" { + :type :expr, :id "HyE5ee8Wx0H-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkHcgxI-xRS-", :text "update", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ryUqex8ZlRr-", :text "session", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "BkwqxeIbe0SZ", :text ":messages", :by "root", :at 1529231216021} + "s" { + :type :expr, :by "root", :at 1529231333614, :id "BJAJu27b7" + :data { + "T" {:type :leaf, :by "root", :at 1529231334066, :text "fn", :id "Hklpydn7-m"} + "j" { + :type :expr, :by "root", :at 1529231334315, :id "HJXR1d2mZm" + :data { + "T" {:type :leaf, :by "root", :at 1529231335300, :text "messages", :id "SyMRkOhmZX"} + } + } + "r" { + :type :expr, :by "root", :at 1529231335850, :id "BJeexunXbQ" + :data { + "T" {:type :leaf, :by "root", :at 1529231336782, :text "assoc", :id "BJeexunXbQleaf"} + "j" {:type :leaf, :by "root", :at 1529231338079, :text "messages", :id "SyMbxunmWX"} + "r" {:type :leaf, :by "root", :at 1529231340776, :text "op-id", :id "ryBzlu27bQ"} + "v" { + :type :expr, :by "root", :at 1529231341042, :id "HyzSldhQZ7" + :data { + "T" {:type :leaf, :by "root", :at 1529231341388, :text "{}", :id "ByWBeuhQZ7"} + "j" { + :type :expr, :by "root", :at 1529231341639, :id "SJ8lOnmWm" + :data { + "T" {:type :leaf, :by "root", :at 1529231342464, :text ":id", :id "r1HBlu2Q-X"} + "j" {:type :leaf, :by "root", :at 1529231344051, :text "op-id", :id "HJvg_nQ-X"} + } + } + "r" { + :type :expr, :by "root", :at 1529231344564, :id "SyFxOnXbm" + :data { + "T" {:type :leaf, :by "root", :at 1529231345346, :text ":text", :id "SyFxOnXbmleaf"} + "j" { + :type :expr, :id "rkl3ld37bm", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJ5jxg8blArZ", :text "str", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Byisxx8ZeCBb", :text "|Wrong password for ", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "r12oge8-x0rW", :text "username", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :id "HJpselLbgRS-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1AoxlLZg0SZ", :text "update", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "ByJ3geUWxCHW", :text "session", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "SkxnlxLZgCSW", :text ":messages", :by "root", :at 1529231357178} + "t" { + :type :expr, :by "root", :at 1529231333614, :id "HkbDb_3m-m" + :data { + "T" {:type :leaf, :by "root", :at 1529231334066, :text "fn", :id "Hklpydn7-m"} + "j" { + :type :expr, :by "root", :at 1529231334315, :id "HJXR1d2mZm" + :data { + "T" {:type :leaf, :by "root", :at 1529231335300, :text "messages", :id "SyMRkOhmZX"} + } + } + "r" { + :type :expr, :by "root", :at 1529231335850, :id "BJeexunXbQ" + :data { + "T" {:type :leaf, :by "root", :at 1529231336782, :text "assoc", :id "BJeexunXbQleaf"} + "j" {:type :leaf, :by "root", :at 1529231338079, :text "messages", :id "SyMbxunmWX"} + "r" {:type :leaf, :by "root", :at 1529231340776, :text "op-id", :id "ryBzlu27bQ"} + "v" { + :type :expr, :by "root", :at 1529231341042, :id "HyzSldhQZ7" + :data { + "T" {:type :leaf, :by "root", :at 1529231341388, :text "{}", :id "ByWBeuhQZ7"} + "j" { + :type :expr, :by "root", :at 1529231341639, :id "SJ8lOnmWm" + :data { + "T" {:type :leaf, :by "root", :at 1529231342464, :text ":id", :id "r1HBlu2Q-X"} + "j" {:type :leaf, :by "root", :at 1529231344051, :text "op-id", :id "HJvg_nQ-X"} + } + } + "r" { + :type :expr, :by "root", :at 1529231344564, :id "SyFxOnXbm" + :data { + "T" {:type :leaf, :by "root", :at 1529231345346, :text ":text", :id "SyFxOnXbmleaf"} + "j" { + :type :expr, :id "BkgjZu3X-Q", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkmallLbeCBW", :text "str", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "r1EpxxUWlRrb", :text "|No user named: ", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "ryHpel8blArb", :text "username", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + "log-out" { + :type :expr, :id "Bk8TlgU-xAHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BJPaegIWgAHZ", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HkuTeeIbxAB-", :text "log-out", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "BkFael8ZgRrW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SJ9pxxIZeRHW", :text "db", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BkjpegUbxArZ", :text "op-data", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "Hk3peeU-e0BW", :text "sid", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "H16agxUbx0r-", :text "op-id", :by "root", :at 1500541255553} + "x" {:type :leaf, :id "HyRpllIblRSb", :text "op-time", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "rkyRlxUZxCSZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1gRge8WeCBb", :text "assoc-in", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "H1WAxxIWlAS-", :text "db", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "BkzRglUWgCHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HymReg8WgRBZ", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "H1V0ggLZgCB-", :text ":sessions", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "rJBRgeUbxCHZ", :text "sid", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "HJL0egLbe0H-", :text ":user-id", :by "root", :at 1500541255553} + } + } + "v" {:type :leaf, :id "HJvCgxLbeRB-", :text "nil", :by "root", :at 1500541255553} + } + } + } + } + "sign-up" { + :type :expr, :id "SkB1llUZeAH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1IyglL-lCHb", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SJvyxl8WxABZ", :text "sign-up", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "H1dJeeUZlCr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1KJex8ZlABb", :text "db", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Sk5JlxL-g0HZ", :text "op-data", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "SkokleUZeABW", :text "sid", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "r12yllU-xRBW", :text "op-id", :by "root", :at 1500541255553} + "x" {:type :leaf, :id "HkTJegI-eRS-", :text "op-time", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "Bk0Jxl8We0SZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Skklel8-eRH-", :text "let", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "SyleegL-gRHb", :by nil, :at 1500541255553 + :data { + "T" { + :type :expr, :id "H1Zggx8WxRBW", :by nil, :at 1500541255553 + :data { + "T" { + :type :expr, :id "BkMleeIbxAHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJmlxgU-gABW", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HkEllxU-lCSW", :text "username", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "ryBgxgU-gABb", :text "password", :by "root", :at 1500541255553} + } + } + "j" {:type :leaf, :id "HyIggxU-xAB-", :text "op-data", :by "root", :at 1500541255553} + } + } + "j" { + :type :expr, :id "H1PxllI-eCHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Bk_gxe8-lASW", :text "maybe-user", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rJKxxgI-lRSW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r19ellLblAHW", :text "find-first", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "Hkillg8ZgAHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "ryhxgg8ZgCrb", :text "fn", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "H1TxxeIZe0rZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkCegeIWlCHZ", :text "user", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "rkJbggLWx0rb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJeZxeIZl0HW", :text "=", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Byb-llIZl0B-", :text "username", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "BJGbeg8-xAHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJ7-xxU-lCrW", :text ":name", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SJE-xgLZx0rW", :text "user", :by "root", :at 1500541255553} + } + } + } + } + } + } + "r" { + :type :expr, :id "r1BbgxU-lASb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "BkU-gxIWlRB-", :text "vals", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HkDbxl8WlCBZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "By_Wxx8blAr-", :text ":users", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rkYWlg8-gCB-", :text "db", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :id "H1cble8beCHZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HyobggLbxAS-", :text "if", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HJh-lgLbxAH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJTWeg8-gAS-", :text "some?", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJ0WgeLWg0HW", :text "maybe-user", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "BykGxxUWeABW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1eMexLbxCB-", :text "update-in", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HkbGxxUZxRrW", :text "db", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "H1fMgx8-e0HW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJ7fllLWeRSb", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SyVGlgIZg0r-", :text ":sessions", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "SySGgg8bx0rZ", :text "sid", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "HyUGglIbeASZ", :text ":messages", :by "root", :at 1529231378943} + } + } + "t" { + :type :expr, :by "root", :at 1529231383180, :id "HkWymO2QW7" + :data { + "T" {:type :leaf, :by "root", :at 1529231383493, :text "fn", :id "Skly7_n7WX"} + "j" { + :type :expr, :by "root", :at 1529231383905, :id "SkleQ_nQZQ" + :data { + "T" {:type :leaf, :by "root", :at 1529231385117, :text "messages", :id "HkgmO3XWm"} + } + } + "r" { + :type :expr, :by "root", :at 1529231389500, :id "HJrQOhX-7" + :data { + "T" {:type :leaf, :by "root", :at 1529231390515, :text "assoc", :id "BkQXunXbm"} + "j" {:type :leaf, :by "root", :at 1529231392100, :text "messages", :id "ByD7O37bX"} + "r" {:type :leaf, :by "root", :at 1529231392968, :text "op-id", :id "S1HdmO2XbX"} + "v" { + :type :expr, :by "root", :at 1529231394297, :id "Syg9mu37WX" + :data { + "T" {:type :leaf, :by "root", :at 1529231394624, :text "{}", :id "S1q7O3QbQ"} + "j" { + :type :expr, :by "root", :at 1529231394805, :id "SJMj7_3QW7" + :data { + "T" {:type :leaf, :by "root", :at 1529231395240, :text ":id", :id "S1Zs7dnm-7"} + "j" {:type :leaf, :by "root", :at 1529231395978, :text "op-id", :id "rkUsXu3X-X"} + } + } + "r" { + :type :expr, :by "root", :at 1529231396572, :id "ByT7O37bm" + :data { + "T" {:type :leaf, :by "root", :at 1529231398772, :text ":text", :id "ByT7O37bmleaf"} + "j" { + :type :expr, :id "H174dhmZQ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SkFQgeUZe0rb", :text "str", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rkcXeeLWxAHb", :text "|Name is token: ", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "Byi7lx8blCH-", :text "username", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + } + } + } + } + "v" { + :type :expr, :id "rJ2melL-gABW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Sy6mllUWeArb", :text "->", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rk07lg8ZxCrb", :text "db", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "H1J4lgUWxArZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rJg4geIWxRrZ", :text "assoc-in", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "rkbEgeLZg0H-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1fExeUbeRr-", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "BymVlgLWl0SZ", :text ":sessions", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "HkNExgLbeRrZ", :text "sid", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "HkHEgeIbxASb", :text ":user-id", :by "root", :at 1500541255553} + } + } + "r" {:type :leaf, :id "HkLNxxI-gRBZ", :text "op-id", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "SyvVxg8-xAHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1dNlxLblAH-", :text "assoc-in", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "HyKVegIWeAHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HkcVegLbxRHb", :text "[]", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SksNle8-lCBZ", :text ":users", :by "root", :at 1500541255553} + "r" {:type :leaf, :id "B12VgeLWlAr-", :text "op-id", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "rkTExe8ZlCB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "S1RNlgIbxRS-", :text "{}", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "SyyBxgUblRrb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1gSgxUZxArb", :text ":id", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "B1bHllLZeASW", :text "op-id", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "SkGrxgL-xRBb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SyQHle8-e0r-", :text ":name", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "HyNSle8ZeABb", :text "username", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "BJSHlgLbl0HZ", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "B1IrlgUZe0HZ", :text ":nickname", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "SkDBxe8bxRSb", :text "username", :by "root", :at 1500541255553} + } + } + "x" { + :type :expr, :id "ryuSgxU-eCSb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "r1YSgxLZg0S-", :text ":password", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "S1lMhvKpZz", :by "root", :at 1513097129906 + :data { + "D" {:type :leaf, :text "md5", :id "SJZz2DK6WG", :by "root", :at 1513097131281} + "T" {:type :leaf, :id "rycSxlL-e0r-", :text "password", :by "root", :at 1500541255553} + } + } + } + } + "y" { + :type :expr, :id "B1iBgxIWlASW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "By2Sel8Zx0S-", :text ":avatar", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rkTSexUZlRrZ", :text "nil", :by "root", :at 1500541255553} + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "B141llLbeCBW", :by nil, :at 1500541255553 + :data {} + } + } + "app.updater.workflow" { + :ns { + :type :expr, :by "root", :at 1539099839573, :id "HZ3H1SPT8z" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "ns", :id "p2ZENLNLbH"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "app.updater.workflow", :id "NnBb0oPk2l"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "EZctkA482G" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text ":require", :id "iYlKpZRsh-"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "qXa8aF0y0p" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "[]", :id "uhjJy0JN8y"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "app.schema", :id "6C_t6vKNgX"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text ":as", :id "v9wYa0jbM8"} + "v" {:type :leaf, :by "root", :at 1539099839573, :text "schema", :id "vPALEG16xX"} + } + } + } + } + } + } + :defs { + "add-command" { + :type :expr, :by "root", :at 1539099839573, :id "wmFqGJYKUA" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "defn", :id "AJtpfS5ggg"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "add-command", :id "NiJuEupe2u"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "vKUgsphiGe" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "6GsSkrp7cSc"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "rw830Ro7w3z"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "sid", :id "MyXkprqTsYM"} + "v" {:type :leaf, :by "root", :at 1539099839573, :text "op-id", :id "wMJ9cs_60fi"} + "x" {:type :leaf, :by "root", :at 1539099839573, :text "op-time", :id "tzgkEXbQqrv"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "CsYF5tg9fNq" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "let", :id "lXRby6b4R0N"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "vOPk4xQc5Sc" + :data { + "T" { + :type :expr, :by "root", :at 1539099839573, :id "MJQ-iHaqmqG" + :data { + "T" { + :type :expr, :by "root", :at 1539099839573, :id "VdOqdiRFg7f" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "{}", :id "IIX3Ei7EWCk"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "ROk3BxqdM7s" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "workflow-id", :id "KMaNEvj-8wg"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text ":workflow-id", :id "SwFfNM3lWH3"} + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "OT8u6lrOYMi" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "code", :id "y-WQNC-fOe6"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text ":code", :id "xBgD16r2YYp"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "a2XZXrC3O6m" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "path", :id "Sp8goseWDak"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text ":path", :id "gNZLnd_9EOr"} + } + } + } + } + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "BGEFDeKJm_U"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "wivI5jMcI3M" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "assoc-in", :id "vQtrGphw1k8"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "mQwDJJTYgsd"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "NB5Ht24eCWG" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "[]", :id "aAWOOWgeYzP"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text ":workflows", :id "RWtKZyC4TPB"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "workflow-id", :id "_oWaewcyYew"} + "v" {:type :leaf, :by "root", :at 1539099839573, :text ":commands", :id "i4TbLMyC19d"} + "x" {:type :leaf, :by "root", :at 1539099839573, :text "op-id", :id "Uci18NHxLUB"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "CcooscKnpR3" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "{}", :id "BnrueQc8voc"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "m4z1Z-XSpQP" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text ":id", :id "X8Qr0-gpKp3"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-id", :id "8pRV1xgu4eY"} + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "EAUFr3qXkMF" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text ":code", :id "kL6LpOMiNQa"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "code", :id "pdsoQM-ltA8"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "69U1wuNrRvX" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text ":path", :id "-LlWNGhg2Ab"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "path", :id "cQq-ezf0ZiV"} + } + } + } + } + } + } + } + } + } + } + "create-workflow" { + :type :expr, :by "root", :at 1539099839573, :id "FY23uMAKOkD" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "defn", :id "xn7ujHzMc99"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "create-workflow", :id "YwAPujL6RU0"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "umKZOvYdFb9" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "grNkHWkbZtd"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "wkrjbwnXtky"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "sid", :id "gCqR3xd638a"} + "v" {:type :leaf, :by "root", :at 1539099839573, :text "op-id", :id "kaQPrXmZWRq"} + "x" {:type :leaf, :by "root", :at 1539099839573, :text "op-time", :id "FqZrR0bvGsB"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "SrJmNPkz1-9" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "let", :id "dXKpgnovRmM"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "P9qxhfBuRYZ" + :data { + "T" { + :type :expr, :by "root", :at 1539099839573, :id "HRKF2FFqBJE" + :data { + "T" { + :type :expr, :by "root", :at 1539099839573, :id "EcQ1ZflAzgu" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "{}", :id "lRYRbUR78hm"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "b-tz9hXZKRb" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "workflow-name", :id "ElpRPhQHTk0"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text ":name", :id "U_dPqIBBAjl"} + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "zwIHhljTgBA" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "base-dir", :id "3tGdTwISFGr"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text ":base-dir", :id "beo7SNK4Nlz"} + } + } + } + } + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "a0gU0Ccv5lA"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "cWIdTBKPeXL" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "assoc-in", :id "1lj2BQBfbGn"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "tMP93VdjWTC"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "pufaBpxQB5S" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "[]", :id "GF9TraozxA7"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text ":workflows", :id "UJNDQZqeldI"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "op-id", :id "CTGzIppDVjC"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "2d_47KMR_C4" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "merge", :id "gAvfUnIHgLJ"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "schema/workflow", :id "oj9gz8f8sw9"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "37223WTjOzi" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "{}", :id "sPqFywqqP27"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "pXoG-r_8OVf" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text ":id", :id "pdwecNUou9J"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-id", :id "Jggyenjjyyf"} + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "j_Rau9ZAgIK" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text ":name", :id "PMZVtYOy5gL"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "workflow-name", :id "5HPMfvh1dXN"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "zINmbgpGbNi" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text ":base-dir", :id "H-F1HPHWISM"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "base-dir", :id "5-FiEzDf6cp"} + } + } + } + } + } + } + } + } + } + } + } + } + "edit-command" { + :type :expr, :by "root", :at 1539099839573, :id "BunS3qnU_Yr" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "defn", :id "TeHkL8GEZN1"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "edit-command", :id "0dW5tSoVp9R"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "sUBtyW0NL7F" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "rqsAxDosHBf"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "2ahPzTZRAbv"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "sid", :id "n8lCfRwRvJt"} + "v" {:type :leaf, :by "root", :at 1539099839573, :text "op-id", :id "3SOfR45Mp_B"} + "x" {:type :leaf, :by "root", :at 1539099839573, :text "op-time", :id "hDKOBcyS7QP"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "n3fH_T5RTI9" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "let", :id "twonvL6wzd2"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "ovDi6l-BXFx" + :data { + "T" { + :type :expr, :by "root", :at 1539099839573, :id "xsHsKw0FKWC" + :data { + "T" { + :type :expr, :by "root", :at 1539099839573, :id "mxQHKi31GkV" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "[]", :id "-44t8H3vaXj"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "workflow-id", :id "_v8UNxYZ-lk"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "command-id", :id "FGWqZWG4Dan"} + "v" {:type :leaf, :by "root", :at 1539099839573, :text "changes", :id "g39ZdroXoSX"} + } + } + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "nCnCAVqTv4l"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "ghKujqNqV87" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "update-in", :id "kVUqNMfB3ex"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "xHAhuhzpJZS"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "AJ6wZ5p57fc" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "[]", :id "QzR7LEW8D1D"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text ":workflows", :id "MmxmLnvBGfH"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "workflow-id", :id "y8hyV4LZ0H1"} + "v" {:type :leaf, :by "root", :at 1539099839573, :text ":commands", :id "7x2naYVGnjC"} + "x" {:type :leaf, :by "root", :at 1539099839573, :text "command-id", :id "8YnKS76OdGp"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "yfiyZUt4qHA" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "fn", :id "CG_PWcJcw6W"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "RkuQMlsmVIi" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "command", :id "SwIGQCIMYQP"} + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "vuQ2qytb2rM" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "merge", :id "LoYopBbZ44p"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "command", :id "O2JiXrA1ABK"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "changes", :id "eco339-eQDf"} + } + } + } + } + } + } + } + } + } + } + "edit-workflow" { + :type :expr, :by "root", :at 1539099839573, :id "F651gFLZTkv" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "defn", :id "lElr_fk31iY"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "edit-workflow", :id "eStyRZ9OKr-"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "7aFHAIY1G3m" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "lt-n8IYQSgu"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "HAzF1IeC95h"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "sid", :id "BI8vMhwidn0"} + "v" {:type :leaf, :by "root", :at 1539099839573, :text "op-id", :id "vuWb-MTNIMy"} + "x" {:type :leaf, :by "root", :at 1539099839573, :text "op-time", :id "qwWZeKnHyMp"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "F4OYaI5yXGJ" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "let", :id "XY73tBZ9GhT"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "XONgM-nOxtY" + :data { + "T" { + :type :expr, :by "root", :at 1539099839573, :id "5RmDTrIShTh" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "new-workflow", :id "CrRTmDXHNyL"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "Ntq0Gg8q2lz"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "kLXhUqcdAE7" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "update-in", :id "rFsOxFDOqLY"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "Jirh_WMw8nV"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "W_VwSAGFtzB" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "[]", :id "Ns4dQBgN-mS"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text ":workflows", :id "uDBzPnlWsbn"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "zKMA3Nx_6FP" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text ":id", :id "V841Ft1445U"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "new-workflow", :id "2w8b7JWSxB2"} + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "fws-YnaN1bF" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "fn", :id "3mGysoDP4-t"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "CrepgofmicP" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "workflow", :id "ZBpCQ4sqaYj"} + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "uE7Pfu-dCoA" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "merge", :id "FQquPpGChxw"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "workflow", :id "8kO_FTbfeVY"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "new-workflow", :id "1t30QAj67aY"} + } + } + } + } + } + } + } + } + } + } + "remove-command" { + :type :expr, :by "root", :at 1539099839573, :id "o07Ng0g4vwN" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "defn", :id "P6k-qpB3XU_"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "remove-command", :id "CMSHpBlkHbN"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "r97crD15RPp" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "m2_zyRLiy_G"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "Cp7dV2HAEQB"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "sid", :id "8drY-N5gFDV"} + "v" {:type :leaf, :by "root", :at 1539099839573, :text "op-id", :id "YciQVU9Niun"} + "x" {:type :leaf, :by "root", :at 1539099839573, :text "op-time", :id "oldOgoSXpf_"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "rSGgtRUpS15" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "let", :id "CqYHzMhzdzC"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "NKI_qHd1un6" + :data { + "T" { + :type :expr, :by "root", :at 1539099839573, :id "1iWX1fpiH3v" + :data { + "T" { + :type :expr, :by "root", :at 1539099839573, :id "cvuo8d5n8dF" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "[]", :id "m7YrHVk7XUF"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "workflow-id", :id "tJdDz8JPHAa"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "command-id", :id "slJa127j0ay"} + } + } + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "l2etOkdHBKy"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "1A3ryOkB0hh" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "update-in", :id "1UBt6pa_fWV"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "BsXyFyaKPZc"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "x-zB2vbZVyl" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "[]", :id "UOpY5A4vMv3"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text ":workflows", :id "BRkXq_AHy0F"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "workflow-id", :id "w-nQvZRnx0q"} + "v" {:type :leaf, :by "root", :at 1539099839573, :text ":commands", :id "mvnbUv7Wpyj"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "Vjg9CwhWVZK" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "fn", :id "tk6vI_XBZVd"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "1J7xXLkGN0V" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "commands", :id "3yGtRIEZ2gd"} + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "286IWSziI9M" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "dissoc", :id "CjTy-qL7MOw"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "commands", :id "-RuEZrNNnpc"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "command-id", :id "ZzRZtTQKnlE"} + } + } + } + } + } + } + } + } + } + } + "remove-workflow" { + :type :expr, :by "root", :at 1539099839573, :id "6b0gQSFqkLj" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "defn", :id "jYFc5ZFgFfv"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "remove-workflow", :id "NtehRQrXiAf"} + "r" { + :type :expr, :by "root", :at 1539099839573, :id "aPPBnGJsXao" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "HMfrJo7_PTB"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "I54LT-4lU6G"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "sid", :id "opfx7lD-afy"} + "v" {:type :leaf, :by "root", :at 1539099839573, :text "op-id", :id "DK7nmlqtlfL"} + "x" {:type :leaf, :by "root", :at 1539099839573, :text "op-time", :id "CnttwNXDdxu"} + } + } + "v" { + :type :expr, :by "root", :at 1539099839573, :id "oRExDvwhHZ7" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "let", :id "tdobn7CWL7n"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "iHBv7JbjbA1" + :data { + "T" { + :type :expr, :by "root", :at 1539099839573, :id "_HsJUvoB5Tv" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "workflow-id", :id "tMdL4Vr_4Oq"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "op-data", :id "8WqipnQCDJ3"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "miyEblmPkgZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "update", :id "3685JknHOb6"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "db", :id "V_vw2nUHe_O"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text ":workflows", :id "4hnnThS16zu"} + "v" { + :type :expr, :by "root", :at 1539099839573, :id "z0B9cRk9m_5" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "fn", :id "dzTFAdb1b7M"} + "j" { + :type :expr, :by "root", :at 1539099839573, :id "F65TR64XrA7" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "workflows", :id "dJFeN-WVIxW"} + } + } + "r" { + :type :expr, :by "root", :at 1539099839573, :id "Q-y3OGMnmiv" + :data { + "T" {:type :leaf, :by "root", :at 1539099839573, :text "dissoc", :id "MZDPCYRdYGq"} + "j" {:type :leaf, :by "root", :at 1539099839573, :text "workflows", :id "tal2aTCGJGu"} + "r" {:type :leaf, :by "root", :at 1539099839573, :text "workflow-id", :id "HbHzb_mQDUp"} + } + } + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :by "root", :at 1539099839573, :id "hbrmGwABgj" + :data {} + } + } + "app.util" { + :ns { + :type :expr, :id "H1cSgIWeRr-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HyirlLbg0S-", :text "ns", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Sy3rgUZx0SW", :text "app.util", :by "root", :at 1500541255553} + "r" { + :type :expr, :by "root", :at 1539099308829, :id "yn0l0qXYgM" + :data { + "T" {:type :leaf, :by "root", :at 1539099308829, :text ":require", :id "JDJylCn-nq"} + "j" { + :type :expr, :by "root", :at 1539099308829, :id "9duhn6i2rW" + :data { + "T" {:type :leaf, :by "root", :at 1539099308829, :text "[]", :id "3TCVIlcYYl"} + "j" {:type :leaf, :by "root", :at 1539099308829, :text "clojure.string", :id "uOhpuWBoDB"} + "r" {:type :leaf, :by "root", :at 1539099308829, :text ":as", :id "xWYPbtkPr0"} + "v" {:type :leaf, :by "root", :at 1539099308829, :text "string", :id "k_qytSTBJs"} + } + } + } + } + } + } + :defs { + "find-first" { + :type :expr, :id "HJ0Sg8Zx0rb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HyJLe8ZxRrW", :text "defn", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJgLlI-lCSb", :text "find-first", :by "root", :at 1500541255553} + "r" { + :type :expr, :id "SyZUgL-xCHb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "SyMUl8-eCB-", :text "f", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rJ7IxUZgRSb", :text "xs", :by "root", :at 1500541255553} + } + } + "v" { + :type :expr, :id "rkVUxLWxABW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "H1SIg8ZgRBZ", :text "reduce", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "B1LLeUbgRH-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkwLxUZxABZ", :text "fn", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "B1OLxUWgCHW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Skt8e8ZeCH-", :text "_", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "rycUgLWg0rW", :text "x", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "B1sLeIWgASW", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "Bk2UgUWxRrb", :text "when", :by "root", :at 1500541255553} + "j" { + :type :expr, :id "SJp8gL-gCB-", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "HJRLeL-x0BW", :text "f", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "Hk1DxUZlAB-", :text "x", :by "root", :at 1500541255553} + } + } + "r" { + :type :expr, :id "BJgPxLbg0Sb", :by nil, :at 1500541255553 + :data { + "T" {:type :leaf, :id "rkbDlIbx0S-", :text "reduced", :by "root", :at 1500541255553} + "j" {:type :leaf, :id "B1MDlUZe0r-", :text "x", :by "root", :at 1500541255553} + } + } + } + } + } + } + "r" {:type :leaf, :id "BkmweL-xCr-", :text "nil", :by "root", :at 1500541255553} + "v" {:type :leaf, :id "ByEvlLbxRSb", :text "xs", :by "root", :at 1500541255553} + } + } + } + } + "get-env!" { + :type :expr, :by "root", :at 1528097867713, :id "H1lV8hDzx7" + :data { + "T" {:type :leaf, :by "root", :at 1528097867713, :text "defn", :id "S1-ELnDMxQ"} + "j" {:type :leaf, :by "root", :at 1528097867713, :text "get-env!", :id "BJfN8nvMem"} + "r" { + :type :expr, :by "root", :at 1528097867713, :id "rJQNI3DfeQ" + :data { + "T" {:type :leaf, :by "root", :at 1528097921077, :text "property", :id "SJmPKhPMgX"} + } + } + "v" { + :type :expr, :by "root", :at 1528097922114, :id "S1l5F3DGem" + :data { + "T" {:type :leaf, :by "root", :at 1528098282900, :text "aget", :id "S1l5F3DGemleaf"} + "j" { + :type :expr, :by "root", :at 1528097923842, :id "rJ-nYnwzem" + :data { + "T" {:type :leaf, :by "root", :at 1528097927975, :text ".-env", :id "Hk3KhvMlQ"} + "j" {:type :leaf, :by "root", :at 1528097930110, :text "js/process", :id "B1Mx53vzeX"} + } + } + "r" {:type :leaf, :by "root", :at 1528097933963, :text "property", :id "ry753vGg7"} + } + } + } + } + "join-path" { + :type :expr, :by "root", :at 1539099259093, :id "IfmjAyctkE" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "defn", :id "GJnVdvJ4cA"} + "j" {:type :leaf, :by "root", :at 1539099259093, :text "join-path", :id "twqoMX8YWJ"} + "r" { + :type :expr, :by "root", :at 1539099259093, :id "VnrycoGjz1" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "xs", :id "_BPFGuGBFN"} + "j" {:type :leaf, :by "root", :at 1539099259093, :text "ys", :id "FqklteHtCT"} + } + } + "v" { + :type :expr, :by "root", :at 1539099259093, :id "u0wqZyrw8I" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "if", :id "ZbXfXCg4Xv"} + "j" { + :type :expr, :by "root", :at 1539099259093, :id "PyfFeTwE8Q" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "=", :id "9QAlP5qK9B"} + "j" { + :type :expr, :by "root", :at 1539099259093, :id "U_xc3mX7Pc" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "first", :id "1ghPvBFqK4"} + "j" {:type :leaf, :by "root", :at 1539099259093, :text "ys", :id "k015wGamDN"} + } + } + "r" {:type :leaf, :by "root", :at 1539099259093, :text "|/", :id "dvfux-lYIZ"} + } + } + "r" {:type :leaf, :by "root", :at 1539099259093, :text "ys", :id "YTl5kkEgnk"} + "v" { + :type :expr, :by "root", :at 1539099259093, :id "77zX_a2j1uz" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "let", :id "HwthTBPiaSZ"} + "j" { + :type :expr, :by "root", :at 1539099259093, :id "VZH-mxrzUw9" + :data { + "T" { + :type :expr, :by "root", :at 1539099259093, :id "sSYUsXdA5YI" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "absolute?", :id "RoxYa8oAaFm"} + "j" { + :type :expr, :by "root", :at 1539099259093, :id "NuQjlazTCky" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "=", :id "PDwRPlYMr78"} + "j" { + :type :expr, :by "root", :at 1539099259093, :id "uceOy9wReCX" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "first", :id "zmKE5ELPzom"} + "j" {:type :leaf, :by "root", :at 1539099259093, :text "xs", :id "IIcFFx8vaw4"} + } + } + "r" {:type :leaf, :by "root", :at 1539099259093, :text "|/", :id "i-kIu0zxdDP"} + } + } + } + } + "j" { + :type :expr, :by "root", :at 1539099259093, :id "oeOHsERE6tG" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "new-path", :id "jLPjSltSfOq"} + "j" { + :type :expr, :by "root", :at 1539099259093, :id "S6k37XadQDi" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "join-segments", :id "uYHDmrrN3Ma"} + "j" { + :type :expr, :by "root", :at 1539099259093, :id "tKUzKVcgeTY" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "[]", :id "IXPkD0wppKW"} + } + } + "r" { + :type :expr, :by "root", :at 1539099259093, :id "0UIL3af8KYm" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "concat", :id "_Ed6TLNSJD7"} + "j" { + :type :expr, :by "root", :at 1539099259093, :id "VSaXCyQ2Mfc" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "string/split", :id "8E9Owplpfmx"} + "j" {:type :leaf, :by "root", :at 1539099259093, :text "xs", :id "vqFVJcctg3j"} + "r" {:type :leaf, :by "root", :at 1539099259093, :text "|/", :id "bCueE3Nnz5e"} + } + } + "r" { + :type :expr, :by "root", :at 1539099259093, :id "aB9Z8zCWM64" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "string/split", :id "9eJJDugBtDg"} + "j" {:type :leaf, :by "root", :at 1539099259093, :text "ys", :id "JTxPeQGCOax"} + "r" {:type :leaf, :by "root", :at 1539099259093, :text "|/", :id "C9JZNRzatOZ"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099259093, :id "Gltl22YA_dk" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "if", :id "g9HbJVa-piZ"} + "j" {:type :leaf, :by "root", :at 1539099259093, :text "absolute?", :id "441tFAnwWLE"} + "r" { + :type :expr, :by "root", :at 1539099259093, :id "Lo5A30UzZQh" + :data { + "T" {:type :leaf, :by "root", :at 1539099259093, :text "str", :id "VULCHPHTEkC"} + "j" {:type :leaf, :by "root", :at 1539099259093, :text "|/", :id "8O_-hhXdDD1"} + "r" {:type :leaf, :by "root", :at 1539099259093, :text "new-path", :id "tvXg5Iv2V0p"} + } + } + "v" {:type :leaf, :by "root", :at 1539099259093, :text "new-path", :id "UGQOyrl1Knk"} + } + } + } + } + } + } + } + } + "join-segments" { + :type :expr, :by "root", :at 1539099266193, :id "iRp_YjGti5" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "defn", :id "RN57ZgveZF"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "join-segments", :id "IOiZ1_XbZP"} + "r" { + :type :expr, :by "root", :at 1539099266193, :id "K5ZPkyRv4G" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "acc", :id "mDASmvXNxi"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "xs", :id "jt2GREVAOJ"} + } + } + "v" { + :type :expr, :by "root", :at 1539099266193, :id "u4SftxcK8x" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "if", :id "SXupOVEQVw"} + "j" { + :type :expr, :by "root", :at 1539099266193, :id "4SJ0ysLjSm" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "empty?", :id "y1DiFNcjJR"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "xs", :id "rU-7GgDhwT"} + } + } + "r" { + :type :expr, :by "root", :at 1539099266193, :id "8Nj2NcZkSb" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "string/join", :id "tXng9_-85o"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "|/", :id "nX7jwExqOK"} + "r" {:type :leaf, :by "root", :at 1539099266193, :text "acc", :id "fYarN9pKMb"} + } + } + "v" { + :type :expr, :by "root", :at 1539099266193, :id "btdVQTzyKGS" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "let", :id "4DdTPGfz3rW"} + "j" { + :type :expr, :by "root", :at 1539099266193, :id "g8Sh6Hj0loq" + :data { + "T" { + :type :expr, :by "root", :at 1539099266193, :id "3lTXCmZWepa" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "cursor", :id "-MdxA8i_gRk"} + "j" { + :type :expr, :by "root", :at 1539099266193, :id "orW86NNFDh8" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "first", :id "T6a2kKlah1L"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "xs", :id "mdg5YT1aaA3"} + } + } + } + } + "j" { + :type :expr, :by "root", :at 1539099266193, :id "eGcR7aEV6ZD" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "next-acc", :id "QbNeHY1_dNC"} + "j" { + :type :expr, :by "root", :at 1539099266193, :id "W-amSBcDu_w" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "cond", :id "N-J88RxNnLo"} + "j" { + :type :expr, :by "root", :at 1539099266193, :id "OgrbCSdFMo6" + :data { + "T" { + :type :expr, :by "root", :at 1539099266193, :id "atJ8_UjCKZN" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "=", :id "-FcLteX4HgR"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "cursor", :id "BvJ3lG3bYFF"} + "r" {:type :leaf, :by "root", :at 1539099266193, :text "|.", :id "aeXUR8YBVCf"} + } + } + "j" {:type :leaf, :by "root", :at 1539099266193, :text "acc", :id "-CnROdCA32V"} + } + } + "r" { + :type :expr, :by "root", :at 1539099266193, :id "fGGo3n1fUOy" + :data { + "T" { + :type :expr, :by "root", :at 1539099266193, :id "627ClePh0Fr" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "=", :id "AcCGY9gMbDF"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "cursor", :id "JwNoltDGcPa"} + "r" {:type :leaf, :by "root", :at 1539099266193, :text "|..", :id "p41Fv2LIvu5"} + } + } + "j" { + :type :expr, :by "root", :at 1539099266193, :id "rYbf6trpOto" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "vec", :id "z77sTGALOUj"} + "j" { + :type :expr, :by "root", :at 1539099266193, :id "S3GNDqCBSac" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "butlast", :id "gtP8S2-Ath3"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "acc", :id "3-4r6H8iZuj"} + } + } + } + } + } + } + "v" { + :type :expr, :by "root", :at 1539099266193, :id "LUhUEezTzKS" + :data { + "T" { + :type :expr, :by "root", :at 1539099266193, :id "xoutrk_fFHa" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "=", :id "Y9GGw0dlqwN"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "cursor", :id "HhKSa2Seu1F"} + "r" {:type :leaf, :by "root", :at 1539099266193, :text "|", :id "Swh0vfMgJZ2"} + } + } + "j" {:type :leaf, :by "root", :at 1539099266193, :text "acc", :id "ShT0V3rkN_n"} + } + } + "x" { + :type :expr, :by "root", :at 1539099266193, :id "qUDKPVsPOKO" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text ":else", :id "M561bum7TS5"} + "j" { + :type :expr, :by "root", :at 1539099266193, :id "_8fsssfV3PI" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "conj", :id "gw8yeYMhrPZ"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "acc", :id "ZjkCv83hy8d"} + "r" {:type :leaf, :by "root", :at 1539099266193, :text "cursor", :id "9kzeF5fwllg"} + } + } + } + } + } + } + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099266193, :id "VJ_oOkvwtw5" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "recur", :id "UwL5S99y9OS"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "next-acc", :id "lfUIzTyvsY2"} + "r" { + :type :expr, :by "root", :at 1539099266193, :id "39mCxydwPX9" + :data { + "T" {:type :leaf, :by "root", :at 1539099266193, :text "rest", :id "eQ4VpohhN-h"} + "j" {:type :leaf, :by "root", :at 1539099266193, :text "xs", :id "mdM36b9eT9E"} + } + } + } + } + } + } + } + } + } + } + "log-js!" { + :type :expr, :by "root", :at 1539099900129, :id "5ouerXOlpG" + :data { + "T" {:type :leaf, :by "root", :at 1539099900129, :text "defn", :id "iiZVj00A84"} + "j" {:type :leaf, :by "root", :at 1539099900129, :text "log-js!", :id "H0Q0tgoQ3i"} + "r" { + :type :expr, :by "root", :at 1539099900129, :id "SdEPbs5gzk" + :data { + "T" {:type :leaf, :by "root", :at 1539099900129, :text "&", :id "mxJyn4azaX"} + "j" {:type :leaf, :by "root", :at 1539099900129, :text "args", :id "Rk1XbOUflI"} + } + } + "v" { + :type :expr, :by "root", :at 1539099900129, :id "397NKJ1_pX" + :data { + "T" {:type :leaf, :by "root", :at 1539099900129, :text "apply", :id "xAAYP7QuYV"} + "j" {:type :leaf, :by "root", :at 1539099900129, :text "js/console.log", :id "6X9Azp6DEA"} + "r" { + :type :expr, :by "root", :at 1539099900129, :id "7fx6WRqssm" + :data { + "T" {:type :leaf, :by "root", :at 1539099900129, :text "map", :id "XJ5NztawR4"} + "j" { + :type :expr, :by "root", :at 1539099900129, :id "HZSqSalMUh" + :data { + "T" {:type :leaf, :by "root", :at 1539099900129, :text "fn", :id "OrLmkzzf8t"} + "j" { + :type :expr, :by "root", :at 1539099900129, :id "XZg_aJ2qTg" + :data { + "T" {:type :leaf, :by "root", :at 1539099900129, :text "x", :id "Pw_yWuIKEf2"} + } + } + "r" { + :type :expr, :by "root", :at 1539099900129, :id "hU9gY9h9O5W" + :data { + "T" {:type :leaf, :by "root", :at 1539099900129, :text "if", :id "zPf6Vw-YMwx"} + "j" { + :type :expr, :by "root", :at 1539099900129, :id "lLIA9OajWwV" + :data { + "T" {:type :leaf, :by "root", :at 1539099900129, :text "coll?", :id "6TmeDcue9bf"} + "j" {:type :leaf, :by "root", :at 1539099900129, :text "x", :id "h7gf94Ui-0K"} + } + } + "r" { + :type :expr, :by "root", :at 1539099900129, :id "HDWSSWd2yFq" + :data { + "T" {:type :leaf, :by "root", :at 1539099900129, :text "clj->js", :id "BHlIYPC7Rbh"} + "j" {:type :leaf, :by "root", :at 1539099900129, :text "x", :id "oaiurTGtvhp"} + } + } + "v" {:type :leaf, :by "root", :at 1539099900129, :text "x", :id "m_7XAIPdMLY"} + } + } + } + } + "r" {:type :leaf, :by "root", :at 1539099900129, :text "args", :id "QzXO0CPIRYt"} + } + } + } + } + } + } + "map-val" { + :type :expr, :by "root", :at 1539099274058, :id "a4ev7mmZ4y" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "defn", :id "8KEf3IDZsc"} + "j" {:type :leaf, :by "root", :at 1539099274058, :text "map-val", :id "NR6dFHmNHw"} + "r" { + :type :expr, :by "root", :at 1539099274058, :id "DTlPPAvYXr" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "f", :id "v4MiGWp6BZ"} + "j" {:type :leaf, :by "root", :at 1539099274058, :text "xs", :id "KU4wy3dy0o"} + } + } + "v" { + :type :expr, :by "root", :at 1539099274058, :id "kA6-Cq2IQ_" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "assert", :id "aynZ_cYzEO"} + "j" { + :type :expr, :by "root", :at 1539099274058, :id "TCwSheKQtY" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "or", :id "Rn1W_8Fk2y"} + "j" { + :type :expr, :by "root", :at 1539099274058, :id "01d6DuIrQZ" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "map?", :id "KNF8Qs4cwD"} + "j" {:type :leaf, :by "root", :at 1539099274058, :text "xs", :id "M_pjPHCkvG"} + } + } + "r" { + :type :expr, :by "root", :at 1539099274058, :id "Gtu3K0evhw" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "seq?", :id "MQYPCUSzMsy"} + "j" {:type :leaf, :by "root", :at 1539099274058, :text "xs", :id "V_9FYXSMDCB"} + } + } + } + } + "r" {:type :leaf, :by "root", :at 1539099274058, :text "|map-val deals maps", :id "qwDdQ17nMxL"} + } + } + "x" { + :type :expr, :by "root", :at 1539099274058, :id "fy7Ou3pf2Jf" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "->>", :id "cb9P3nOmotF"} + "j" {:type :leaf, :by "root", :at 1539099274058, :text "xs", :id "bisYSeNvuC3"} + "r" { + :type :expr, :by "root", :at 1539099274058, :id "eR5TSKw3uJH" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "map", :id "AM5KyzOswrX"} + "j" { + :type :expr, :by "root", :at 1539099274058, :id "N9u28NcYhx4" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "fn", :id "vKf_1YpxL0U"} + "j" { + :type :expr, :by "root", :at 1539099274058, :id "RxfvQEBmMDO" + :data { + "T" { + :type :expr, :by "root", :at 1539099274058, :id "NvHncKmYtt2" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "[]", :id "HDm1DzlnTYW"} + "j" {:type :leaf, :by "root", :at 1539099274058, :text "k", :id "dQMTE0mOmDu"} + "r" {:type :leaf, :by "root", :at 1539099274058, :text "x", :id "qxSoIv8DbAS"} + } + } + } + } + "r" { + :type :expr, :by "root", :at 1539099274058, :id "HQXQEy4IyC9" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "[]", :id "fpA7bbt_CLt"} + "j" {:type :leaf, :by "root", :at 1539099274058, :text "k", :id "sF5O_U-Udw9"} + "r" { + :type :expr, :by "root", :at 1539099274058, :id "2MUjrJEIvZr" + :data { + "T" {:type :leaf, :by "root", :at 1539099274058, :text "f", :id "0UVk25oTsY5"} + "j" {:type :leaf, :by "root", :at 1539099274058, :text "x", :id "Y2xZQHQ96fY"} + } + } + } + } + } + } + } + } + } + } + } + } + "map-with-index" { + :type :expr, :by "root", :at 1539099280801, :id "N2E6AILHXH" + :data { + "T" {:type :leaf, :by "root", :at 1539099280801, :text "defn", :id "lPev0D9AZY"} + "j" {:type :leaf, :by "root", :at 1539099280801, :text "map-with-index", :id "k8vDZ4ORXO"} + "r" { + :type :expr, :by "root", :at 1539099280801, :id "YOQYt1UKe1" + :data { + "T" {:type :leaf, :by "root", :at 1539099280801, :text "f", :id "YVub6OjSEU"} + "j" {:type :leaf, :by "root", :at 1539099280801, :text "xs", :id "1XOennzb1g"} + } + } + "v" { + :type :expr, :by "root", :at 1539099280801, :id "EH7DZwv4pg" + :data { + "T" {:type :leaf, :by "root", :at 1539099280801, :text "->>", :id "s9XFJtUXA_"} + "j" {:type :leaf, :by "root", :at 1539099280801, :text "xs", :id "40F5x_bTKB"} + "r" { + :type :expr, :by "root", :at 1539099280801, :id "BSyj6HYIxq" + :data { + "T" {:type :leaf, :by "root", :at 1539099280801, :text "map-indexed", :id "pBMEj19GxM"} + "j" { + :type :expr, :by "root", :at 1539099280801, :id "CHvCd-ZWWw" + :data { + "T" {:type :leaf, :by "root", :at 1539099280801, :text "fn", :id "bLR7zuE6C2"} + "j" { + :type :expr, :by "root", :at 1539099280801, :id "E1g9RLaSe-" + :data { + "T" {:type :leaf, :by "root", :at 1539099280801, :text "idx", :id "peRC99y0TE"} + "j" {:type :leaf, :by "root", :at 1539099280801, :text "x", :id "rYGDhDozF8W"} + } + } + "r" { + :type :expr, :by "root", :at 1539099280801, :id "JxRXGy1G0Cc" + :data { + "T" {:type :leaf, :by "root", :at 1539099280801, :text "[]", :id "vME0t6DALnl"} + "j" {:type :leaf, :by "root", :at 1539099280801, :text "idx", :id "cWiyaTh65ml"} + "r" { + :type :expr, :by "root", :at 1539099280801, :id "-DV9NJfjHLS" + :data { + "T" {:type :leaf, :by "root", :at 1539099280801, :text "f", :id "Zza5Wf-sg-S"} + "j" {:type :leaf, :by "root", :at 1539099280801, :text "x", :id "l8-dKJqarVw"} + } + } + } + } + } + } + } + } + } + } + } + } + "test-join-path!" { + :type :expr, :by "root", :at 1539099287213, :id "FoltQ8_axk" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "defn", :id "iNcbKiieds"} + "j" {:type :leaf, :by "root", :at 1539099287213, :text "test-join-path!", :id "oj7M0SgN5Q"} + "r" { + :type :expr, :by "root", :at 1539099287213, :id "Rp1bga1U62" + :data {} + } + "v" { + :type :expr, :by "root", :at 1539099287213, :id "V_xspGtHqD" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "println", :id "Qh38EEJXLj"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "s8TfHNnZrD" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "pr-str", :id "A_KrTqa9F6"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "rozz1iwZwx" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "join-path", :id "Vk9ex2VPNv"} + "j" {:type :leaf, :by "root", :at 1539099287213, :text "|", :id "dwVSy6WOA0"} + "r" {:type :leaf, :by "root", :at 1539099287213, :text "|", :id "hELTBnVQUA"} + } + } + } + } + } + } + "x" { + :type :expr, :by "root", :at 1539099287213, :id "hWOKYUj10P" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "println", :id "a6zqPK6ACZ"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "uHoNugMo11U" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "pr-str", :id "mxaSKNlazKq"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "VNYPEHZ15kj" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "join-path", :id "azp6wWz-lSd"} + "j" {:type :leaf, :by "root", :at 1539099287213, :text "|/", :id "BR1_HN69o2v"} + "r" {:type :leaf, :by "root", :at 1539099287213, :text "|", :id "VfxDqONFKh0"} + } + } + } + } + } + } + "y" { + :type :expr, :by "root", :at 1539099287213, :id "dJ4GUsQeeh5" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "println", :id "3qkTJ_nnooy"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "Hh8Eph55_WD" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "pr-str", :id "eubOb5d_qpK"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "Eikyt2C2MaX" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "join-path", :id "lLaEJXIj7d4"} + "j" {:type :leaf, :by "root", :at 1539099287213, :text "|", :id "aw4MwpTXIpT"} + "r" {:type :leaf, :by "root", :at 1539099287213, :text "|/", :id "SQtmtL7zR3G"} + } + } + } + } + } + } + "yT" { + :type :expr, :by "root", :at 1539099287213, :id "gUrtgbzAmzL" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "println", :id "OcKNIc-XnH1"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "xqQ0_Z65zem" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "pr-str", :id "3kQIqSCgRSe"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "Xhfn-I8nEVl" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "join-path", :id "K5pw31lhPiB"} + "j" {:type :leaf, :by "root", :at 1539099287213, :text "|a", :id "sddVEkrcTfR"} + "r" {:type :leaf, :by "root", :at 1539099287213, :text "|b", :id "Jc7x1zGIY6I"} + } + } + } + } + } + } + "yj" { + :type :expr, :by "root", :at 1539099287213, :id "qogC70ZxWVX" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "println", :id "G-nIUP8g2rn"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "SMkqqedhJc_" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "pr-str", :id "XOlbnGBQILR"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "00Ic000XVua" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "join-path", :id "Rp6SCVLDMNj"} + "j" {:type :leaf, :by "root", :at 1539099287213, :text "|a", :id "6oohtYOFOYK"} + "r" {:type :leaf, :by "root", :at 1539099287213, :text "|../b", :id "YocUnFmxoed"} + } + } + } + } + } + } + "yr" { + :type :expr, :by "root", :at 1539099287213, :id "pdWtfpC531n" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "println", :id "wTQisuiDHaA"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "Mh325EgVoXz" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "pr-str", :id "OJBFIQe6FMV"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "KlJ0xmuAdJz" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "join-path", :id "GFIaWsgEAyv"} + "j" {:type :leaf, :by "root", :at 1539099287213, :text "|a", :id "L1PlS8Gvf8L"} + "r" {:type :leaf, :by "root", :at 1539099287213, :text "|./b", :id "5PzWPQ3pIBN"} + } + } + } + } + } + } + "yv" { + :type :expr, :by "root", :at 1539099287213, :id "ETeWgcJmsxx" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "println", :id "VvRwW2S-f2m"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "QuqO2vYZsWh" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "pr-str", :id "nnSNZW0nniD"} + "j" { + :type :expr, :by "root", :at 1539099287213, :id "FmmoDzOtCFo" + :data { + "T" {:type :leaf, :by "root", :at 1539099287213, :text "join-path", :id "VA1z_6PMI82"} + "j" {:type :leaf, :by "root", :at 1539099287213, :text "|a/", :id "8MfHe2PCKcX"} + "r" {:type :leaf, :by "root", :at 1539099287213, :text "|./b", :id "xQ_Cl-2CGGY"} + } + } + } + } + } + } + } + } + } + :proc { + :type :expr, :id "rJTSx8ZxRB-", :by nil, :at 1500541255553 + :data {} + } + } + } + } + :sessions {} + :users { + "B1y7Rc-Zz" {:id "B1y7Rc-Zz", :name "chen", :nickname "chen", :password "d41d8cd98f00b204e9800998ecf8427e", :avatar nil, :theme :star-trail} + "root" {:id "root", :name "root", :nickname "root", :password "d41d8cd98f00b204e9800998ecf8427e", :avatar nil, :theme :star-trail} + } + :saved-files {} + :configs {:storage-key "calcit.edn", :extension ".cljs", :output "src", :port 6001} + :repl { + :alive? false + :logs {} + } +} \ No newline at end of file diff --git a/app/cli/build/main.clj b/cli/build/main.clj similarity index 51% rename from app/cli/build/main.clj rename to cli/build/main.clj index 305d5ca..3360f09 100644 --- a/app/cli/build/main.clj +++ b/cli/build/main.clj @@ -7,24 +7,25 @@ (println command) (println (sh "bash" "-c" command))) -(defn watch [] - (shadow/watch :browser)) - (defn build [] (sh! "rm -rf dist/*") - (shadow/release :browser) - (shadow/compile :ssr) - (sh! "node target/ssr.js") + (shadow/release :client) + (shadow/release :server) + (shadow/compile :page) + (sh! "mode=release node target/page.js") + (sh! "cp package.json dist/") (sh! "cp entry/manifest.json dist/")) (defn build-local [] (sh! "rm -rf dist/*") - (shadow/release :browser) - (shadow/compile :ssr) - (sh! "prod=preview node target/ssr.js") + (shadow/release :client) + (shadow/release :server) + (shadow/compile :page) + (sh! "mode=local-bundle node target/page.js") + (sh! "cp package.json dist/") (sh! "cp entry/manifest.json dist/")) -(defn html [] - (shadow/compile :ssr) - (sh! "env=dev node target/ssr.js") +(defn page [] + (shadow/compile :page) + (sh! "node target/page.js") (sh! "cp entry/manifest.json target/")) diff --git a/cli/build/upload.cljs b/cli/build/upload.cljs new file mode 100644 index 0000000..3435ef9 --- /dev/null +++ b/cli/build/upload.cljs @@ -0,0 +1,15 @@ + +(ns build.upload + (:require ["child_process" :as child-process] + [app.config :as config])) + +(defn sh! [command] + (println command) + (println (.toString (child-process/execSync command)))) + +(defn -main [] + (sh! (str "rsync -avr --progress dist/* " (:cdn-folder config/site))) + (sh! (str "rsync -avr --progress dist/{index.html,manifest.json} " + (:upload-folder config/site))) + (sh! (str "rsync -avr --progress dist/{server.js,package.json} " + (:server-folder config/site)))) diff --git a/entry/main.css b/entry/main.css new file mode 100644 index 0000000..c9b1ec1 --- /dev/null +++ b/entry/main.css @@ -0,0 +1,14 @@ + +body { + margin: 0; + overscroll-behavior-y: none; +} + +body * { + box-sizing: border-box; +} + +.dev-shadows, +.dev-shadows * { + box-shadow: 0 0 1px hsla(0,0%,0%,0.3); +} diff --git a/app/entry/manifest.json b/entry/manifest.json similarity index 74% rename from app/entry/manifest.json rename to entry/manifest.json index 1145815..2afa606 100644 --- a/app/entry/manifest.json +++ b/entry/manifest.json @@ -3,8 +3,8 @@ "name": "Cumulo", "icons": [ { - "src": "http://cdn.tiye.me/logo/termina.png", - "sizes": "400x400" + "src": "http://cdn.tiye.me/logo/cumulo.png", + "sizes": "460x460" } ], "start_url": "index.html", diff --git a/app/entry/termina.png b/entry/termina.png similarity index 100% rename from app/entry/termina.png rename to entry/termina.png diff --git a/app/entry/termina.sketch b/entry/termina.sketch similarity index 100% rename from app/entry/termina.sketch rename to entry/termina.sketch diff --git a/package.json b/package.json new file mode 100644 index 0000000..b503aaf --- /dev/null +++ b/package.json @@ -0,0 +1,37 @@ +{ + "name": "termina", + "version": "0.1.2", + "description": "Start process from a Webpage", + "bin": { + "termina": "dist/server.js" + }, + "scripts": { + "watch": "shadow-cljs watch client server", + "build": "shadow-cljs clj-run build.main/build", + "build-local": "shadow-cljs clj-run build.main/build-local", + "page": "shadow-cljs clj-run build.main/page", + "upload": "lumo -c cli/:src/ -m build.upload", + "serve": "http-server dist -s", + "repl": "rlwrap shadow-cljs clj-repl client", + "repl-server": "rlwrap shadow-cljs clj-repl server", + "ln": "cd target && rm -f entry && ln -s ../entry", + "prod": "yarn install --production" + }, + "repository": { + "type": "git", + "url": "git@github.com:mvc-works/termina.git" + }, + "author": "jiyinyiyong", + "license": "MIT", + "dependencies": { + "md5": "^2.2.1", + "randomcolor": "^0.5.3", + "shortid": "^2.2.13", + "ws": "^6.1.0" + }, + "devDependencies": { + "http-server": "^0.11.1", + "shadow-cljs": "^2.6.10", + "source-map-support": "^0.5.9" + } +} diff --git a/server/.gitattributes b/server/.gitattributes deleted file mode 100644 index be1819b..0000000 --- a/server/.gitattributes +++ /dev/null @@ -1,3 +0,0 @@ - -calcit.edn -diff linguist-generated -yarn.lock -diff diff --git a/server/.gitignore b/server/.gitignore deleted file mode 100644 index 9ca5290..0000000 --- a/server/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ - -/dist -/target/ -/node_modules/ -.shadow-cljs/ diff --git a/server/.npmignore b/server/.npmignore deleted file mode 100644 index beb690e..0000000 --- a/server/.npmignore +++ /dev/null @@ -1,5 +0,0 @@ - -/src/ -/target/ -/calcit.edn -/shadow-cljs.edn diff --git a/server/README.md b/server/README.md deleted file mode 100644 index 5bcf21a..0000000 --- a/server/README.md +++ /dev/null @@ -1,5 +0,0 @@ - -Termina ---- - -Read guide at https://github.com/mvc-works/termina diff --git a/server/calcit.edn b/server/calcit.edn deleted file mode 100644 index 467c885..0000000 --- a/server/calcit.edn +++ /dev/null @@ -1,6061 +0,0 @@ -{ - :ir { - :package "server" - :options {:port 7011} - :files { - "server.main" { - :ns { - :type :expr, :id "SJcm-gIZlCSb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HyjXZxIWlCBb", :text "ns", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rynmbgL-e0r-", :text "server.main", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "SyTmWlU-xRBZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1AmWe8WgRBW", :text ":require", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "ByJ4ZgLbeCHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Bkl4beU-xCHW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJWEZl8Wl0rW", :text "server.schema", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SJGEZlU-gCS-", :text ":as", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "r17V-l8bx0Hb", :text "schema", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "r1V4bgUWlArZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJHNWxUZgAB-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJLNZgUbx0SW", :text "server.network", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SyDN-xLWgCBb", :text ":refer", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "B1OEbeLWeRHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1KV-eL-g0r-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "S15NZx8WgCSW", :text "run-server!", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "H1s4beUWxABb", :text "sync-clients!", :by "root", :at 1507806896433} - } - } - } - } - "v" { - :type :expr, :id "BJnEWxL-g0HW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HypNZe8WlAS-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Sk0V-e8-gCr-", :text "server.updater.core", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "HykSbxL-gArb", :text ":refer", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "BkgBZlLZlRHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJbSWlUWg0r-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "S1zHWeU-l0Sb", :text "updater", :by "root", :at 1500541255553} - } - } - } - } - "y" { - :type :expr, :id "r15SWeIZgCB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1oB-g8ZgCr-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Sk3BWeL-xCrW", :text "cljs.reader", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "By6H-l8ZgCB-", :text ":refer", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "H10rbxLZxAHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJyI-xI-e0H-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rkxIWe8WeRrW", :text "read-string", :by "root", :at 1500541255553} - } - } - } - } - "yD" { - :type :expr, :id "SkgfZlCh2-", :by "root", :at 1507807226477 - :data { - "T" {:type :leaf, :text "[]", :id "SkgfZlCh2-leaf", :by "root", :at 1507807226826} - "j" {:type :leaf, :text "server.util", :id "Sk-mZeR23-", :by "root", :at 1507807229292} - "r" {:type :leaf, :text ":refer", :id "SkGSZe033Z", :by "root", :at 1507807230032} - "v" { - :type :expr, :id "HkI8bgC2hW", :by "root", :at 1507807230345 - :data { - "T" {:type :leaf, :text "[]", :id "S1r8-gAn3W", :by "root", :at 1507807231839} - "j" {:type :leaf, :text "try-verbosely!", :id "ry-_ZgC2n-", :by "root", :at 1507807263959} - "r" {:type :leaf, :text "log-js!", :id "Sk6vxAnnW", :by "root", :at 1507807400201} - } - } - } - } - "yL" { - :type :expr, :id "HylWRQCh2Z", :by "root", :at 1507808200988 - :data { - "T" {:type :leaf, :text "[]", :id "HylWRQCh2Zleaf", :by "root", :at 1507808201361} - "j" {:type :leaf, :text "server.reel", :id "rkmZ0XAh2-", :by "root", :at 1507808204412} - "r" {:type :leaf, :text ":refer", :id "ryGEC7AhnW", :by "root", :at 1507808205649} - "v" { - :type :expr, :id "BJWU0mRhhZ", :by "root", :at 1507808205916 - :data { - "T" {:type :leaf, :text "[]", :id "H1l8A7A22W", :by "root", :at 1507808206889} - "j" {:type :leaf, :text "reel-updater", :id "Sk-v0QChn-", :by "root", :at 1507808210269} - "r" {:type :leaf, :text "refresh-reel", :id "S1I9CQCn3b", :by "root", :at 1507808213599} - "v" {:type :leaf, :text "reel-schema", :id "Sk4pEAnhZ", :by "root", :at 1507808445442} - } - } - } - } - "yP" { - :type :expr, :by "root", :at 1517153776074, :id "Sye_l0PjSM" - :data { - "T" {:type :leaf, :by "root", :at 1517153777912, :text "[]", :id "Sye_l0PjSMleaf"} - "j" {:type :leaf, :by "root", :at 1517153780554, :text "server.manager", :id "rkl5xADsrM"} - "r" {:type :leaf, :by "root", :at 1517153781502, :text ":refer", :id "r1gTx0DoHz"} - "v" { - :type :expr, :by "root", :at 1517153781681, :id "Syl0eRPsSz" - :data { - "T" {:type :leaf, :by "root", :at 1517153782029, :text "[]", :id "rJAgRDjrf"} - "j" {:type :leaf, :by "root", :at 1517153786228, :text "create-process!", :id "H1XCgAwsBz"} - "r" {:type :leaf, :by "root", :at 1517154600655, :text "kill-process!", :id "Skvm-uiBf"} - } - } - } - } - "yT" { - :type :expr, :id "BkxoeDT23Z", :by "root", :at 1507804915408 - :data { - "T" {:type :leaf, :text "[]", :id "BkxoeDT23Zleaf", :by "root", :at 1507804916099} - "j" {:type :leaf, :text "|fs", :id "S1WhlDT33Z", :by "root", :at 1507804916669} - "r" {:type :leaf, :text ":as", :id "Bkbpgvp3nW", :by "root", :at 1507804918168} - "v" {:type :leaf, :text "fs", :id "H1V0xPahh-", :by "root", :at 1507804918540} - } - } - "yj" { - :type :expr, :id "S1evFNvBGz", :by "root", :at 1513612415350 - :data { - "T" {:type :leaf, :text "[]", :id "S1evFNvBGzleaf", :by "root", :at 1513612416172} - "j" {:type :leaf, :text "|shortid", :id "BJ-OYNPrzM", :by "root", :at 1513612418690} - "r" {:type :leaf, :text ":as", :id "ByejtNvHGG", :by "root", :at 1513612420680} - "v" {:type :leaf, :text "shortid", :id "BJ-pKVPrGz", :by "root", :at 1513612422772} - } - } - } - } - } - } - :defs { - "*reader-reel" { - :type :expr, :id "SkrNzg8-eAHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HkU4MeUWgRrb", :text "defonce", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r1wVflUZx0BW", :text "*reader-reel", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "H1u4Gl8bl0B-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1F4ze8WxRSW", :text "atom", :by "root", :at 1500541255553} - "j" {:type :leaf, :text "@*reel", :id "ryzvXS0h3b", :by "root", :at 1507829929366} - } - } - } - } - "*reel" { - :type :expr, :id "r1e7FVRhhW", :by "root", :at 1507808379111 - :data { - "T" {:type :leaf, :text "defonce", :id "Sk-XF4Rh3W", :by "root", :at 1507808394824} - "j" {:type :leaf, :text "*reel", :id "HyM7tVRn3W", :by "root", :at 1507808379111} - "r" { - :type :expr, :id "SJxiFdyT2-", :by "root", :at 1507813506897 - :data { - "D" {:type :leaf, :text "atom", :id "S1ZsKukT2W", :by "root", :at 1507813508566} - "T" { - :type :expr, :id "BJm7FEC33-", :by "root", :at 1507808379111 - :data { - "T" {:type :leaf, :text "merge", :id "r1rq4R3nZ", :by "root", :at 1507808397502} - "j" {:type :leaf, :text "reel-schema", :id "SkLq403nZ", :by "root", :at 1507808421056} - "r" { - :type :expr, :id "HkCo4RnnZ", :by "root", :at 1507808421610 - :data { - "T" {:type :leaf, :text "{}", :id "Syr6i4Rhhb", :by "root", :at 1507808424590} - "j" { - :type :expr, :id "HyfnN03hb", :by "root", :at 1507808425954 - :data { - "T" {:type :leaf, :text ":base", :id "BJZ-3EC22b", :by "root", :at 1507808428338} - "j" {:type :leaf, :text "initial-db", :id "Bk7E3V0nnW", :by "root", :at 1507808431842} - } - } - "r" { - :type :expr, :id "Sy7O2VC32b", :by "root", :at 1507808432498 - :data { - "T" {:type :leaf, :text ":db", :id "Sy7O2VC32bleaf", :by "root", :at 1507808433485} - "j" {:type :leaf, :text "initial-db", :id "rJqhVR32W", :by "root", :at 1507808437108} - } - } - } - } - } - } - } - } - } - } - "dispatch!" { - :type :expr, :id "ByeNmqTh2W", :by "root", :at 1507805724033 - :data { - "T" {:type :leaf, :text "defn", :id "ByZNX963nb", :by "root", :at 1507805746075} - "j" {:type :leaf, :text "dispatch!", :id "SyzNX963nW", :by "root", :at 1507805724033} - "n" { - :type :expr, :id "ryIIpp23-", :by nil, :at 1500541255553 - :data { - "j" {:type :leaf, :id "BJd_7l8We0S-", :text "op", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SktOQxLZxRSZ", :text "op-data", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "Bk5OmlUWgRrW", :text "sid", :by "root", :at 1507806585099} - } - } - "t" { - :type :expr, :id "H1eziVwSMz", :by "root", :at 1513612441808 - :data { - "5" {:type :leaf, :text "let", :id "BkYoEvBzM", :by "root", :at 1513612449423} - "9" { - :type :expr, :id "HJ5jVDBMG", :by "root", :at 1513612449699 - :data { - "T" { - :type :expr, :id "B1ijNDBfz", :by "root", :at 1513612450706 - :data { - "T" {:type :leaf, :text "op-id", :id "SJQts4vSfM", :by "root", :at 1513612454094} - "j" { - :type :expr, :id "ry1hNPHzz", :by "root", :at 1513612454756 - :data { - "T" {:type :leaf, :text ".generate", :id "HJbRj4DBzf", :by "root", :at 1513612456520} - "j" {:type :leaf, :text "shortid", :id "r1gZhNPSGM", :by "root", :at 1513612457634} - } - } - } - } - "j" { - :type :expr, :id "ByWXn4DSff", :by "root", :at 1513612459185 - :data { - "T" {:type :leaf, :text "op-time", :id "ByWXn4DSffleaf", :by "root", :at 1513612460384} - "j" { - :type :expr, :id "Bkl83EPBzM", :by "root", :at 1513612461810 - :data { - "T" {:type :leaf, :text ".valueOf", :id "ry8hEDSMz", :by "root", :at 1513612462843} - "j" { - :type :expr, :id "r1zvnEwBfG", :by "root", :at 1513612463387 - :data { - "T" {:type :leaf, :text "js/Date.", :id "r1bv3EvSMM", :by "root", :at 1513612465281} - } - } - } - } - } - } - } - } - "D" { - :type :expr, :id "rkOj4wBMG", :by "root", :at 1507805724033 - :data { - "D" {:type :leaf, :by "root", :at 1517670708659, :text ";", :id "rk3VZ87If"} - "T" {:type :leaf, :text "println", :id "S1Gg4X9T2hZ", :by "root", :at 1517670688231} - "r" {:type :leaf, :text "|Dispatch!", :id "rJNgVX9p3hZ", :by "root", :at 1507830373170} - "w" {:type :leaf, :text "op", :id "SkwgE7c622W", :by "root", :at 1507805724033} - "x" { - :type :expr, :by "root", :at 1517670671387, :id "BJXvGZI7IG" - :data { - "T" {:type :leaf, :by "root", :at 1517670671061, :text "type", :id "S1lVGbL7IG"} - "j" {:type :leaf, :by "root", :at 1517670672740, :text "op-data", :id "BkOMbI78M"} - } - } - } - } - "T" { - :type :expr, :id "B1dMgR3n-", :by "root", :at 1507807247710 - :data { - "T" {:type :leaf, :text "try-verbosely!", :id "rJlPMxA3nZ", :by "root", :at 1507807262076} - "j" { - :type :expr, :by "root", :at 1517151741738, :id "By8bUPjSM" - :data { - "D" {:type :leaf, :by "root", :at 1517151748591, :text "cond", :id "r1lU-IDsrM"} - "L" { - :type :expr, :by "root", :at 1517151752576, :id "ryWzIwjSG" - :data { - "T" { - :type :expr, :by "root", :at 1517151753694, :id "B1MfUwsHM" - :data { - "T" {:type :leaf, :by "root", :at 1517151753918, :text "=", :id "r1eGLDjSG"} - "j" {:type :leaf, :by "root", :at 1517151755932, :text "op", :id "Hk-fGUPiHf"} - "r" {:type :leaf, :by "root", :at 1517151762968, :text ":effect/run", :id "HkMEfLDoSM"} - } - } - "j" { - :type :expr, :by "root", :at 1517151766250, :id "Bye0MIwsBf" - :data { - "T" {:type :leaf, :by "root", :at 1517153824406, :text "create-process!", :id "Bye0MIwsBfleaf"} - "r" {:type :leaf, :by "root", :at 1517151783390, :text "op-data", :id "SJdQIwsSf"} - "v" {:type :leaf, :by "root", :at 1517153822185, :text "dispatch!", :id "HJHX0wiSf"} - } - } - } - } - "R" { - :type :expr, :by "root", :at 1517154571958, :id "SJeNzWOorz" - :data { - "T" { - :type :expr, :by "root", :at 1517154573238, :id "SkHG-usrf" - :data { - "T" {:type :leaf, :by "root", :at 1517154574409, :text "=", :id "SJeNzWOorzleaf"} - "j" {:type :leaf, :by "root", :at 1517154574690, :text "op", :id "r1vfbOoHz"} - "r" {:type :leaf, :by "root", :at 1517204682116, :text ":effect/kill", :id "rkfvzZ_oSM"} - } - } - "j" { - :type :expr, :by "root", :at 1517154579152, :id "S14ZV_jBz" - :data { - "T" {:type :leaf, :by "root", :at 1517154606675, :text "kill-process!", :id "S1-oMb_oBG"} - "j" {:type :leaf, :by "root", :at 1517154583984, :text "op-data", :id "B1ly7bOoSG"} - "r" {:type :leaf, :by "root", :at 1517154586819, :text "dispatch!", :id "HyZXbdoBz"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517151769635, :id "r1fQLDiHG" - :data { - "D" {:type :leaf, :by "root", :at 1517151770551, :text ":else", :id "rkxzXUPjSM"} - "T" { - :type :expr, :id "HJejMgAh3b", :by "root", :at 1507805724033 - :data { - "T" {:type :leaf, :text "let", :id "HJ-W4m562hZ", :by "root", :at 1507805724033} - "j" { - :type :expr, :id "rkf-NQqa3h-", :by "root", :at 1507805724033 - :data { - "T" { - :type :expr, :id "HkXbEm5pn2Z", :by "root", :at 1507805724033 - :data { - "T" {:type :leaf, :text "new-reel", :id "H1Nb4mqT23-", :by "root", :at 1507808589297} - "j" { - :type :expr, :id "SJrW4m9ah3W", :by "root", :at 1507805724033 - :data { - "D" {:type :leaf, :text "reel-updater", :id "SkrVrR3nb", :by "root", :at 1507808559087} - "L" {:type :leaf, :text "@*reel", :id "B1qrHR3hb", :by "root", :at 1507808602095} - "T" {:type :leaf, :text "updater", :id "ry8b479anhb", :by "root", :at 1507805724033} - "r" {:type :leaf, :text "op", :id "r1_bN7cT2nb", :by "root", :at 1507805724033} - "v" {:type :leaf, :text "op-data", :id "HJt-E75a33W", :by "root", :at 1507805724033} - "x" {:type :leaf, :text "sid", :id "Bk5Z4m9p2hb", :by "root", :at 1507806589736} - "y" {:type :leaf, :text "op-id", :id "S1obVmcan3-", :by "root", :at 1507805724033} - "yT" {:type :leaf, :text "op-time", :id "Hk2bEQqT33b", :by "root", :at 1507805724033} - } - } - } - } - } - } - "r" { - :type :expr, :id "B1aWNX96n2Z", :by "root", :at 1507805724033 - :data { - "T" {:type :leaf, :text "reset!", :id "ryRZVX9T3nZ", :by "root", :at 1507805724033} - "j" {:type :leaf, :text "*reel", :id "rJJMV79p23W", :by "root", :at 1507808587261} - "r" {:type :leaf, :text "new-reel", :id "B1lMEQca3h-", :by "root", :at 1507808595719} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "initial-db" { - :type :expr, :id "HkexMeUZlCH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Hyblze8WlCBb", :text "def", :by "root", :at 1507808369153} - "j" {:type :leaf, :id "SyGeGlIWl0BW", :text "initial-db", :by "root", :at 1507808362410} - "r" { - :type :expr, :id "rkrlzx8ZgRHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rk8ezxLbxAS-", :text "let", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SyveGgUWeCHZ", :by nil, :at 1500541255553 - :data { - "j" { - :type :expr, :id "ByTezeLWxAHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJCgGxIbg0Sb", :text "filepath", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "Sy1WzgU-xASb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SklbMeUblRr-", :text ":storage-key", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "S1--GlLblCHb", :text "schema/configs", :by "root", :at 1500541255553} - } - } - } - } - } - } - "v" { - :type :expr, :id "ByEbGgLbxASW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJS-feLWl0HZ", :text "if", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "B1Ubzx8Wg0B-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1wZMeUWgRSW", :text "fs/existsSync", :by "root", :at 1507813255027} - "j" {:type :leaf, :id "HJ_-GlUZx0BZ", :text "filepath", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "HkYZMlUbxCBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJqZzeUblCr-", :text "do", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "B1jbfx8bgABb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ry2Zzg8WgCr-", :text "println", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BJpWGg8bgCr-", :text "|Found storage in", :by "root", :at 1517675491748} - "r" {:type :leaf, :by "root", :at 1517675497249, :text "filepath", :id "ryygNDQ8z"} - } - } - "r" { - :type :expr, :id "HJRWfgIZg0rZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkyzfl8-gAS-", :text "read-string", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rylffxLZlASW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkWfzeLWeRBb", :text "fs/readFileSync", :by "root", :at 1507813258199} - "j" {:type :leaf, :id "B1GfMl8bl0SZ", :text "filepath", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "H1XMGgIbxArW", :text "|utf8", :by "root", :at 1500541255553} - } - } - } - } - } - } - "v" {:type :leaf, :text "schema/database", :id "S1WJxPTh2-", :by "root", :at 1507804904026} - } - } - } - } - } - } - "main!" { - :type :expr, :id "ryC_We8ZlASb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "By1KbeIbl0SW", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BJxFZgUWe0SW", :text "main!", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "Sk-t-eUbgASZ", :by nil, :at 1500541255553 - :data {} - } - "v" { - :type :expr, :id "HyDtWeIZgCBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1_YWgLZlRrb", :text "run-server!", :by "root", :at 1500541255553} - "b" {:type :leaf, :text "proxy-dispatch!", :id "r1xWr9p2hb", :by "root", :at 1507829631644} - "j" { - :type :expr, :id "HJTK-l8bgCBW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HkCYZg8ZgArZ", :text ":port", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BJkc-l8-lAr-", :text "schema/configs", :by "root", :at 1500541255553} - } - } - } - } - "w" { - :type :expr, :id "H1XCZgLWlAS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ByE0bxLZl0HW", :text "render-loop!", :by "root", :at 1500541255553} - } - } - "y" { - :type :expr, :id "BJ3C-gIWlABb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJT0-xLWgCrZ", :text ".on", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r1RAZx8bx0Hb", :text "js/process", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "BkkJMlLZeAHb", :text "|SIGINT", :by "root", :at 1500541255553} - "v" {:type :leaf, :text "on-exit!", :id "Skelr1np23-", :by "root", :at 1507806173399} - } - } - } - } - "on-exit!" { - :type :expr, :id "r1gryn6hhZ", :by "root", :at 1507806173399 - :data { - "T" {:type :leaf, :text "defn", :id "rJZSy2T2n-", :by "root", :at 1507806175705} - "j" {:type :leaf, :text "on-exit!", :id "B1fHy2pnnb", :by "root", :at 1507806173399} - "v" { - :type :expr, :id "H1rrkn63h-", :by "root", :at 1507806173399 - :data { - "T" {:type :leaf, :text "code", :id "rk8rJh63nW", :by "root", :at 1507806173399} - } - } - "x" { - :type :expr, :id "rJ8ah6n3b", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ryOvZx8Ze0BW", :text "fs/writeFileSync", :by "root", :at 1507813248462} - "j" { - :type :expr, :id "HJFvWgUWeCH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ry5v-eIbgASW", :text ":storage-key", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJsDZgIWeABW", :text "schema/configs", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "Hk3wbxUbxRSb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJ6vZx8WeAS-", :text "pr-str", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SyRwZe8ZxRBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJ1_ZlIbxASb", :text "assoc", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rJwgBC22-", :by "root", :at 1507808495371 - :data { - "D" {:type :leaf, :text ":db", :id "HydxBC23-", :by "root", :at 1507808496848} - "T" {:type :leaf, :id "SJedbgIWg0Bb", :text "@*reel", :by "root", :at 1507808499554} - } - } - "r" {:type :leaf, :id "HJW_bx8WeCSZ", :text ":sessions", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "HkGOZlI-e0rb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJ7_Wg8-gABZ", :text "{}", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - "y" { - :type :expr, :id "HkKBJ2anhW", :by "root", :at 1507806173399 - :data { - "T" {:type :leaf, :text "println", :id "r1cH1nan3W", :by "root", :at 1507806173399} - "j" {:type :leaf, :text "|Saving file on exit:", :id "BJiSk26n2Z", :by "root", :at 1517675554347} - "n" { - :type :expr, :id "BJCM4wXIz", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ry5v-eIbgASW", :text ":storage-key", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJsDZgIWeABW", :text "schema/configs", :by "root", :at 1500541255553} - } - } - "r" {:type :leaf, :text "code", :id "SyhBknp22-", :by "root", :at 1507806173399} - } - } - "yT" { - :type :expr, :id "ry6rkhTh3b", :by "root", :at 1507806173399 - :data { - "T" {:type :leaf, :text ".exit", :id "BJRHk3pnhW", :by "root", :at 1507806173399} - "j" {:type :leaf, :text "js/process", :id "r11eSkha3nW", :by "root", :at 1507806173399} - } - } - } - } - "proxy-dispatch!" { - :type :expr, :id "Sy-uKDXTnb", :by "root", :at 1507829632115 - :data { - "T" {:type :leaf, :text "defn", :id "SyfOtvm62W", :by "root", :at 1507829632115} - "j" {:type :leaf, :text "proxy-dispatch!", :id "Bkmutvm63-", :by "root", :at 1507829632115} - "r" { - :type :expr, :id "HkNdFwX6hZ", :by "root", :at 1507829632115 - :data { - "T" {:type :leaf, :text "&", :id "HkgqKvXa3-", :by "root", :at 1507829635032} - "j" {:type :leaf, :text "args", :id "r1liKwQ6nW", :by "root", :at 1507829636851} - } - } - "t" {:type :leaf, :text "|Make dispatch hot relodable.", :id "B1tuqQa3-", :by "root", :at 1507830401982} - "v" { - :type :expr, :id "rJQaKPXahb", :by "root", :at 1507829637497 - :data { - "T" {:type :leaf, :text "apply", :id "rJQaKPXahbleaf", :by "root", :at 1507829639594} - "j" {:type :leaf, :text "dispatch!", :id "Hkgx5PmT2b", :by "root", :at 1507829640070} - "r" {:type :leaf, :text "args", :id "B1ZqwXThb", :by "root", :at 1507829641354} - } - } - } - } - "reload!" { - :type :expr, :id "SyV_WxUZlCSZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BkHOZxL-eRHb", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "H1LO-x8bxCrZ", :text "reload!", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "ByP_-xUblRHZ", :by nil, :at 1500541255553 - :data {} - } - "v" { - :type :expr, :id "Sk_O-xUZgAH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJFu-e8-lABZ", :text "println", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJ9u-lUbeABZ", :text "|Code updated.", :by "root", :at 1500541255553} - } - } - "w" { - :type :expr, :id "B1x-uS0nnW", :by "root", :at 1507808617377 - :data { - "T" {:type :leaf, :text "reset!", :id "B1x-uS0nnWleaf", :by "root", :at 1507808618991} - "j" {:type :leaf, :text "*reel", :id "rJfX_rR2hb", :by "root", :at 1507808620966} - "r" { - :type :expr, :id "B1IOrRnn-", :by "root", :at 1507808621613 - :data { - "T" {:type :leaf, :text "refresh-reel", :id "BkXHdSAhnZ", :by "root", :at 1507808630362} - "X" {:type :leaf, :text "@*reel", :id "HygJ5HR2nb", :by "root", :at 1507808655126} - "b" {:type :leaf, :text "initial-db", :id "HJSmYHR3hW", :by "root", :at 1507808637814} - "j" {:type :leaf, :text "updater", :id "HyzKBRnhb", :by "root", :at 1507808635015} - } - } - } - } - "x" { - :type :expr, :id "SksuZxUbxABW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H13dbl8ZgAB-", :text "sync-clients!", :by "root", :at 1507806907419} - "j" {:type :leaf, :id "S1aO-x8bxABZ", :text "@*reader-reel", :by "root", :at 1507829993436} - } - } - } - } - "render-loop!" { - :type :expr, :id "ry9MzxLZxAHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HksGfeIWx0Bb", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJhGfeIWeAHZ", :text "render-loop!", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "H1pzfgUZxRr-", :by nil, :at 1500541255553 - :data {} - } - "v" { - :type :expr, :id "BJCGfg8ZgRrb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Byy7MeU-e0Bb", :text "if", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "BJlR2dXahb", :by "root", :at 1507829942161 - :data { - "D" {:type :leaf, :text "not", :id "Skb0n_Xpnb", :by "root", :at 1507829942884} - "T" { - :type :expr, :id "rylQGeLbgArW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJb7zeUbx0Bb", :text "identical?", :by "root", :at 1507829941197} - "j" {:type :leaf, :id "HkzmGlIbe0SZ", :text "@*reader-reel", :by "root", :at 1507830005566} - "r" {:type :leaf, :text "@*reel", :id "BJfD04An2W", :by "root", :at 1507808466061} - } - } - } - } - "r" { - :type :expr, :id "SkNQzeIbgRS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJS7zgUZgRrb", :text "do", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HJ8QGlIWxRrZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Byw7zlIWxRSZ", :text "reset!", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "S1OmzeLZeRS-", :text "*reader-reel", :by "root", :at 1507829950396} - "r" {:type :leaf, :text "@*reel", :id "BJfD04An2W", :by "root", :at 1507808466061} - } - } - "v" { - :type :expr, :id "HkCQfg8-g0HZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H11NMgLZx0SZ", :text "sync-clients!", :by "root", :at 1507806914566} - "j" {:type :leaf, :id "H1e4fgLZeRH-", :text "@*reader-reel", :by "root", :at 1507829954052} - } - } - } - } - } - } - "x" { - :type :expr, :id "rJ-4Gl8bgCBW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SyfVzeIZlAH-", :text "js/setTimeout", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Sy7EMeIbeCSb", :text "render-loop!", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "H144flU-x0Hb", :text "300", :by "root", :at 1500541255553} - } - } - } - } - } - :proc { - :type :expr, :id "rJ5I-xLblCH-", :by nil, :at 1500541255553 - :data {} - } - } - "server.manager" { - :ns { - :type :expr, :by "root", :at 1517131192331, :id "B1le6BMjHf" - :data { - "T" {:type :leaf, :by "root", :at 1517131192331, :text "ns", :id "By-eTrfoHG"} - "j" {:type :leaf, :by "root", :at 1517131192331, :text "server.manager", :id "S1fl6SfoHG"} - "r" { - :type :expr, :by "root", :at 1517154283029, :id "rkQxe_sHG" - :data { - "T" {:type :leaf, :by "root", :at 1517154284516, :text ":require", :id "r1eGgldsSf"} - "b" { - :type :expr, :by "root", :at 1517195661464, :id "H1bS9bf2Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517195662125, :text "[]", :id "H1bS9bf2Bfleaf"} - "j" {:type :leaf, :by "root", :at 1517195665076, :text "verbosely.core", :id "Skb85WzhBM"} - "r" {:type :leaf, :by "root", :at 1517195665890, :text ":refer", :id "B1Ntc-M3Bf"} - "v" { - :type :expr, :by "root", :at 1517195666331, :id "ryEccbz3rG" - :data { - "T" {:type :leaf, :by "root", :at 1517195666654, :text "[]", :id "HkQcqWG3Bz"} - "j" {:type :leaf, :by "root", :at 1517195667924, :text "log!", :id "rkZj5ZMnSM"} - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517154284837, :id "SklBgeuiBf" - :data { - "T" {:type :leaf, :by "root", :at 1517154287282, :text "[]", :id "SySgg_jrf"} - "j" {:type :leaf, :by "root", :at 1517154289811, :text "|child_process", :id "BJQPgedorz"} - "r" {:type :leaf, :by "root", :at 1517154290934, :text ":as", :id "SkWceeujSz"} - "v" {:type :leaf, :by "root", :at 1517154291388, :text "cp", :id "B1MsgldoHz"} - } - } - } - } - } - } - :defs { - "*registry" { - :type :expr, :by "root", :at 1517131200611, :id "SyxKaSGirM" - :data { - "T" {:type :leaf, :by "root", :at 1517131205223, :text "defonce", :id "rkZKaSzoHG"} - "j" {:type :leaf, :by "root", :at 1517131200611, :text "*registry", :id "ByzKpBGsrf"} - "r" { - :type :expr, :by "root", :at 1517131200611, :id "S1mtaHfirz" - :data { - "T" {:type :leaf, :by "root", :at 1517131207626, :text "atom", :id "Syg10HziHz"} - "j" { - :type :expr, :by "root", :at 1517131208317, :id "rkQlRrGiSz" - :data { - "T" {:type :leaf, :by "root", :at 1517131208672, :text "{}", :id "ryGeCHGsSf"} - } - } - } - } - } - } - "create-process!" { - :type :expr, :by "root", :at 1517131225750, :id "SklMk8Gorz" - :data { - "T" {:type :leaf, :by "root", :at 1517131225750, :text "defn", :id "SJWzyUMjSz"} - "j" {:type :leaf, :by "root", :at 1517131225750, :text "create-process!", :id "Skfz18zoSz"} - "r" { - :type :expr, :by "root", :at 1517131225750, :id "HJmzkUMjHG" - :data { - "j" {:type :leaf, :by "root", :at 1517196226668, :text "op-data", :id "BJuJIGsBz"} - "r" {:type :leaf, :by "root", :at 1517153836448, :text "dispatch!", :id "HyeZ4RviSG"} - } - } - "v" { - :type :expr, :by "root", :at 1517153838260, :id "H1lUERDiBz" - :data { - "T" {:type :leaf, :by "root", :at 1517154308389, :text "let", :id "H1lUERDiBzleaf"} - "j" { - :type :expr, :by "root", :at 1517154309833, :id "HyRbeOiSM" - :data { - "D" { - :type :expr, :by "root", :at 1517196229176, :id "BJgppXG2BG" - :data { - "T" {:type :leaf, :by "root", :at 1517196231094, :text "command", :id "BJgppXG2BGleaf"} - "j" { - :type :expr, :by "root", :at 1517196231293, :id "HJL1CXGhBz" - :data { - "T" {:type :leaf, :by "root", :at 1517196233449, :text ":command", :id "Byr10Qf3rz"} - "j" {:type :leaf, :by "root", :at 1517196234336, :text "op-data", :id "S1vZ0QfnHG"} - } - } - } - } - "L" { - :type :expr, :by "root", :at 1517196235108, :id "rylmRQGnSG" - :data { - "T" {:type :leaf, :by "root", :at 1517196238833, :text "cwd", :id "rylmRQGnSGleaf"} - "j" { - :type :expr, :by "root", :at 1517196239816, :id "H1gdRXz3SG" - :data { - "T" {:type :leaf, :by "root", :at 1517196240815, :text ":cwd", :id "BJ_A7fhrG"} - "j" {:type :leaf, :by "root", :at 1517196242457, :text "op-data", :id "H1WFAXzhrf"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517154310138, :id "B1lCZgOiSf" - :data { - "T" {:type :leaf, :by "root", :at 1517154311704, :text "proc", :id "rkTblOiBG"} - "j" { - :type :expr, :by "root", :at 1517154312163, :id "HkMxfgOiBz" - :data { - "T" {:type :leaf, :by "root", :at 1517154313929, :text ".exec", :id "rkWgfx_sBf"} - "j" {:type :leaf, :by "root", :at 1517154314586, :text "cp", :id "r1MMGldjBz"} - "r" {:type :leaf, :by "root", :at 1517154318887, :text "command", :id "Bk4MxdoSz"} - "v" { - :type :expr, :by "root", :at 1517196247995, :id "ByxgkVGhrf" - :data { - "T" {:type :leaf, :by "root", :at 1517196251063, :text "clj->js", :id "Bkxk4MnHG"} - "j" { - :type :expr, :by "root", :at 1517196251656, :id "S14y4fhrG" - :data { - "T" {:type :leaf, :by "root", :at 1517196252012, :text "{}", :id "SJZXkNGnrf"} - "j" { - :type :expr, :by "root", :at 1517196252237, :id "rk7Vk4fhrz" - :data { - "T" {:type :leaf, :by "root", :at 1517196255093, :text ":cwd", :id "Syz4yNGnSf"} - "j" {:type :leaf, :by "root", :at 1517196256951, :text "cwd", :id "Hy_1VMhBz"} - } - } - } - } - } - } - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517196058402, :id "r1xMQQG3HG" - :data { - "T" {:type :leaf, :by "root", :at 1517196059116, :text "pid", :id "r1xMQQG3HGleaf"} - "r" {:type :leaf, :by "root", :at 1517196062456, :text "proc.pid", :id "rk-4QXG3Sz"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517154320858, :id "r1lFMeuoSf" - :data { - "T" {:type :leaf, :by "root", :at 1517154330749, :text "swap!", :id "r1lFMeuoSfleaf"} - "j" {:type :leaf, :by "root", :at 1517155189756, :text "*registry", :id "rklmQgOsrz"} - "r" {:type :leaf, :by "root", :at 1517154335492, :text "assoc", :id "ryMUQg_iBM"} - "v" {:type :leaf, :by "root", :at 1517196065814, :text "pid", :id "r1_XeuorM"} - "x" {:type :leaf, :by "root", :at 1517154341190, :text "proc", :id "SJjmxOiBz"} - } - } - "v" { - :type :expr, :by "root", :at 1517154343096, :id "SkkEluoHG" - :data { - "T" {:type :leaf, :by "root", :at 1517154347178, :text "dispatch!", :id "SkkEluoHGleaf"} - "j" {:type :leaf, :by "root", :at 1517154355347, :text ":process/create", :id "r1NElusrz"} - "r" { - :type :expr, :by "root", :at 1517154359497, :id "SklyredsBf" - :data { - "T" {:type :leaf, :by "root", :at 1517154361592, :text "{}", :id "HykBg_jBM"} - "j" { - :type :expr, :by "root", :at 1517154361891, :id "ryfzHg_orf" - :data { - "T" {:type :leaf, :by "root", :at 1517154365317, :text ":pid", :id "S1WzSgusrG"} - "j" {:type :leaf, :by "root", :at 1517196296424, :text "pid", :id "BJbrSx_sHG"} - } - } - "r" { - :type :expr, :by "root", :at 1517154372442, :id "rkM3reOiHf" - :data { - "T" {:type :leaf, :by "root", :at 1517154376677, :text ":command", :id "rkM3reOiHfleaf"} - "j" {:type :leaf, :by "root", :at 1517154379536, :text "command", :id "HkbZUxOorf"} - } - } - "v" { - :type :expr, :by "root", :at 1517154380009, :id "r1bVIgdiSM" - :data { - "T" {:type :leaf, :by "root", :at 1517196306648, :text ":cwd", :id "r1bVIgdiSMleaf"} - "j" {:type :leaf, :by "root", :at 1517196307782, :text "cwd", :id "ByZif4z2Sf"} - } - } - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517154393463, :id "B1e-vl_jrM" - :data { - "T" {:type :leaf, :by "root", :at 1517154394313, :text ".on", :id "B1e-vl_jrMleaf"} - "j" {:type :leaf, :by "root", :at 1517154396171, :text "proc", :id "H1mDguoSG"} - "r" {:type :leaf, :by "root", :at 1517154400204, :text "|exit", :id "BJVVDx_sBG"} - "v" { - :type :expr, :by "root", :at 1517154401528, :id "Bk5DgOorG" - :data { - "T" {:type :leaf, :by "root", :at 1517154402069, :text "fn", :id "S1gKPgOjSM"} - "j" { - :type :expr, :by "root", :at 1517154410191, :id "rkef_g_jrz" - :data { - "T" {:type :leaf, :by "root", :at 1517154410865, :text "event", :id "SJMOeOiSM"} - } - } - "r" { - :type :expr, :by "root", :at 1517154411467, :id "Hk4mOxOorf" - :data { - "T" {:type :leaf, :by "root", :at 1517154415428, :text "dispatch!", :id "Hk4mOxOorfleaf"} - "j" {:type :leaf, :by "root", :at 1517154423432, :text ":process/finish", :id "Hyu_edirf"} - "r" {:type :leaf, :by "root", :at 1517197149968, :text "pid", :id "BylWqx_jBz"} - } - } - } - } - } - } - "xT" { - :type :expr, :by "root", :at 1517559353170, :id "SkgbrAcZIf" - :data { - "T" {:type :leaf, :by "root", :at 1517559355189, :text ".on", :id "SkgbrAcZIfleaf"} - "j" {:type :leaf, :by "root", :at 1517560119211, :text "proc", :id "SkG7SR9bUz"} - "r" {:type :leaf, :by "root", :at 1517559400728, :text "|error", :id "rkQBH05Z8f"} - "v" { - :type :expr, :by "root", :at 1517559359046, :id "SylDHCcWIM" - :data { - "T" {:type :leaf, :by "root", :at 1517559359513, :text "fn", :id "SkvSRcbLz"} - "j" { - :type :expr, :by "root", :at 1517559359768, :id "SyeurR5b8M" - :data { - "T" {:type :leaf, :by "root", :at 1517559360389, :text "event", :id "HyuBC9b8G"} - } - } - "r" { - :type :expr, :by "root", :at 1517559360853, :id "H1gFSAq-LG" - :data { - "T" {:type :leaf, :by "root", :at 1517559363251, :text "dispatch!", :id "H1gFSAq-LGleaf"} - "j" {:type :leaf, :by "root", :at 1517559365845, :text ":process/error", :id "S1MsrA5ZLz"} - "r" { - :type :expr, :by "root", :at 1517559392484, :id "HJzOw0qbUf" - :data { - "T" {:type :leaf, :by "root", :at 1517559392818, :text "[]", :id "SybuDRqb8G"} - "j" {:type :leaf, :by "root", :at 1517559393807, :text "pid", :id "S1ZKPAqW8G"} - "r" { - :type :expr, :by "root", :at 1517560034310, :id "rJcJbiW8f" - :data { - "T" {:type :leaf, :by "root", :at 1517560036016, :text "str", :id "SJ-cPR9b8G"} - "j" {:type :leaf, :by "root", :at 1517560038847, :text "event", :id "rJf3kZjbLz"} - } - } - } - } - } - } - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517154444957, :id "HkSclOjBG" - :data { - "T" {:type :leaf, :by "root", :at 1517154445470, :text ".on", :id "HkSclOjBGleaf"} - "j" {:type :leaf, :by "root", :at 1517154458081, :text "proc.stdout", :id "SkQ39gOjBG"} - "r" {:type :leaf, :by "root", :at 1517154466073, :text "|data", :id "rymogujSG"} - "v" { - :type :expr, :by "root", :at 1517154468237, :id "Hk-nsg_jHf" - :data { - "T" {:type :leaf, :by "root", :at 1517154466958, :text "fn", :id "r1x9oedjSz"} - "j" { - :type :expr, :by "root", :at 1517154469646, :id "rJRsgujBz" - :data { - "T" {:type :leaf, :by "root", :at 1517154501129, :text "data", :id "H1GhixOoHG"} - } - } - "r" { - :type :expr, :by "root", :at 1517154472482, :id "SkZl2ldsrM" - :data { - "T" {:type :leaf, :by "root", :at 1517154502685, :text "dispatch!", :id "SkZl2ldsrMleaf"} - "j" {:type :leaf, :by "root", :at 1517154709757, :text ":process/stdout", :id "HkxyRg_iHf"} - "r" { - :type :expr, :by "root", :at 1517560044383, :id "H1-VgZjZUM" - :data { - "T" {:type :leaf, :by "root", :at 1517560044809, :text "[]", :id "SyxNxWjbLf"} - "j" {:type :leaf, :by "root", :at 1517560045594, :text "pid", :id "HyZSxbsb8G"} - "r" {:type :leaf, :by "root", :at 1517560046248, :text "data", :id "HJxLgWiZLf"} - } - } - } - } - } - } - } - } - "yT" { - :type :expr, :by "root", :at 1517154531892, :id "Skx2kbusrM" - :data { - "T" {:type :leaf, :by "root", :at 1517154532823, :text ".on", :id "Skx2kbusrMleaf"} - "j" {:type :leaf, :by "root", :at 1517154536476, :text "proc.stderr", :id "Hybpyb_sSG"} - "r" {:type :leaf, :by "root", :at 1517154538777, :text "|data", :id "Skbl-_sBM"} - "v" { - :type :expr, :by "root", :at 1517154541698, :id "BJeLlZOiBz" - :data { - "T" {:type :leaf, :by "root", :at 1517154542909, :text "fn", :id "B1HxWuirG"} - "j" { - :type :expr, :by "root", :at 1517154543143, :id "rJQDxW_iBf" - :data { - "T" {:type :leaf, :by "root", :at 1517154543649, :text "data", :id "SJMvlZOjrz"} - } - } - "r" { - :type :expr, :by "root", :at 1517154544008, :id "rkGOebOsrf" - :data { - "T" {:type :leaf, :by "root", :at 1517154545829, :text "dispatch!", :id "rkGOebOsrfleaf"} - "j" {:type :leaf, :by "root", :at 1517154713615, :text ":process/stderr", :id "Sylcx-diHM"} - "r" { - :type :expr, :by "root", :at 1517560050926, :id "ryix-s-Uz" - :data { - "D" {:type :leaf, :by "root", :at 1517560054275, :text "[]", :id "ry0xWo-LM"} - "T" {:type :leaf, :by "root", :at 1517560051521, :text "pid", :id "HJ-qgbobLM"} - "j" {:type :leaf, :by "root", :at 1517560052730, :text "data", :id "BkehlbjW8f"} - } - } - } - } - } - } - } - } - } - } - } - } - "kill-process!" { - :type :expr, :by "root", :at 1517154607104, :id "BJMvE-doSG" - :data { - "T" {:type :leaf, :by "root", :at 1517154607104, :text "defn", :id "SyQvNZuorf"} - "j" {:type :leaf, :by "root", :at 1517154607104, :text "kill-process!", :id "SJ4PVZ_oSM"} - "r" { - :type :expr, :by "root", :at 1517154607104, :id "B1SPN-Ojrf" - :data { - "T" {:type :leaf, :by "root", :at 1517154611644, :text "pid", :id "BJZcNbuirz"} - "j" {:type :leaf, :by "root", :at 1517154615557, :text "dispatch!", :id "BJ0VZdsrM"} - } - } - "v" { - :type :expr, :by "root", :at 1517154616126, :id "B1ZxB-_iBG" - :data { - "T" {:type :leaf, :by "root", :at 1517154626751, :text "let", :id "B1ZxB-_iBGleaf"} - "j" { - :type :expr, :by "root", :at 1517154627267, :id "SJ7jBZdiHf" - :data { - "T" { - :type :expr, :by "root", :at 1517154628247, :id "Skl3rWOsSG" - :data { - "T" {:type :leaf, :by "root", :at 1517154629064, :text "proc", :id "ByMiSWujHG"} - "j" { - :type :expr, :by "root", :at 1517154629728, :id "ryeRHZ_oBf" - :data { - "T" {:type :leaf, :by "root", :at 1517154631612, :text "get", :id "ByCSbujHM"} - "j" {:type :leaf, :by "root", :at 1517154638976, :text "@*registry", :id "HkZL-djrf"} - "r" {:type :leaf, :by "root", :at 1517154644149, :text "pid", :id "rynL-diHz"} - } - } - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517154645788, :id "HkCLb_srG" - :data { - "T" {:type :leaf, :by "root", :at 1517154646934, :text "if", :id "HkCLb_srGleaf"} - "j" { - :type :expr, :by "root", :at 1517154647367, :id "ry7kwZOirz" - :data { - "T" {:type :leaf, :by "root", :at 1517154649452, :text "some?", :id "Hyzkv-_iBf"} - "j" {:type :leaf, :by "root", :at 1517154651622, :text "proc", :id "H1MvZOorz"} - } - } - "r" { - :type :expr, :by "root", :at 1517154656721, :id "rkKvWuorM" - :data { - "D" {:type :leaf, :by "root", :at 1517154657375, :text "do", :id "rkxFP-dsSG"} - "T" { - :type :expr, :by "root", :at 1517154652850, :id "H1rvbdjBz" - :data { - "T" {:type :leaf, :by "root", :at 1517154654360, :text ".kill", :id "H1rvbdjBzleaf"} - "j" {:type :leaf, :by "root", :at 1517154655872, :text "proc", :id "BJPv-ujSz"} - } - } - "j" { - :type :expr, :by "root", :at 1517154658399, :id "BJg5DbdoSf" - :data { - "T" {:type :leaf, :by "root", :at 1517154661216, :text "swap!", :id "BJg5DbdoSfleaf"} - "b" {:type :leaf, :by "root", :at 1517154667005, :text "*registry", :id "HJxydWOiHf"} - "j" {:type :leaf, :by "root", :at 1517154662692, :text "dissoc", :id "SJCDWOjrz"} - "r" {:type :leaf, :by "root", :at 1517154668463, :text "pid", :id "r1Nd-djBM"} - } - } - "r" { - :type :expr, :by "root", :at 1517154669341, :id "B1gHdWOorM" - :data { - "T" {:type :leaf, :by "root", :at 1517154674391, :text "dispatch!", :id "B1gHdWOorMleaf"} - "j" {:type :leaf, :by "root", :at 1517154679535, :text ":process/kill", :id "rJsuWuoSf"} - "r" {:type :leaf, :by "root", :at 1517154689831, :text "pid", :id "ByOFWOorM"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517154669341, :id "rkhBS_2rG" - :data { - "T" {:type :leaf, :by "root", :at 1517154674391, :text "dispatch!", :id "B1gHdWOorMleaf"} - "j" {:type :leaf, :by "root", :at 1517154679535, :text ":process/kill", :id "rJsuWuoSf"} - "r" {:type :leaf, :by "root", :at 1517154689831, :text "pid", :id "ByOFWOorM"} - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517131192331, :id "ryQxaBfjSf" - :data {} - } - } - "server.network" { - :ns { - :type :expr, :id "SysVGxUWe0rb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJnNflIZxCBb", :text "ns", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "S1pEfg8ZeCrW", :text "server.network", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "H1R4MlIbeCBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJ1Hzx8-xRBb", :text ":require", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rklrGxL-eCrW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJbHGe8be0S-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJMrMxU-eCr-", :text "cljs.nodejs", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "B17rMlLZeRS-", :text ":as", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "Sk4BMxLbeASb", :text "nodejs", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "r1BrMgIWeAr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkLrGe8ZlRH-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rkvrfl8ZeCSb", :text "cljs.reader", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "rJuSMgIWe0BW", :text ":as", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "ByFHMlI-lRrZ", :text "reader", :by "root", :at 1500541255553} - } - } - "x" { - :type :expr, :id "BkMIfxUZgAHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1m8MgUZlCrW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJELzeU-e0r-", :text "server.twig.container", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "S1HIMg8ZlRSZ", :text ":refer", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "rJ8IMl8beCBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1D8fxIWxCrb", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "B1_UGlLWgAH-", :text "twig-container", :by "root", :at 1500541255553} - } - } - } - } - "y" { - :type :expr, :id "Hyt8zxIWlABW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1qUGgUbl0rW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HkoLGx8WlABZ", :text "recollect.diff", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "Hy3UMlIWeRBW", :text ":refer", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "r1T8zeLZgRHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkAIGlIWe0rW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJkvfeUbl0rZ", :text "diff-twig", :by "root", :at 1511004310103} - } - } - } - } - "yT" { - :type :expr, :id "HJePGgUbe0Bb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkZPMgLbxCrW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Byfvfe8WlRHZ", :text "recollect.twig", :by "root", :at 1511004290065} - "r" {:type :leaf, :id "HJXvfgIWlCrb", :text ":refer", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "H1VvGxLWe0Bb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BkHwGxUZeCBZ", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SyLvGl8ZeArb", :text "render-twig", :by "root", :at 1511004292866} - } - } - } - } - "yb" { - :type :expr, :id "Hy-FJbC3n-", :by "root", :at 1507807457369 - :data { - "T" {:type :leaf, :text "[]", :id "Hy-FJbC3n-leaf", :by "root", :at 1507807457889} - "j" {:type :leaf, :text "server.util", :id "SJbqk-Rn3-", :by "root", :at 1507807459885} - "r" {:type :leaf, :text ":refer", :id "BJG2yZA3hW", :by "root", :at 1507807460814} - "v" { - :type :expr, :id "r1Qpy-R33Z", :by "root", :at 1507807461089 - :data { - "T" {:type :leaf, :text "[]", :id "rJza1ZAnhZ", :by "root", :at 1507807461372} - "j" {:type :leaf, :text "log-js!", :id "rkI61ZCh2-", :by "root", :at 1507807462952} - } - } - } - } - "yj" { - :type :expr, :id "B1y7Y63nb", :by "root", :at 1507805462557 - :data { - "T" {:type :leaf, :text "[]", :id "B1y7Y63nbleaf", :by "root", :at 1507805463132} - "j" {:type :leaf, :text "|shortid", :id "Skz1mYphh-", :by "root", :at 1507805465580} - "r" {:type :leaf, :text ":as", :id "r1lf7tahn-", :by "root", :at 1507805487329} - "v" {:type :leaf, :text "shortid", :id "S1mI7t6h3b", :by "root", :at 1507805472378} - } - } - "yr" { - :type :expr, :id "H1g0EFT32-", :by "root", :at 1507805494357 - :data { - "T" {:type :leaf, :text "[]", :id "H1g0EFT32-leaf", :by "root", :at 1507805494722} - "j" {:type :leaf, :text "|uws", :id "HkZJrFahhW", :by "root", :at 1517219469713} - "r" {:type :leaf, :text ":as", :id "SkW-BYannZ", :by "root", :at 1507805499275} - "v" {:type :leaf, :text "ws", :id "S1VXHKTnnW", :by "root", :at 1517219467815} - } - } - } - } - } - } - :defs { - "*registry" { - :type :expr, :id "SJZ_GeUWxCH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1Gdfe8WxABZ", :text "defonce", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "B1XOMxLbgCH-", :text "*registry", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "B1NuzlIblCrW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJH_zeUbl0SZ", :text "atom", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "ByLOfg8ZlASZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ByDufeU-eCr-", :text "{}", :by "root", :at 1500541255553} - } - } - } - } - } - } - "client-caches" { - :type :expr, :id "S1VrmlLWxAr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HyrB7gIWeCrb", :text "defonce", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "S1UH7xLWl0BZ", :text "client-caches", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "BkvBXg8bxABW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1OBmxIWlAH-", :text "atom", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rkFH7l8bl0Bb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rk5SXeI-x0BW", :text "{}", :by "root", :at 1500541255553} - } - } - } - } - } - } - "run-server!" { - :type :expr, :id "B1OOMlL-l0r-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HytOfeUZlCBb", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Hk9_GeUbe0r-", :text "run-server!", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "rJj_GeI-lASZ", :by nil, :at 1500541255553 - :data { - "D" {:type :leaf, :text "on-action!", :id "r1lVBqp3n-", :by "root", :at 1507806727761} - "T" {:type :leaf, :id "By3dzxL-l0H-", :text "port", :by "root", :at 1507806349085} - } - } - "v" { - :type :expr, :id "SJpdGl8WlRrZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJAuMgLZe0BW", :text "let", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SykYMxUbg0HW", :by nil, :at 1500541255553 - :data { - "D" { - :type :expr, :id "HkuLt6nhb", :by "root", :at 1507805519742 - :data { - "T" {:type :leaf, :text "WebSocketServer", :id "HkuLt6nhbleaf", :by "root", :at 1507805526726} - "j" { - :type :expr, :id "ByGyDKTn2b", :by "root", :at 1507805527021 - :data { - "T" {:type :leaf, :text ".-Server", :id "HJZ1PFp33W", :by "root", :at 1507805531943} - "j" {:type :leaf, :text "ws", :id "H1MEwK623-", :by "root", :at 1507805532663} - } - } - } - } - "T" { - :type :expr, :id "BketzxLZg0Hb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkWFfgLbe0BZ", :text "wss", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "S1fKMl8WgASW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkQYzlIZxCSZ", :text "new", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJ4tGlUZlRHb", :text "WebSocketServer", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "rJStzlL-gRHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkItGx8WlAB-", :text "js-obj", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SyPYfxL-e0BW", :text "|port", :by "root", :at 1500541255553} - "r" {:type :leaf, :text "port", :id "Skx-ch6h2b", :by "root", :at 1507806346657} - } - } - } - } - } - } - } - } - "n" { - :type :expr, :by "root", :at 1517674913015, :id "r1eKoZP7LG" - :data { - "T" {:type :leaf, :by "root", :at 1517674914800, :text "println", :id "r1eKoZP7LGleaf"} - "j" {:type :leaf, :by "root", :at 1517675688639, :text "|Listening on", :id "HymioWD78M"} - "r" {:type :leaf, :by "root", :at 1517674924616, :text "port", :id "Sk7hWPmIf"} - "v" {:type :leaf, :by "root", :at 1517675670772, :text "|. Connect with: http://repo.mvc-works.org/termina", :id "Hylr_VvQUz"} - } - } - "r" { - :type :expr, :id "rkoKGlIZxAr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJ2YGgIbeRS-", :text ".on", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SyaYfe8beAHZ", :text "wss", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SkRYzlLZxCHb", :text "|connection", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "SyJcMxLWlRS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1e5MeLWlRHW", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HJb9fl8bgCHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJM5fxU-xAH-", :text "socket", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "ryQ9fxLZlRBZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1N9zlIWxArZ", :text "let", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "H1r5fxLbl0HW", :by nil, :at 1500541255553 - :data { - "T" { - :type :expr, :id "r1UqGeUWx0S-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SyPczeIblCH-", :text "sid", :by "root", :at 1507806792850} - "j" { - :type :expr, :id "S1OcMgUZgRr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HkY9MlIbeAHZ", :text ".generate", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJ95fg8bx0H-", :text "shortid", :by "root", :at 1500541255553} - } - } - } - } - } - } - "r" { - :type :expr, :id "r1j9fx8blCr-", :by nil, :at 1500541255553 - :data { - "b" {:type :leaf, :text "on-action!", :id "SyhO9ah2W", :by "root", :at 1507806729909} - "j" {:type :leaf, :id "S1p9MeUblCBW", :text ":session/connect", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "BkC5MxUbgArW", :text "nil", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "r1kjMgLZgCB-", :text "sid", :by "root", :at 1513612500265} - } - } - "v" { - :type :expr, :id "SyxiGgLWgCHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1-izxLZlRHZ", :text "swap!", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "H1fsGx8-xRHZ", :text "*registry", :by "root", :at 1507830851867} - "r" {:type :leaf, :id "BkmiGxUblArb", :text "assoc", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "BkVsfgL-lCBb", :text "sid", :by "root", :at 1507806789387} - "x" {:type :leaf, :id "ryBiMlL-eASW", :text "socket", :by "root", :at 1500541255553} - } - } - "x" { - :type :expr, :id "S1LiMgUWe0SZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HyDjfgU-lArW", :text ".info", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Hydofe8blRBW", :text "js/console", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "BkYjzlUbgCr-", :text "|New client.", :by "root", :at 1500541255553} - } - } - "y" { - :type :expr, :id "rycjzlIZe0Bb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1oiMxL-eRHW", :text ".on", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Sk2sGeUZeABb", :text "socket", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "rJpizgUbxCBW", :text "|message", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "rkAife8ZxABZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1knzxI-l0rZ", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SJx3GlUZeCrb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1W2MxL-g0SZ", :text "rawData", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "HkG2zlLZgAB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ryQ2zxLblRrZ", :text "let", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HJ4hzxI-g0H-", :by nil, :at 1500541255553 - :data { - "T" { - :type :expr, :id "H1rhfgLZgAHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Hk8nzxUZeABZ", :text "action", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rkvhfxU-lAHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Sy_nMl8bgCB-", :text "reader/read-string", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r1KhGgUblCrZ", :text "rawData", :by "root", :at 1500541255553} - } - } - } - } - "j" { - :type :expr, :id "ry9nzlU-xRrZ", :by nil, :at 1500541255553 - :data { - "T" { - :type :expr, :id "Hys2GlL-g0rZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ryh3GxL-g0BW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BkpnzxLWg0BZ", :text "op", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SkCnGeLWgCS-", :text "op-data", :by "root", :at 1500541255553} - } - } - "j" {:type :leaf, :id "BJJTfeIZgABb", :text "action", :by "root", :at 1500541255553} - } - } - } - } - "r" { - :type :expr, :id "HJxTzxL-lCBb", :by nil, :at 1500541255553 - :data { - "b" {:type :leaf, :text "on-action!", :id "BklZFqa3hW", :by "root", :at 1507806722555} - "j" {:type :leaf, :id "Skz6feLWeABb", :text "op", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "Sk7TGxUblRBW", :text "op-data", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "HkNpGg8-e0rW", :text "sid", :by "root", :at 1513612505390} - } - } - } - } - } - } - } - } - "yT" { - :type :expr, :id "HJr6MgI-xAr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1LTMe8ZeCHb", :text ".on", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BJD6zxU-lRS-", :text "socket", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "B1daGgLWg0r-", :text "|close", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "Byt6fl8-gRHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S19pfeU-gArZ", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rJoTMlI-l0SZ", :by nil, :at 1500541255553 - :data {} - } - "r" { - :type :expr, :id "By3TMxU-xAr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ry66zl8Zg0Hb", :text ".warn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BJATfe8-lABZ", :text "js/console", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "BkyAfx8ZeCSZ", :text "|Client closed!", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "HJlAzeLWeCr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkWRGeU-e0Hb", :text "swap!", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "S1fAfl8ZeArb", :text "*registry", :by "root", :at 1507830854556} - "r" {:type :leaf, :id "S1mCGeIWxRHZ", :text "dissoc", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "r14AzgLZlAHZ", :text "sid", :by "root", :at 1507806798275} - } - } - "x" { - :type :expr, :id "BJBCfeI-e0rb", :by nil, :at 1500541255553 - :data { - "b" {:type :leaf, :text "on-action!", :id "SygXK9633-", :by "root", :at 1507806724735} - "j" {:type :leaf, :id "rJP0MlLZe0S-", :text ":session/disconnect", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SJ_AGlIWe0r-", :text "nil", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "H1FCfeL-gAHb", :text "sid", :by "root", :at 1507806785919} - } - } - } - } - } - } - "yj" { - :type :expr, :by "root", :at 1517151562786, :id "Hke7LBworG" - :data { - "T" {:type :leaf, :by "root", :at 1517151563388, :text ".on", :id "Hke7LBworGleaf"} - "j" {:type :leaf, :by "root", :at 1517151564595, :text "socket", :id "B14LrworG"} - "r" {:type :leaf, :by "root", :at 1517151568228, :text "|error", :id "r1lH8rDiBz"} - "v" { - :type :expr, :by "root", :at 1517151572344, :id "SknUHPirG" - :data { - "T" {:type :leaf, :by "root", :at 1517151572714, :text "fn", :id "rJ-jISviHG"} - "j" { - :type :expr, :by "root", :at 1517151573077, :id "ryM68SPiBM" - :data { - "T" {:type :leaf, :by "root", :at 1517151583618, :text "event", :id "H1PvrwoHG"} - } - } - "r" { - :type :expr, :by "root", :at 1517151573925, :id "ByCIHvirf" - :data { - "T" {:type :leaf, :by "root", :at 1517151577330, :text ".error", :id "ByCIHvirfleaf"} - "j" {:type :leaf, :by "root", :at 1517151585971, :text "js/console", :id "rkGwBvsrG"} - "r" {:type :leaf, :by "root", :at 1517151586694, :text "event", :id "HJB5vBwsBG"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "sync-clients!" { - :type :expr, :id "B1jCGxL-gRrW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1nAfeLblCrW", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HkaRMx8WxCrZ", :text "sync-clients!", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "Hk0CGgLbgASW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJ11Qx8beRS-", :text "reel", :by "root", :at 1507829969369} - } - } - "v" { - :type :expr, :id "Sko0dXp3-", :by "root", :at 1507829970590 - :data { - "D" {:type :leaf, :text "let", :id "SyxjC_mpnZ", :by "root", :at 1507829971355} - "L" { - :type :expr, :id "SJnRuQTh-", :by "root", :at 1507829971641 - :data { - "T" { - :type :expr, :id "Bye30_XahW", :by "root", :at 1507829971794 - :data { - "T" {:type :leaf, :text "db", :id "SJVjC_mp2b", :by "root", :at 1507829972179} - "j" { - :type :expr, :id "BJARuQThb", :by "root", :at 1507829973720 - :data { - "T" {:type :leaf, :text ":db", :id "H1X3Rd7p2W", :by "root", :at 1507829974499} - "j" {:type :leaf, :text "reel", :id "By1yFQa3-", :by "root", :at 1507829975266} - } - } - } - } - "j" { - :type :expr, :id "BJxSkFm6hZ", :by "root", :at 1507829980965 - :data { - "T" {:type :leaf, :text "records", :id "BJxSkFm6hZleaf", :by "root", :at 1507829983502} - "j" { - :type :expr, :id "BkxdJKmp2-", :by "root", :at 1507829983921 - :data { - "T" {:type :leaf, :text ":records", :id "rydkYQ62b", :by "root", :at 1507829985396} - "j" {:type :leaf, :text "reel", :id "rJUKyYQ63-", :by "root", :at 1507829986399} - } - } - } - } - } - } - "T" { - :type :expr, :id "Hyg17eL-x0B-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJWyXlLWlRSb", :text "doseq", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "S1M5dNPBMz", :by "root", :at 1513612402509 - :data { - "T" { - :type :expr, :id "ByGkmlL-lABZ", :by nil, :at 1500541255553 - :data { - "j" {:type :leaf, :id "HJE1QeLWeRBb", :text "sid", :by "root", :at 1507830954060} - "r" { - :type :expr, :id "S1HJXxUWeASW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1L17lIWgCrZ", :text "keys", :by "root", :at 1507830789091} - "j" {:type :leaf, :id "H1wkXl8ZeArZ", :text "@*registry", :by "root", :at 1507830830231} - } - } - } - } - } - } - "r" { - :type :expr, :id "Bkdk7g8WeRrW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rytkQgU-e0rZ", :text "let", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "r19k7xUWeCBW", :by nil, :at 1500541255553 - :data { - "D" { - :type :expr, :id "Hye5hnQ63Z", :by "root", :at 1507830961909 - :data { - "T" {:type :leaf, :text "session-id", :id "Hye5hnQ63Zleaf", :by "root", :at 1507830964063} - "j" {:type :leaf, :text "sid", :id "HJG2h37anW", :by "root", :at 1507830965168} - } - } - "L" { - :type :expr, :id "HkxJ6276h-", :by "root", :at 1507830967191 - :data { - "T" {:type :leaf, :text "session", :id "HkxJ6276h-leaf", :by "root", :at 1507830970328} - "j" { - :type :expr, :id "S1lQphX62W", :by "root", :at 1507830971031 - :data { - "T" {:type :leaf, :text "get-in", :id "BJ7a2QahW", :by "root", :at 1507830971990} - "j" {:type :leaf, :text "db", :id "H17V63Q6nW", :by "root", :at 1507830974986} - "r" { - :type :expr, :id "rkd62Q63Z", :by "root", :at 1507830975545 - :data { - "T" {:type :leaf, :text "[]", :id "ry-Pp2m6hZ", :by "root", :at 1507830975901} - "j" {:type :leaf, :text ":sessions", :id "Byz_T2XT2Z", :by "root", :at 1507830977421} - "r" {:type :leaf, :text "sid", :id "B19a2Qa2Z", :by "root", :at 1507830979502} - } - } - } - } - } - } - "j" { - :type :expr, :id "BJZxXgLWe0rZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HkGxQx8Zg0H-", :text "old-store", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "Hy7e7eUZlAH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H14lQeIZlRHZ", :text "or", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "ryHgmlUZlABZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1Ul7eU-e0B-", :text "get", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SyPe7lUbeCrW", :text "@client-caches", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "r1OeQgU-x0r-", :text "session-id", :by "root", :at 1500541255553} - } - } - "r" {:type :leaf, :id "rytxme8ZeCS-", :text "nil", :by "root", :at 1500541255553} - } - } - } - } - "r" { - :type :expr, :id "HJclXeLblRBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJjgQgUWlRHZ", :text "new-store", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rJ3lQgIWlRSZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Hy6lmgIZlCHb", :text "render-twig", :by "root", :at 1511004322898} - "j" { - :type :expr, :id "HJCxmxIbxRBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJkbmx8Zl0SZ", :text "twig-container", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BJe-XeLWlRHb", :text "db", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "ByZbQlUWlRSW", :text "session", :by "root", :at 1500541255553} - "v" {:type :leaf, :text "records", :id "B1Zr2NQp3W", :by "root", :at 1507828909869} - } - } - "r" {:type :leaf, :id "rkM-Qx8bgRSb", :text "old-store", :by "root", :at 1500541255553} - } - } - } - } - "v" { - :type :expr, :id "HyQbQxLZxASW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1NZ7gUWe0rW", :text "changes", :by "root", :at 1507805179505} - "j" { - :type :expr, :id "SJgYbup2hZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SysGQeU-gCr-", :text "diff-twig", :by "root", :at 1511004324857} - "v" {:type :leaf, :id "HykQml8-l0BW", :text "old-store", :by "root", :at 1500541255553} - "x" {:type :leaf, :id "rkgXQx8ZeAB-", :text "new-store", :by "root", :at 1500541255553} - "y" { - :type :expr, :id "ByGQ9ua33W", :by "root", :at 1507805323503 - :data { - "T" {:type :leaf, :text "{}", :id "S1WXcu62hZ", :by "root", :at 1507805324087} - "j" { - :type :expr, :id "ryzE9OT22Z", :by "root", :at 1507805324342 - :data { - "T" {:type :leaf, :text ":key", :id "ryWN9_pn2b", :by "root", :at 1507805325626} - "j" {:type :leaf, :text ":id", :id "SkeI9_ahhW", :by "root", :at 1507805326990} - } - } - } - } - } - } - } - } - "y" { - :type :expr, :id "HJNMXgLWeABW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1SzXeIbgCrW", :text "socket", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SkIz7xIWeAH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1DzQe8-xCrW", :text "get", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJuzQxUbl0r-", :text "@*registry", :by "root", :at 1507830833026} - "r" {:type :leaf, :id "r1KzQxUZgRr-", :text "session-id", :by "root", :at 1500541255553} - } - } - } - } - } - } - "v" { - :type :expr, :id "B1b77gUWeCHZ", :by nil, :at 1500541255553 - :data { - "D" {:type :leaf, :by "root", :at 1517195799057, :text ";", :id "HJk7MfnrM"} - "T" {:type :leaf, :id "SJfXQlLZe0Hb", :text "log-js!", :by "root", :at 1507807482027} - "r" {:type :leaf, :id "By4QQgLZg0H-", :text "|Changes for", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "SySmXlUWlRrZ", :text "session-id", :by "root", :at 1500541255553} - "x" {:type :leaf, :id "HyLX7lLbgCSZ", :text "|:", :by "root", :at 1500541255553} - "y" {:type :leaf, :id "SJYmmxLZe0BZ", :text "changes", :by "root", :at 1507805197102} - "yT" { - :type :expr, :id "H1zQH7pnZ", :by "root", :at 1507829017719 - :data { - "T" {:type :leaf, :text "count", :id "Byl-QrXT2W", :by "root", :at 1507829018503} - "j" {:type :leaf, :text "records", :id "Sym7HQ63b", :by "root", :at 1507829021532} - } - } - } - } - "x" { - :type :expr, :id "SkqXXgUWlAH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Hyo77e8-eRSb", :text "if", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "Hknmme8WeRHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1a7XxL-xCrb", :text "and", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "Bk0m7l8-eCHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1kEml8-lCBb", :text "not=", :by "root", :at 1507805336153} - "j" {:type :leaf, :id "HyeN7eU-xRrb", :text "changes", :by "root", :at 1507805191931} - "r" { - :type :expr, :id "BJWVmxLWgCBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ByfEQe8-gRHZ", :text "[]", :by "root", :at 1500541255553} - } - } - } - } - "r" { - :type :expr, :id "rkXVXeLZlCBW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJVE7eIblRBW", :text "some?", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r1rNXg8-l0BW", :text "socket", :by "root", :at 1500541255553} - } - } - } - } - "r" { - :type :expr, :id "rkUNXxLbgCSb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJvE7xUbl0H-", :text "do", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "BydEQxLZxCHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1YNmxIbxRr-", :text ".send", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJc4mgU-x0BZ", :text "socket", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "Byi4QxLbeCS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SknNXeUZg0H-", :text "pr-str", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJpNmlIWxArW", :text "changes", :by "root", :at 1507805194072} - } - } - } - } - "r" { - :type :expr, :id "ry0EXxLWlCrW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HyJr7xLbx0SZ", :text "swap!", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ByxHmg8bxRH-", :text "client-caches", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "Hk-r7e8Wx0Sb", :text "assoc", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "H1fB7x8WlAB-", :text "session-id", :by "root", :at 1500541255553} - "x" {:type :leaf, :id "B1QrmxIblRSZ", :text "new-store", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :id "SJguzeUWgCHb", :by nil, :at 1500541255553 - :data {} - } - } - "server.reel" { - :ns { - :type :expr, :id "B1eF8-Ah2Z", :by "root", :at 1507807568560 - :data { - "T" {:type :leaf, :text "ns", :id "HkZtLWC33b", :by "root", :at 1507807568560} - "j" {:type :leaf, :text "server.reel", :id "S1fFU-02h-", :by "root", :at 1507807568560} - "r" { - :type :expr, :id "r1W94ERh2W", :by "root", :at 1507808306254 - :data { - "T" {:type :leaf, :text ":require", :id "Bye94EAnnb", :by "root", :at 1507808306970} - "j" { - :type :expr, :id "rJ2EVC2nW", :by "root", :at 1507808307673 - :data { - "T" {:type :leaf, :text "[]", :id "r18sE4C3n-", :by "root", :at 1507808307836} - "j" {:type :leaf, :text "clojure.string", :id "HJfnEEChhZ", :by "root", :at 1507808310745} - "r" {:type :leaf, :text ":as", :id "r1X1HEAn2Z", :by "root", :at 1507808311469} - "v" {:type :leaf, :text "string", :id "rylBERh2Z", :by "root", :at 1507808312249} - } - } - } - } - } - } - :defs { - "play-records" { - :type :expr, :id "HkWFmGChhZ", :by "root", :at 1507807777029 - :data { - "T" {:type :leaf, :text "defn", :id "S1fFXMA3nW", :by "root", :at 1507807777029} - "j" {:type :leaf, :text "play-records", :id "SJXF7GA3nW", :by "root", :at 1507807777029} - "r" { - :type :expr, :id "HyVKmfRn2W", :by "root", :at 1507807777029 - :data { - "T" {:type :leaf, :text "db", :id "ByZq7zAh2-", :by "root", :at 1507807852850} - "j" {:type :leaf, :text "records", :id "BJM6mfC22Z", :by "root", :at 1507807782382} - "r" {:type :leaf, :text "updater", :id "B18A7fC33b", :by "root", :at 1507807783430} - } - } - "v" { - :type :expr, :id "BkeXNMRh3b", :by "root", :at 1507807786831 - :data { - "T" {:type :leaf, :text "if", :id "BkeXNMRh3bleaf", :by "root", :at 1507807787293} - "j" { - :type :expr, :id "B14NNGC23b", :by "root", :at 1507807788493 - :data { - "T" {:type :leaf, :text "empty?", :id "Skm7NMR2hZ", :by "root", :at 1507807788882} - "j" {:type :leaf, :text "records", :id "B1eSEMR3hW", :by "root", :at 1507807791910} - } - } - "p" {:type :leaf, :text "db", :id "rJOQE0nh-", :by "root", :at 1507808288838} - "v" { - :type :expr, :id "r1VhEMAnh-", :by "root", :at 1507807796352 - :data { - "T" {:type :leaf, :text "let", :id "S1X2VfCnn-", :by "root", :at 1507807804049} - "j" { - :type :expr, :id "SJlPM0h3-", :by "root", :at 1507807831985 - :data { - "T" { - :type :expr, :id "SyHSM0n2W", :by "root", :at 1507807804774 - :data { - "T" { - :type :expr, :id "S1xrBz033b", :by "root", :at 1507807804933 - :data { - "T" {:type :leaf, :text "[]", :id "HJzVBGAhhZ", :by "root", :at 1507807805634} - "j" {:type :leaf, :text "op", :id "r1b8BzChnZ", :by "root", :at 1507807806577} - "r" {:type :leaf, :text "op-data", :id "ByWwHMR3nZ", :by "root", :at 1507807809537} - "v" {:type :leaf, :text "sid", :id "Ske5BG02nW", :by "root", :at 1507807810527} - "x" {:type :leaf, :text "op-id", :id "S1lsSzCn3b", :by "root", :at 1507807812164} - "y" {:type :leaf, :text "op-time", :id "BkaSzAn2W", :by "root", :at 1507807814137} - } - } - "j" { - :type :expr, :id "H1lxLM022b", :by "root", :at 1507807815913 - :data { - "T" {:type :leaf, :text "first", :id "Byg8fA2hZ", :by "root", :at 1507807821680} - "j" {:type :leaf, :text "records", :id "BJZL8G0h3-", :by "root", :at 1507808245880} - } - } - } - } - "j" { - :type :expr, :id "HyMwz0nhW", :by "root", :at 1507807833581 - :data { - "T" {:type :leaf, :text "next-db", :id "HyMwz0nhWleaf", :by "root", :at 1507807850908} - "j" { - :type :expr, :id "B1gTwM0h3b", :by "root", :at 1507807844750 - :data { - "T" {:type :leaf, :text "updater", :id "Hk6DzA32Z", :by "root", :at 1507807845576} - "j" {:type :leaf, :text "db", :id "SkxRvMC3h-", :by "root", :at 1507807849172} - "r" {:type :leaf, :text "op", :id "B1sOGAhnb", :by "root", :at 1507807858780} - "v" {:type :leaf, :text "op-data", :id "ByzidGR3nW", :by "root", :at 1507807859973} - "x" {:type :leaf, :text "sid", :id "S1m3_GC3hW", :by "root", :at 1507807860721} - "y" {:type :leaf, :text "op-id", :id "SkWTOGA22b", :by "root", :at 1507807862424} - "yT" {:type :leaf, :text "op-time", :id "Bk1KzCnh-", :by "root", :at 1507807864755} - } - } - } - } - } - } - "r" { - :type :expr, :id "BkfmKMR2hZ", :by "root", :at 1507807867422 - :data { - "T" {:type :leaf, :text "recur", :id "BkfmKMR2hZleaf", :by "root", :at 1507807869747} - "j" {:type :leaf, :text "next-db", :id "rJwKGRhhZ", :by "root", :at 1507807873195} - "r" { - :type :expr, :id "rJcKM0n3W", :by "root", :at 1507807873961 - :data { - "T" {:type :leaf, :text "rest", :id "SJGFtG0nhb", :by "root", :at 1507808240025} - "j" {:type :leaf, :text "records", :id "SJ-sFz023Z", :by "root", :at 1507807875952} - } - } - "v" {:type :leaf, :text "updater", :id "ryx6YGAhhb", :by "root", :at 1507807877826} - } - } - } - } - } - } - } - } - "reel-schema" { - :type :expr, :id "BJx2PZCh2b", :by "root", :at 1507807587733 - :data { - "T" {:type :leaf, :text "def", :id "HkZ3PW0hnZ", :by "root", :at 1507807589878} - "j" {:type :leaf, :text "reel-schema", :id "ByG3DbC3n-", :by "root", :at 1507807587733} - "r" { - :type :expr, :id "SkX2vb03n-", :by "root", :at 1507807587733 - :data { - "T" {:type :leaf, :text "{}", :id "HJy_WAnh-", :by "root", :at 1507807590977} - "X" { - :type :expr, :id "SkZdOWChnb", :by "root", :at 1507807600445 - :data { - "T" {:type :leaf, :text ":base", :id "SkZdOWChnbleaf", :by "root", :at 1507807601764} - "j" {:type :leaf, :text "nil", :id "Hy-5OZ022b", :by "root", :at 1507807603679} - } - } - "b" { - :type :expr, :id "ryNObRnnZ", :by "root", :at 1507807595904 - :data { - "T" {:type :leaf, :text ":db", :id "ryNObRnnZleaf", :by "root", :at 1507808188063} - "j" {:type :leaf, :text "nil", :id "B1I_W022Z", :by "root", :at 1507807599626} - } - } - "j" { - :type :expr, :id "BJZe_bC32b", :by "root", :at 1507807592228 - :data { - "T" {:type :leaf, :text ":records", :id "B1fy_WAhnZ", :by "root", :at 1507807593749} - "j" { - :type :expr, :id "rJXubRnnW", :by "root", :at 1507807594535 - :data { - "T" {:type :leaf, :text "[]", :id "Hy-GObA3hW", :by "root", :at 1507807674382} - } - } - } - } - "r" { - :type :expr, :id "S1-pdbR22W", :by "root", :at 1507807605053 - :data { - "T" {:type :leaf, :text ":merged?", :id "S1-pdbR22Wleaf", :by "root", :at 1517128653092} - "j" {:type :leaf, :text "false", :id "Hyx1F-AnhW", :by "root", :at 1507807608050} - } - } - } - } - } - } - "reel-updater" { - :type :expr, :id "r1gnUZR3nZ", :by "root", :at 1507807571921 - :data { - "T" {:type :leaf, :text "defn", :id "SJW2LW032b", :by "root", :at 1507807571921} - "j" {:type :leaf, :text "reel-updater", :id "HyGh8-CnnW", :by "root", :at 1507807571921} - "r" { - :type :expr, :id "ByQh8bRnhb", :by "root", :at 1507807571921 - :data { - "D" {:type :leaf, :text "reel", :id "Hy1HSAh2b", :by "root", :at 1507808567695} - "T" {:type :leaf, :text "updater", :id "Hy0cMA2h-", :by "root", :at 1507807899128} - "r" {:type :leaf, :text "op", :id "S1z4szC3nZ", :by "root", :at 1507807901735} - "v" {:type :leaf, :text "op-data", :id "rk3ifA2hW", :by "root", :at 1507807909927} - "x" {:type :leaf, :text "sid", :id "BymCszC2n-", :by "root", :at 1507807911186} - "y" {:type :leaf, :text "op-id", :id "HkGJ3f0hnb", :by "root", :at 1507807913048} - "yT" {:type :leaf, :text "op-time", :id "BJ--hzA22b", :by "root", :at 1507807916081} - } - } - "v" { - :type :expr, :id "BJIhzAn3Z", :by "root", :at 1507807917563 - :data { - "T" {:type :leaf, :text "if", :id "BJIhzAn3Zleaf", :by "root", :at 1507807935016} - "j" { - :type :expr, :id "ByGPpMCh3-", :by "root", :at 1507807935250 - :data { - "T" {:type :leaf, :text "string/starts-with?", :id "HybwaMAnnW", :by "root", :at 1507807940290} - "j" { - :type :expr, :id "SJx06fA33b", :by "root", :at 1507807942105 - :data { - "T" {:type :leaf, :text "str", :id "HJCaMCnhW", :by "root", :at 1507807942618} - "j" {:type :leaf, :text "op", :id "HJbyAGC23-", :by "root", :at 1507807943117} - } - } - "r" {:type :leaf, :text "|:reel/", :id "B1eERf0nnZ", :by "root", :at 1507807951837} - } - } - "r" { - :type :expr, :id "r1kJXA23b", :by "root", :at 1507807958585 - :data { - "T" {:type :leaf, :text "merge", :id "r1kJXA23bleaf", :by "root", :at 1507807959398} - "j" {:type :leaf, :text "reel", :id "rkx1QR3h-", :by "root", :at 1507807960851} - "r" { - :type :expr, :id "HJWWDXR23-", :by "root", :at 1507808089496 - :data { - "T" {:type :leaf, :text "case", :id "ryxWwXCh2Z", :by "root", :at 1507808113577} - "j" {:type :leaf, :text "op", :id "BkeqdmAnn-", :by "root", :at 1507808117022} - "r" { - :type :expr, :id "ry7Tu7CnnZ", :by "root", :at 1507808117325 - :data { - "T" {:type :leaf, :text ":reel/reset", :id "SJzT_XRh2-", :by "root", :at 1507808122298} - "j" { - :type :expr, :id "BkZtcm033Z", :by "root", :at 1507808145301 - :data { - "T" {:type :leaf, :text "{}", :id "Syxtc7R3hb", :by "root", :at 1507808146428} - "j" { - :type :expr, :id "BklR57C2n-", :by "root", :at 1507808149920 - :data { - "T" {:type :leaf, :text ":records", :id "rJR5X02h-", :by "root", :at 1507808152469} - "j" { - :type :expr, :id "rylWsXChnb", :by "root", :at 1507808153153 - :data { - "T" {:type :leaf, :text "[]", :id "S1Wim0n2b", :by "root", :at 1507808153345} - } - } - } - } - "r" { - :type :expr, :id "SyNsQAhn-", :by "root", :at 1507808155583 - :data { - "T" {:type :leaf, :text ":db", :id "SyNsQAhn-leaf", :by "root", :at 1507808157622} - "j" { - :type :expr, :id "HJZIsQAnnW", :by "root", :at 1507808157976 - :data { - "T" {:type :leaf, :text ":base", :id "B1gLo7R3h-", :by "root", :at 1507808161024} - "j" {:type :leaf, :text "reel", :id "HJmKsmCn2b", :by "root", :at 1507808163136} - } - } - } - } - } - } - } - } - "v" { - :type :expr, :id "Bkx7tQCnhZ", :by "root", :at 1507808122933 - :data { - "T" {:type :leaf, :text ":reel/merge", :id "Bkx7tQCnhZleaf", :by "root", :at 1507808129848} - "j" { - :type :expr, :id "BkWTsmAn3W", :by "root", :at 1507808164979 - :data { - "T" {:type :leaf, :text "{}", :id "Skl6iX02nW", :by "root", :at 1507808166682} - "j" { - :type :expr, :id "HJMJ3Q022b", :by "root", :at 1507808167423 - :data { - "T" {:type :leaf, :text ":records", :id "SkZknQR2n-", :by "root", :at 1507808168948} - "j" { - :type :expr, :id "HkNZ3QAh2W", :by "root", :at 1507808169302 - :data { - "T" {:type :leaf, :text "[]", :id "BJ7-3QR3h-", :by "root", :at 1507808169516} - } - } - } - } - "r" { - :type :expr, :id "SkmnQA22W", :by "root", :at 1507808170611 - :data { - "T" {:type :leaf, :text ":base", :id "SkmnQA22Wleaf", :by "root", :at 1507808175078} - "j" { - :type :expr, :id "HyluhQRnhZ", :by "root", :at 1507808176231 - :data { - "T" {:type :leaf, :text ":db", :id "BJd3Q0nhW", :by "root", :at 1507808177447} - "j" {:type :leaf, :text "reel", :id "S192mChhb", :by "root", :at 1507808178557} - } - } - } - } - } - } - } - } - "x" { - :type :expr, :id "rJm9YQ03hb", :by "root", :at 1507808130390 - :data { - "T" {:type :leaf, :text "do", :id "rJm9YQ03hbleaf", :by "root", :at 1507808132283} - "j" { - :type :expr, :id "H1ptX032Z", :by "root", :at 1507808132570 - :data { - "T" {:type :leaf, :text "println", :id "HkW3KQRhh-", :by "root", :at 1507808133596} - "j" {:type :leaf, :text "|Unknown op:", :id "ry-RF7Rn3b", :by "root", :at 1507808138147} - "r" {:type :leaf, :text "op", :id "S1MG5X022b", :by "root", :at 1507808140040} - } - } - "r" {:type :leaf, :text "reel", :id "HkScmRnhb", :by "root", :at 1507808143385} - } - } - } - } - } - } - "v" { - :type :expr, :id "SyfyXC32W", :by "root", :at 1507807961659 - :data { - "T" {:type :leaf, :text "let", :id "SyfyXC32Wleaf", :by "root", :at 1507807966627} - "j" { - :type :expr, :id "Hkp-Q03nb", :by "root", :at 1507808005428 - :data { - "T" { - :type :expr, :id "By0WQRn2Z", :by "root", :at 1507808005565 - :data { - "T" {:type :leaf, :text "msg-pack", :id "B1ePJXR2nZ", :by "root", :at 1507808010547} - "j" { - :type :expr, :id "B1ZQfX02nb", :by "root", :at 1507808010979 - :data { - "T" {:type :leaf, :text "[]", :id "HJe7fmA3hZ", :by "root", :at 1507808011370} - "j" {:type :leaf, :text "op", :id "BkNMQCnnW", :by "root", :at 1507808012306} - "r" {:type :leaf, :text "op-data", :id "BJHf7R23W", :by "root", :at 1507808015291} - "v" {:type :leaf, :text "sid", :id "H17wG7022-", :by "root", :at 1507808016704} - "x" {:type :leaf, :text "op-id", :id "rJetGQ0hn-", :by "root", :at 1507808017548} - "y" {:type :leaf, :text "op-time", :id "SJeqGmRn3W", :by "root", :at 1507808018926} - } - } - } - } - } - } - "r" { - :type :expr, :id "SkgTfXR22Z", :by "root", :at 1507808021414 - :data { - "T" {:type :leaf, :text "->", :id "SkgTfXR22Zleaf", :by "root", :at 1507808022031} - "j" {:type :leaf, :text "reel", :id "HyW0fXAnhW", :by "root", :at 1507808023769} - "r" { - :type :expr, :id "r1mgmXA3hb", :by "root", :at 1507808024071 - :data { - "T" {:type :leaf, :text "update", :id "BJfx7XA2hb", :by "root", :at 1507808024885} - "j" {:type :leaf, :text ":records", :id "Hkz-77C2hb", :by "root", :at 1507808027711} - "r" { - :type :expr, :id "SkZNQXRn2-", :by "root", :at 1507808028155 - :data { - "T" {:type :leaf, :text "fn", :id "BJl4mQR33-", :by "root", :at 1507808028588} - "j" { - :type :expr, :id "HyWr7XRn2b", :by "root", :at 1507808028861 - :data { - "T" {:type :leaf, :text "records", :id "B1eHmmAnnb", :by "root", :at 1507808029976} - } - } - "r" { - :type :expr, :id "S1DQQ032W", :by "root", :at 1507808030991 - :data { - "T" {:type :leaf, :text "conj", :id "S1DQQ032Wleaf", :by "root", :at 1507808031959} - "j" {:type :leaf, :text "records", :id "rJxOQQAnhZ", :by "root", :at 1507808300376} - "r" {:type :leaf, :text "msg-pack", :id "S197XCnhb", :by "root", :at 1507808036781} - } - } - } - } - } - } - "v" { - :type :expr, :id "B1WkE7032-", :by "root", :at 1507808039342 - :data { - "T" {:type :leaf, :text "assoc", :id "rJv47R23W", :by "root", :at 1507808047479} - "j" {:type :leaf, :text ":db", :id "Hku4Q02nb", :by "root", :at 1507808049717} - "r" { - :type :expr, :id "B1x-B7Ch3W", :by "root", :at 1507808056967 - :data { - "T" {:type :leaf, :text "updater", :id "r1WSmR3hZ", :by "root", :at 1507808057996} - "j" { - :type :expr, :id "S1xVBXRnhZ", :by "root", :at 1507808059894 - :data { - "T" {:type :leaf, :text ":db", :id "ry7HmR3hZ", :by "root", :at 1507808060494} - "j" {:type :leaf, :text "reel", :id "B1SB7Rh2b", :by "root", :at 1507808061864} - } - } - "r" {:type :leaf, :text "op", :id "SkePSQAh2Z", :by "root", :at 1507808063495} - "v" {:type :leaf, :text "op-data", :id "HyOHm0nhb", :by "root", :at 1507808065417} - "x" {:type :leaf, :text "sid", :id "rkIFSmAh2-", :by "root", :at 1507808066276} - "y" {:type :leaf, :text "op-id", :id "Byz5S7An2b", :by "root", :at 1507808068339} - "yT" {:type :leaf, :text "op-time", :id "B1aBQAh2-", :by "root", :at 1507808069665} - } - } - } - } - } - } - } - } - } - } - } - } - "refresh-reel" { - :type :expr, :id "S1eKPWAn2Z", :by "root", :at 1507807585218 - :data { - "T" {:type :leaf, :text "defn", :id "ryWFw-Ch2W", :by "root", :at 1507807585218} - "j" {:type :leaf, :text "refresh-reel", :id "HkztP-R2nZ", :by "root", :at 1507807585218} - "r" { - :type :expr, :id "r1XFPbRnnW", :by "root", :at 1507807585218 - :data { - "T" {:type :leaf, :text "reel", :id "SylfJfRn3Z", :by "root", :at 1507807707677} - "j" {:type :leaf, :text "base", :id "SygV1G02hW", :by "root", :at 1507807708866} - "r" {:type :leaf, :text "updater", :id "rkxHyf023-", :by "root", :at 1507807711602} - } - } - "v" { - :type :expr, :id "HJY1GC23b", :by "root", :at 1507807713224 - :data { - "T" {:type :leaf, :text "let", :id "HJY1GC23bleaf", :by "root", :at 1507807713873} - "j" { - :type :expr, :id "BkQcJM023W", :by "root", :at 1507807714088 - :data { - "T" { - :type :expr, :id "rkG2yzCh2Z", :by "root", :at 1507807716280 - :data { - "T" {:type :leaf, :text "next-base", :id "SyM9yfC33-", :by "root", :at 1507807720593} - "j" { - :type :expr, :id "BJxGez033Z", :by "root", :at 1507807722030 - :data { - "T" {:type :leaf, :text "if", :id "S1fgfRn3Z", :by "root", :at 1507807722454} - "j" { - :type :expr, :id "HkQeMRn2Z", :by "root", :at 1507807722676 - :data { - "T" {:type :leaf, :text ":merged?", :id "HymGxMC2n-", :by "root", :at 1507808230226} - "j" {:type :leaf, :text "reel", :id "ByeNeMA22b", :by "root", :at 1507807724899} - } - } - "r" { - :type :expr, :id "SJvgMAnn-", :by "root", :at 1507807726560 - :data { - "T" {:type :leaf, :text ":base", :id "Hkl8xMChhb", :by "root", :at 1507807727417} - "j" {:type :leaf, :text "reel", :id "HyOlMAhnb", :by "root", :at 1507807728386} - } - } - "v" {:type :leaf, :text "base", :id "B1eYeM0nhW", :by "root", :at 1507807730618} - } - } - } - } - } - } - "r" { - :type :expr, :id "HJZpgGC22W", :by "root", :at 1507807733505 - :data { - "T" {:type :leaf, :text "->", :id "HJZpgGC22Wleaf", :by "root", :at 1507807734158} - "j" {:type :leaf, :text "reel", :id "Sk-AlGR22Z", :by "root", :at 1507807735188} - "r" { - :type :expr, :id "Skg-M022Z", :by "root", :at 1507807735526 - :data { - "T" {:type :leaf, :text "assoc", :id "HkXJZzA23-", :by "root", :at 1507807736798} - "j" {:type :leaf, :text ":base", :id "Hkl--GR33-", :by "root", :at 1507807737680} - "r" {:type :leaf, :text "next-base", :id "BybGWGRn2Z", :by "root", :at 1507807741059} - } - } - "v" { - :type :expr, :id "BkxUZfC2hb", :by "root", :at 1507807741935 - :data { - "T" {:type :leaf, :text "assoc", :id "BkxUZfC2hbleaf", :by "root", :at 1507807743274} - "j" {:type :leaf, :text ":db", :id "B1MP-fRh2b", :by "root", :at 1507808074280} - "r" { - :type :expr, :id "SJXjZGC23W", :by "root", :at 1507807746971 - :data { - "T" {:type :leaf, :text "play-records", :id "H1fsZGR3h-", :by "root", :at 1507807749581} - "j" {:type :leaf, :text "next-base", :id "rJ--zfCh3b", :by "root", :at 1507807755170} - "r" { - :type :expr, :id "BkgnzGCn2b", :by "root", :at 1507807763798 - :data { - "T" {:type :leaf, :text ":records", :id "SkYfMCn3Z", :by "root", :at 1507807765879} - "j" {:type :leaf, :text "reel", :id "Syf0fM03nZ", :by "root", :at 1507807767222} - } - } - "v" {:type :leaf, :text "updater", :id "r1ggmfRnh-", :by "root", :at 1507807769477} - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :id "S1QY8b0n3Z", :by "root", :at 1507807568560 - :data {} - } - } - "server.schema" { - :ns { - :type :expr, :id "B1Swe8bxAr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Bk8PgIbeCr-", :text "ns", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SyDDxIWeRrb", :text "server.schema", :by "root", :at 1500541255553} - } - } - :defs { - "command" { - :type :expr, :by "root", :at 1517234458896, :id "S1lQQto3BG" - :data { - "T" {:type :leaf, :by "root", :at 1517234461087, :text "def", :id "SJZXXto3BM"} - "j" {:type :leaf, :by "root", :at 1517234458896, :text "command", :id "B1zmXFjnrG"} - "r" { - :type :expr, :by "root", :at 1517234458896, :id "r1mXmYj3SM" - :data { - "T" {:type :leaf, :by "root", :at 1517234463251, :text "{}", :id "B1I7ti3rM"} - "b" { - :type :expr, :by "root", :at 1517234547375, :id "rJZidKohHM" - :data { - "T" {:type :leaf, :by "root", :at 1517234548577, :text ":id", :id "SkgsOYs3rM"} - "j" {:type :leaf, :by "root", :at 1517234549525, :text "nil", :id "Skx6uts3Bf"} - } - } - "j" { - :type :expr, :by "root", :at 1517234463673, :id "rk_7KsnBf" - :data { - "T" {:type :leaf, :by "root", :at 1517234468890, :text ":path", :id "By-PXKo2BG"} - "j" {:type :leaf, :by "root", :at 1517234471579, :text "|.", :id "B17aQKi3HM"} - } - } - "r" { - :type :expr, :by "root", :at 1517234472295, :id "ByWg4Ks3Hz" - :data { - "T" {:type :leaf, :by "root", :at 1517234495990, :text ":code", :id "ByWg4Ks3Hzleaf"} - "j" {:type :leaf, :by "root", :at 1517234496378, :text "|", :id "H1E_HtjnBM"} - } - } - } - } - } - } - "configs" { - :type :expr, :id "ryy9lUWg0BW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Syx9g8-l0B-", :text "def", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Hy-9x8beASZ", :text "configs", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "ByG9eLZlAB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1Q5x8Zl0Hb", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HyV5eUZgRrZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkSqx8WgCr-", :text ":storage-key", :by "root", :at 1500541255553} - "j" { - :type :expr, :by "root", :at 1517675441859, :id "HkqnmPXLf" - :data { - "D" {:type :leaf, :by "root", :at 1517675442806, :text "str", :id "BJgchQD7UG"} - "L" {:type :leaf, :by "root", :at 1517675454846, :text "js/process.env.HOME", :id "Hkah7PQ8M"} - "T" {:type :leaf, :id "Sk85xIbgRHW", :text "|/.config/termina.edn", :by "root", :at 1517675461840} - } - } - } - } - "r" { - :type :expr, :id "H1w9gIblRHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rydqx8blRHW", :text ":port", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJF9g8-gCHZ", :text "6200", :by "root", :at 1517670406701} - } - } - } - } - } - } - "database" { - :type :expr, :id "S1c5lLblCBZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BkjcxUbgAH-", :text "def", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ryhqlIZxRSb", :text "database", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "S169e8WeAH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJCqxL-gASW", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SJJolIbeArb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkgjlUZxArb", :text ":sessions", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "H1WsxIbeCSW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1GseIWx0S-", :text "{}", :by "root", :at 1500541255553} - } - } - } - } - "r" { - :type :expr, :id "Symjg8bg0BZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJ4ix8beAB-", :text ":users", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "r1BieLbe0rZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJUjl8bg0SW", :text "{}", :by "root", :at 1500541255553} - } - } - } - } - "v" { - :type :expr, :id "SyvseLWe0H-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkOse8beABZ", :text ":topics", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "H1Yix8beRr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S19slIZeArZ", :text "{}", :by "root", :at 1500541255553} - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517128657859, :id "Bkq0oWjBz" - :data { - "T" {:type :leaf, :by "root", :at 1517128661336, :text ":processes", :id "Bkq0oWjBzleaf"} - "j" { - :type :expr, :by "root", :at 1517128661690, :id "rkRAjboHG" - :data { - "T" {:type :leaf, :by "root", :at 1517128662073, :text "{}", :id "BkmTRsZjHM"} - } - } - } - } - "y" { - :type :expr, :by "root", :at 1517233625978, :id "r1lzJ8ohrz" - :data { - "T" {:type :leaf, :by "root", :at 1517233627726, :text ":workflows", :id "r1lzJ8ohrzleaf"} - "j" { - :type :expr, :by "root", :at 1517233628226, :id "ryGEkUinSG" - :data { - "T" {:type :leaf, :by "root", :at 1517233628555, :text "{}", :id "SkZVyIohHG"} - } - } - } - } - "yT" { - :type :expr, :by "root", :at 1517301573663, :id "By0H1h6SG" - :data { - "T" {:type :leaf, :by "root", :at 1517498752050, :text ":histories", :id "By0H1h6SGleaf"} - "j" { - :type :expr, :by "root", :at 1517301581204, :id "HJZS8k36BG" - :data { - "T" {:type :leaf, :by "root", :at 1517301581800, :text "[]", :id "ByxS81n6Sf"} - } - } - } - } - } - } - } - } - "history" { - :type :expr, :by "root", :at 1517498653343, :id "HylHm-ne8f" - :data { - "T" {:type :leaf, :by "root", :at 1517498663964, :text "def", :id "ByWrQb3gIM"} - "j" {:type :leaf, :by "root", :at 1517498653343, :text "history", :id "SyfBQbngIf"} - "r" { - :type :expr, :by "root", :at 1517128555082, :id "S1yVWngIG" - :data { - "T" {:type :leaf, :by "root", :at 1517128560470, :text "{}", :id "B1lO_obsHz"} - "X" { - :type :expr, :by "root", :at 1517498682720, :id "BJ7BZng8f" - :data { - "T" {:type :leaf, :by "root", :at 1517498684078, :text ":id", :id "BJ7BZng8fleaf"} - "j" {:type :leaf, :by "root", :at 1517498684523, :text "nil", :id "BJMVHW2eUz"} - } - } - "b" { - :type :expr, :by "root", :at 1517128624334, :id "rJgdhj-sHM" - :data { - "T" {:type :leaf, :by "root", :at 1517128626795, :text ":pid", :id "rJgdhj-sHMleaf"} - "j" {:type :leaf, :by "root", :at 1517128636871, :text "0", :id "HJei2oZsSz"} - } - } - "j" { - :type :expr, :by "root", :at 1517128560830, :id "ryxKOs-jrf" - :data { - "T" {:type :leaf, :by "root", :at 1517154952615, :text ":started-at", :id "SkYui-sBG"} - "j" {:type :leaf, :by "root", :at 1517128616788, :text "0", :id "B1x2sbjrG"} - } - } - "v" { - :type :expr, :by "root", :at 1517154936732, :id "By-KGdoSz" - :data { - "T" {:type :leaf, :by "root", :at 1517196277736, :text ":cwd", :id "By-KGdoSzleaf"} - "j" {:type :leaf, :by "root", :at 1517154937832, :text "|", :id "SJMFfOorf"} - } - } - "x" { - :type :expr, :by "root", :at 1517366605642, :id "Bk8UToAHz" - :data { - "T" {:type :leaf, :by "root", :at 1517366607441, :text ":command", :id "Bk8UToAHzleaf"} - "j" {:type :leaf, :by "root", :at 1517366608619, :text "|", :id "BJdLToAHf"} - } - } - } - } - } - } - "notification" { - :type :expr, :id "B156eIbeRS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJoalUbxCrZ", :text "def", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r1hTeLZe0rW", :text "notification", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "r1pTlUZxABb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkRpeLbg0r-", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rJkCe8-l0S-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1eCgL-xCHW", :text ":id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ryb0eUWx0BW", :text "nil", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "B1MAgUZxAHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJQRe8WlRBb", :text ":kind", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJN0xL-x0rb", :text "nil", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "SJSRxLWgCS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJIClIWgCH-", :text ":text", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJwCxIWxRBb", :text "nil", :by "root", :at 1500541255553} - } - } - } - } - } - } - "process" { - :type :expr, :by "root", :at 1517128555082, :id "rJeQ_iZiHz" - :data { - "T" {:type :leaf, :by "root", :at 1517128559154, :text "def", :id "BkbX_iZsBG"} - "j" {:type :leaf, :by "root", :at 1517128555082, :text "process", :id "H1GXdsZjHf"} - "r" { - :type :expr, :by "root", :at 1517128555082, :id "S17Qujbirz" - :data { - "T" {:type :leaf, :by "root", :at 1517128560470, :text "{}", :id "B1lO_obsHz"} - "b" { - :type :expr, :by "root", :at 1517128624334, :id "rJgdhj-sHM" - :data { - "T" {:type :leaf, :by "root", :at 1517128626795, :text ":pid", :id "rJgdhj-sHMleaf"} - "j" {:type :leaf, :by "root", :at 1517128636871, :text "0", :id "HJei2oZsSz"} - } - } - "f" { - :type :expr, :by "root", :at 1517128627566, :id "Hkn2obsSz" - :data { - "T" {:type :leaf, :by "root", :at 1517154835834, :text ":content", :id "Hkn2obsSzleaf"} - "j" { - :type :expr, :by "root", :at 1517154833483, :id "rybFGzOjSG" - :data { - "T" {:type :leaf, :by "root", :at 1517154833786, :text "[]", :id "ryxo6jZoHf"} - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517128560830, :id "ryxKOs-jrf" - :data { - "T" {:type :leaf, :by "root", :at 1517154952615, :text ":started-at", :id "SkYui-sBG"} - "j" {:type :leaf, :by "root", :at 1517128616788, :text "0", :id "B1x2sbjrG"} - } - } - "r" { - :type :expr, :by "root", :at 1517128601141, :id "SyebjoWiHM" - :data { - "T" {:type :leaf, :by "root", :at 1517128603303, :text ":alive?", :id "SyebjoWiHMleaf"} - "j" {:type :leaf, :by "root", :at 1517128605606, :text "false", :id "rJSioZoHG"} - } - } - "v" { - :type :expr, :by "root", :at 1517154936732, :id "By-KGdoSz" - :data { - "T" {:type :leaf, :by "root", :at 1517196277736, :text ":cwd", :id "By-KGdoSzleaf"} - "j" {:type :leaf, :by "root", :at 1517154937832, :text "|", :id "SJMFfOorf"} - } - } - "x" { - :type :expr, :by "root", :at 1517366605642, :id "Bk8UToAHz" - :data { - "T" {:type :leaf, :by "root", :at 1517366607441, :text ":command", :id "Bk8UToAHzleaf"} - "j" {:type :leaf, :by "root", :at 1517366608619, :text "|", :id "BJdLToAHf"} - } - } - } - } - } - } - "router" { - :type :expr, :id "BJaugUbeABb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJR_lI-xRBZ", :text "def", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BJyFl8-l0B-", :text "router", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "HyeKlU-gCHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJbYl8bxCr-", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HyzFe8blRHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJQtlI-x0rW", :text ":name", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Bk4teL-lRS-", :text "nil", :by "root", :at 1500541255553} - } - } - "p" { - :type :expr, :by "root", :at 1517301647363, :id "SkgP9JnpBM" - :data { - "T" {:type :leaf, :by "root", :at 1517301650242, :text ":params", :id "SkgP9JnpBMleaf"} - "j" {:type :leaf, :by "root", :at 1517301651225, :text "nil", :id "B1jqyh6rf"} - } - } - "v" { - :type :expr, :id "Hy_tgU-eAHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJtFx8ZeRr-", :text ":data", :by "root", :at 1500541255553} - "j" {:type :leaf, :by "root", :at 1517301654286, :text "nil", :id "BJAcJ2THM"} - } - } - } - } - } - } - "session" { - :type :expr, :id "HyiseLZlCB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1hseLZlCBW", :text "def", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJpslIZxAHW", :text "session", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "SkCilU-eCSZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B11neI-gAH-", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "Byx2e8-e0rZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rybnxUWe0BZ", :text ":user-id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ryf2xIbxAHZ", :text "nil", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "B1m2eIbxAHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S143xIblCrZ", :text ":id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "S1ShgL-l0rZ", :text "nil", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "HJU2gU-lRrb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HyPheIZxCSZ", :text ":nickname", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "B1_hx8ZeRrW", :text "nil", :by "root", :at 1500541255553} - } - } - "x" { - :type :expr, :id "rkthlU-gCHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HycngIbeCrb", :text ":router", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HyjhgL-xArW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Hy23gUZgRH-", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "H1T2eUZeAH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1C3lUWgCHb", :text ":name", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJkalLZxArW", :text ":home", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "HyxTeL-gRSb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1baxLZeCr-", :text ":data", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SyGpe8WgAHZ", :text "nil", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "rk7TlUWl0SW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Bk4pe8ZgCBZ", :text ":router", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJB6l8-g0H-", :text "nil", :by "root", :at 1500541255553} - } - } - } - } - } - } - "y" { - :type :expr, :id "SyL6eIbgRr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HyPTeIZx0SZ", :text ":notifications", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SyOaeUWxAS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BkYagLZeAHb", :text "[]", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - "user" { - :type :expr, :id "BJKwxIbx0rZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Hy9weU-x0SW", :text "def", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r1jDx8bx0SZ", :text "user", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "rkhPxUWx0r-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkpPl8ZlRrW", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HkAPxIZxRB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ryJul8beCrb", :text ":name", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJlOxIWgRBW", :text "nil", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "HkbdlLZlRSW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1M_gIWxCSZ", :text ":id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rk7_eIbxRB-", :text "nil", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "B14ug8bg0rb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HySOgLWeASW", :text ":nickname", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ByIue8Ze0B-", :text "nil", :by "root", :at 1500541255553} - } - } - "x" { - :type :expr, :id "H1PulIbx0Hb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SyudlUWeCBW", :text ":avatar", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJYdlLbe0BW", :text "nil", :by "root", :at 1500541255553} - } - } - "y" { - :type :expr, :id "HJcOxIbgAHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1jOeUbxArW", :text ":password", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Hynug8bxCSZ", :text "nil", :by "root", :at 1500541255553} - } - } - } - } - } - } - "workflow" { - :type :expr, :by "root", :at 1517233496502, :id "B1lgwrs3rf" - :data { - "T" {:type :leaf, :by "root", :at 1517233498622, :text "def", :id "SJWxDBjhrz"} - "j" {:type :leaf, :by "root", :at 1517233496502, :text "workflow", :id "SJGlPBjhHz"} - "r" { - :type :expr, :by "root", :at 1517233536129, :id "BJZOKSihBz" - :data { - "D" {:type :leaf, :by "root", :at 1517233537144, :text "{}", :id "rkMdKHihrf"} - "H" { - :type :expr, :by "root", :at 1517233609686, :id "Byf0HohHM" - :data { - "T" {:type :leaf, :by "root", :at 1517233610299, :text ":id", :id "Byf0HohHMleaf"} - "j" {:type :leaf, :by "root", :at 1517233611359, :text "nil", :id "r1QABi2Hz"} - } - } - "L" { - :type :expr, :by "root", :at 1517233538476, :id "SJZqKSj2Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517233539280, :text ":name", :id "S1l9Yro3BM"} - "j" {:type :leaf, :by "root", :at 1517233622558, :text "nil", :id "ryNjYSj3rz"} - } - } - "P" { - :type :expr, :by "root", :at 1517233549220, :id "SJgH5HjnSf" - :data { - "T" {:type :leaf, :by "root", :at 1517233557424, :text ":base-dir", :id "SJgH5HjnSfleaf"} - "j" {:type :leaf, :by "root", :at 1517233559174, :text "|~/", :id "HJRcSi2Sz"} - } - } - "T" { - :type :expr, :by "root", :at 1517233543578, :id "Byg9HjnSM" - :data { - "D" {:type :leaf, :by "root", :at 1517233546215, :text ":commands", :id "rJxx9ro2rG"} - "b" { - :type :expr, :by "root", :at 1517234448746, :id "SJxYGFo2BM" - :data { - "T" {:type :leaf, :by "root", :at 1517234449116, :text "{}", :id "H1KftinHM"} - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :id "SJuPg8bxRH-", :by nil, :at 1500541255553 - :data {} - } - } - "server.twig.container" { - :ns { - :type :expr, :id "rkSex8bg0S-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkIleLblAr-", :text "ns", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ByDelU-eRSZ", :text "server.twig.container", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "HkOlxUZlRH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1txeIZlRSb", :text ":require", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "Bk9llIWgCBW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJjxeUZxRBW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJ2llIbe0SZ", :text "recollect.macros", :by "root", :at 1511004248883} - "r" {:type :leaf, :id "rJTgg8WlASZ", :text ":refer", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "HyCll8blCSb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJJ-eUZlAHW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rkeWl8WgArb", :text "deftwig", :by "root", :at 1511004252919} - } - } - } - } - "r" { - :type :expr, :id "rkZblUblRHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkM-lUbxASW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJX-gU-e0SW", :text "server.twig.user", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "Hy4We8bgCB-", :text ":refer", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "r1SbgUbg0S-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJ8-x8WeCH-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BJv-e8beRSW", :text "twig-user", :by "root", :at 1500541255553} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517503598299, :id "B1gLONTeLM" - :data { - "T" {:type :leaf, :by "root", :at 1517503598809, :text "[]", :id "B1gLONTeLMleaf"} - "j" {:type :leaf, :by "root", :at 1517503602272, :text "server.util", :id "HJ-Pu4pxUf"} - "r" {:type :leaf, :by "root", :at 1517503603250, :text ":refer", :id "Bk7quNTxIz"} - "v" { - :type :expr, :by "root", :at 1517503603455, :id "HyIsONpgLG" - :data { - "T" {:type :leaf, :by "root", :at 1517503604598, :text "[]", :id "SyrjONTgUf"} - "j" {:type :leaf, :by "root", :at 1517503605112, :text "map-val", :id "rklauE6lUG"} - } - } - } - } - } - } - } - } - :defs { - "twig-container" { - :type :expr, :id "ByY-eUZeAr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJ5bxLZlRBZ", :text "deftwig", :by "root", :at 1511004235720} - "j" {:type :leaf, :id "Hkibe8Wl0S-", :text "twig-container", :by "root", :at 1500541255553} - "n" { - :type :expr, :id "Sk-PI_qp1z", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Hkzzg8WlRBZ", :text "db", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ByXzxL-lCH-", :text "session", :by "root", :at 1500541255553} - "r" {:type :leaf, :text "records", :id "rklw6NmanW", :by "root", :at 1507828952210} - } - } - "r" { - :type :expr, :id "ryl38_qaJf", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ByHzl8bgCSZ", :text "let", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HyUflIWgRrZ", :by nil, :at 1500541255553 - :data { - "T" { - :type :expr, :id "HywGl8-gCHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1_MlIbg0SW", :text "logged-in?", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "B1FGxLWeRHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ry5fe8ZlRS-", :text "some?", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "BkiGlU-e0B-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJnGeLZlAHb", :text ":user-id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJTMlI-eAB-", :text "session", :by "root", :at 1500541255553} - } - } - } - } - } - } - "j" { - :type :expr, :id "rJ0GgLZlCS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BkkQeLZlCHW", :text "router", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SkemlIWxRBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJWmlLWeRHZ", :text ":router", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJzXlLWxAHZ", :text "session", :by "root", :at 1500541255553} - } - } - } - } - "r" { - :type :expr, :id "ryowoQp2W", :by "root", :at 1507830626848 - :data { - "T" {:type :leaf, :text "base-data", :id "ryowoQp2Wleaf", :by "root", :at 1507830630278} - "j" { - :type :expr, :id "r1lyujmp3b", :by "root", :at 1507830631302 - :data { - "T" {:type :leaf, :text "{}", :id "By1djQTnb", :by "root", :at 1507830631896} - "j" { - :type :expr, :id "ryGxdimT2-", :by "root", :at 1507830632113 - :data { - "T" {:type :leaf, :text ":logged-in?", :id "Sy-guiXp2b", :by "root", :at 1507830641027} - "j" {:type :leaf, :text "logged-in?", :id "ByBusQ6hW", :by "root", :at 1507830639219} - } - } - "v" { - :type :expr, :id "SyxMtsm62Z", :by "root", :at 1507830649968 - :data { - "T" {:type :leaf, :text ":reel-length", :id "SyxMtsm62Zleaf", :by "root", :at 1507830655148} - "j" { - :type :expr, :id "B1xuKj7p3-", :by "root", :at 1507830655987 - :data { - "T" {:type :leaf, :text "count", :id "S1dKjma2Z", :by "root", :at 1507830657551} - "j" {:type :leaf, :text "records", :id "HkgcFsXT3b", :by "root", :at 1507830658789} - } - } - } - } - "x" { - :type :expr, :by "root", :at 1517127987083, :id "BJljEYWsSf" - :data { - "T" {:type :leaf, :by "root", :at 1517127989303, :text ":notifications", :id "BJljEYWsSfleaf"} - "j" { - :type :expr, :by "root", :at 1517127989668, :id "r1RNYZirG" - :data { - "T" {:type :leaf, :by "root", :at 1517127994849, :text ":notifications", :id "BJPa4KbsHM"} - "j" {:type :leaf, :by "root", :at 1517127998196, :text "session", :id "Sy7QHKZiBM"} - } - } - } - } - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517499050329, :id "SyWz3M3e8G" - :data { - "D" { - :type :expr, :by "root", :at 1517499057554, :id "rJqnMngUz" - :data { - "T" {:type :leaf, :by "root", :at 1517499058037, :text "{}", :id "HyK2f2xIM"} - "j" { - :type :expr, :by "root", :at 1517499059786, :id "S1ln3fngLG" - :data { - "T" {:type :leaf, :by "root", :at 1517499062380, :text "workflows", :id "Bkh2zhxLG"} - "j" {:type :leaf, :by "root", :at 1517499066729, :text ":workflows", :id "S1kTGnlIG"} - } - } - "r" { - :type :expr, :by "root", :at 1517499067264, :id "ryzXpfhlIf" - :data { - "T" {:type :leaf, :by "root", :at 1517499069652, :text "processes", :id "ryzXpfhlIfleaf"} - "j" {:type :leaf, :by "root", :at 1517499073060, :text ":processes", :id "HJv6f3x8M"} - } - } - "v" { - :type :expr, :by "root", :at 1517499073672, :id "r1qpzngIf" - :data { - "T" {:type :leaf, :by "root", :at 1517499077571, :text "histories", :id "r1qpzngIfleaf"} - "j" {:type :leaf, :by "root", :at 1517499080968, :text ":histories", :id "H1xR6Ghl8f"} - } - } - } - } - "T" {:type :leaf, :by "root", :at 1517499055702, :text "db", :id "SyWz3M3e8Gleaf"} - } - } - } - } - "r" { - :type :expr, :id "BkxpKj76h-", :by "root", :at 1507830661017 - :data { - "D" {:type :leaf, :text "merge", :id "H1W6KoQ6hZ", :by "root", :at 1507830661999} - "L" {:type :leaf, :text "base-data", :id "rJVCFjmp2b", :by "root", :at 1507830664014} - "T" { - :type :expr, :id "HJQmlU-e0rW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJVmgLZlAr-", :text "if", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r1S7gUZlArb", :text "logged-in?", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "HJUQxIbx0rZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJPQl8ZgCHb", :text "{}", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "B107eU-lCHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Hy1VxUbeCS-", :text ":user", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HJlNxUbx0r-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SyZVxIZeCS-", :text "twig-user", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HyG4lIZlRHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HkXVeL-l0Sb", :text "get-in", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJ4Nx8WeCrb", :text "db", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "HkrVgLZg0B-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ByIEeLbxCHb", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "H1v4xIWxArZ", :text ":users", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "HJ_VxL-xRr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJYNgUbgCBb", :text ":user-id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ryqNeLZeCHb", :text "session", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - } - } - "x" { - :type :expr, :id "SJsEe8ZgCBZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJ2EeUWe0SZ", :text ":router", :by "root", :at 1500541255553} - "j" { - :type :expr, :by "root", :at 1517499002222, :id "HkefYfhgLf" - :data { - "D" {:type :leaf, :by "root", :at 1517499003837, :text "assoc", :id "rJXYG2e8G"} - "L" {:type :leaf, :by "root", :at 1517499005148, :text "router", :id "BkGVtf2xLz"} - "P" {:type :leaf, :by "root", :at 1517499008824, :text ":data", :id "BJLYfngUM"} - "T" { - :type :expr, :by "root", :at 1517498830485, :id "rylLAZnlUG" - :data { - "D" {:type :leaf, :by "root", :at 1517498832656, :text "case", :id "BJdAbnlUM"} - "T" { - :type :expr, :by "root", :at 1517498833905, :id "By9RZ3eUM" - :data { - "D" {:type :leaf, :by "root", :at 1517498835928, :text ":name", :id "BJiRZng8f"} - "T" {:type :leaf, :id "BJaEl8ZxCS-", :text "router", :by "root", :at 1500541255553} - } - } - "j" { - :type :expr, :by "root", :at 1517498842537, :id "Sym1M2l8z" - :data { - "T" {:type :leaf, :by "root", :at 1517498848533, :text ":history", :id "rkf1G2eIz"} - "j" { - :type :expr, :by "root", :at 1517498958392, :id "SJl2KGhxLz" - :data { - "D" {:type :leaf, :by "root", :at 1517498961377, :text "{}", :id "HyvLzngIz"} - "L" { - :type :expr, :by "root", :at 1517498963057, :id "rkxsLG3xLf" - :data { - "T" {:type :leaf, :by "root", :at 1517498964900, :text ":histories", :id "rkoIz3eLM"} - "j" {:type :leaf, :by "root", :at 1517499086384, :text "histories", :id "rJWECMhlIM"} - } - } - } - } - } - } - "n" { - :type :expr, :by "root", :at 1517498897733, :id "rkcGfnlUz" - :data { - "T" {:type :leaf, :by "root", :at 1517498902987, :text ":workflows", :id "rkcGfnlUzleaf"} - "j" { - :type :expr, :by "root", :at 1517498945665, :id "BkxJqMhgLf" - :data { - "T" {:type :leaf, :by "root", :at 1517498968752, :text "{}", :id "SkmKSfnxIG"} - "j" { - :type :expr, :by "root", :at 1517498969143, :id "BkzZDM2e8f" - :data { - "T" {:type :leaf, :by "root", :at 1517498988405, :text ":workflows", :id "B1W-DG2lIz"} - "j" {:type :leaf, :by "root", :at 1517499088854, :text "workflows", :id "ByZOAfhlLM"} - } - } - } - } - } - } - "p" { - :type :expr, :by "root", :at 1517498994416, :id "BJxcdGngIM" - :data { - "T" {:type :leaf, :by "root", :at 1517498996326, :text ":home", :id "BJxcdGngIMleaf"} - "j" { - :type :expr, :by "root", :at 1517498996645, :id "BkpOGneUf" - :data { - "T" {:type :leaf, :by "root", :at 1517499019567, :text "{}", :id "Hkm3_fhxIG"} - "j" { - :type :expr, :by "root", :at 1517499019888, :id "B1z4qGng8z" - :data { - "T" {:type :leaf, :by "root", :at 1517499021903, :text ":processes", :id "Hk-Ecz2eUM"} - "j" {:type :leaf, :by "root", :at 1517499092114, :text "processes", :id "By-c0GhlUG"} - } - } - "r" { - :type :expr, :by "root", :at 1517499026271, :id "ry-qqf3l8z" - :data { - "T" {:type :leaf, :by "root", :at 1517503820912, :text ":workflows", :id "ry-qqf3l8zleaf"} - "j" {:type :leaf, :by "root", :at 1517503827479, :text "workflows", :id "S1-r8rplLM"} - } - } - } - } - } - } - "q" { - :type :expr, :by "root", :at 1517671311691, :id "r1_cX8QUf" - :data { - "T" {:type :leaf, :by "root", :at 1517671314375, :text ":process", :id "r1_cX8QUfleaf"} - "j" { - :type :expr, :by "root", :at 1517671319254, :id "rkxyom8XIf" - :data { - "D" {:type :leaf, :by "root", :at 1517671319942, :text "let", :id "HkgjQ8m8M"} - "L" { - :type :expr, :by "root", :at 1517671320869, :id "ryxZo7UXIM" - :data { - "T" { - :type :expr, :by "root", :at 1517671321018, :id "B1ZZjmIm8f" - :data { - "T" {:type :leaf, :by "root", :at 1517671323813, :text "process-id", :id "S1WomLm8z"} - "j" { - :type :expr, :by "root", :at 1517671328273, :id "r1_oX878G" - :data { - "T" {:type :leaf, :by "root", :at 1517671330473, :text "->", :id "SJGNsm8m8z"} - "j" {:type :leaf, :by "root", :at 1517671341682, :text "router", :id "B1io78m8G"} - "r" {:type :leaf, :by "root", :at 1517671344582, :text ":params", :id "HJbLn7LXLf"} - "v" {:type :leaf, :by "root", :at 1517671345363, :text ":id", :id "BygKhm8QIG"} - } - } - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517671315696, :id "Hkn57UQ8G" - :data { - "T" {:type :leaf, :by "root", :at 1517671360740, :text "get", :id "S1ic78X8G"} - "j" {:type :leaf, :by "root", :at 1517671358969, :text "processes", :id "HkepXLXLz"} - "r" {:type :leaf, :by "root", :at 1517671363063, :text "process-id", :id "S1ftTmIQIG"} - } - } - } - } - } - } - "r" {:type :leaf, :by "root", :at 1517498852502, :text "router", :id "SJ-iyM2x8G"} - } - } - } - } - } - } - } - } - "v" {:type :leaf, :text "nil", :id "ryg7ssXahb", :by "root", :at 1507830683551} - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :id "H1ubxLZx0SZ", :by nil, :at 1500541255553 - :data {} - } - } - "server.twig.user" { - :ns { - :type :expr, :id "rJ7t7eU-lRrZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkVF7xUWgASZ", :text "ns", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rkrFQxUZxRBb", :text "server.twig.user", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "By8K7xL-eArW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HyvKQx8WlRHW", :text ":require", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rJdKQgIbxCSW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkKF7eLWgCHb", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BJcKXg8WgRH-", :text "recollect.macros", :by "root", :at 1511004268753} - "r" {:type :leaf, :id "H1iKQx8WeASZ", :text ":refer", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "S1nYXeLbxRHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Sk6Kmx8blRHW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJCKmgIZg0BW", :text "deftwig", :by "root", :at 1511004273474} - } - } - } - } - } - } - } - } - :defs { - "twig-user" { - :type :expr, :id "SJxcQeIWxASZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1ZqXeIblCH-", :text "deftwig", :by "root", :at 1511004265893} - "j" {:type :leaf, :id "ByzcXgUblRBW", :text "twig-user", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "ByuqXg8ZxArZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJY57eLWxAH-", :text "user", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "Hk99QgIbxAHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Bkjc7xUZlCSW", :text "dissoc", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJ3qXeIbxRHW", :text "user", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "rk6cXgLZx0HZ", :text ":password", :by "root", :at 1500541255553} - } - } - } - } - } - :proc { - :type :expr, :id "H1JqQxLblABb", :by nil, :at 1500541255553 - :data {} - } - } - "server.updater.core" { - :ns { - :type :expr, :id "BJR97lLZlRSZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ry1omxI-g0r-", :text "ns", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ryxjmgIZgArZ", :text "server.updater.core", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "SJ-o7eUZlRBZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkGj7eUZgCrZ", :text ":require", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "S1momeUWgRHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkEsmx8Wg0rZ", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BySiQgUZxCS-", :text "server.updater.session", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "S1Ismg8blABW", :text ":as", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "BkDsme8-l0H-", :text "session", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "S1uoQlLWe0HW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1FoXeI-e0BZ", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "H19oXxI-xAH-", :text "server.updater.user", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "HyojQg8WeCH-", :text ":as", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "SJ2o7eIWeAHb", :text "user", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "BkTsXxUbg0S-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Sy0sXlLbxRBb", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "B1J3XgIZe0SZ", :text "server.updater.router", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "rkgnmg8-x0BZ", :text ":as", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "HkZ3XxLZlCSW", :text "router", :by "root", :at 1500541255553} - } - } - "x" { - :type :expr, :by "root", :at 1517154847718, :id "ryxOQf_sHM" - :data { - "T" {:type :leaf, :by "root", :at 1517154848618, :text "[]", :id "ryxOQf_sHMleaf"} - "j" {:type :leaf, :by "root", :at 1517154852351, :text "server.updater.process", :id "S1etXz_iHf"} - "r" {:type :leaf, :by "root", :at 1517154853028, :text ":as", :id "H1TXzdsrG"} - "v" {:type :leaf, :by "root", :at 1517154854018, :text "process", :id "rkmTXfusSG"} - } - } - "y" { - :type :expr, :by "root", :at 1517154847718, :id "rklW7E2nrG" - :data { - "T" {:type :leaf, :by "root", :at 1517154848618, :text "[]", :id "ryxOQf_sHMleaf"} - "j" {:type :leaf, :by "root", :at 1517237276441, :text "server.updater.workflow", :id "S1etXz_iHf"} - "r" {:type :leaf, :by "root", :at 1517154853028, :text ":as", :id "H1TXzdsrG"} - "v" {:type :leaf, :by "root", :at 1517237278302, :text "workflow", :id "rkmTXfusSG"} - } - } - } - } - } - } - :defs { - "updater" { - :type :expr, :id "Hk7nmeIbx0SZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkV3Qe8WlRHb", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Hkrn7xI-gASZ", :text "updater", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "rk82mlUZxRB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Byw3XlIZg0B-", :text "db", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "H1_hme8WxAr-", :text "op", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "ByY2QgLbxArZ", :text "op-data", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "H1537x8-gABW", :text "sid", :by "root", :at 1517154757460} - "x" {:type :leaf, :id "Hksn7xL-gASW", :text "op-id", :by "root", :at 1500541255553} - "y" {:type :leaf, :id "SJ22mx8ZeRBb", :text "op-time", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "BJ6hmlU-lASb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJ0h7eUbg0rb", :text "case", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJyaXeU-gRBZ", :text "op", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "HygpXe8Ze0Sb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJZ6XxLWe0HW", :text ":session/connect", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SkMpXg8Wx0SZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJ7TXlUZlAB-", :text "session/connect", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJNameI-x0rZ", :text "db", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "BJBpQeIWlCrW", :text "op-data", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "ByU67l8ZxRS-", :text "sid", :by "root", :at 1517154760357} - "x" {:type :leaf, :id "r1v6Qe8Zl0B-", :text "op-id", :by "root", :at 1500541255553} - "y" {:type :leaf, :id "r1u6meI-xRr-", :text "op-time", :by "root", :at 1500541255553} - } - } - } - } - "v" { - :type :expr, :id "r1KaQgU-xRrW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1cTQlUWlASW", :text ":session/disconnect", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HJspmgUbeCSW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Hk36XxI-e0r-", :text "session/disconnect", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "H1pp7lIbgAHb", :text "db", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SJRpmx8WeRHZ", :text "op-data", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "BkyRQg8ZxCrZ", :text "sid", :by "root", :at 1517154761603} - "x" {:type :leaf, :id "SJeCXxUbeASW", :text "op-id", :by "root", :at 1500541255553} - "y" {:type :leaf, :id "rybR7eIZe0rb", :text "op-time", :by "root", :at 1500541255553} - } - } - } - } - "x" { - :type :expr, :id "r1fCQxUWe0rb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Bkm0mgLZx0S-", :text ":user/log-in", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rJVAmlI-eRBZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkBRmgLWg0BW", :text "user/log-in", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJU0XlIZe0S-", :text "db", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "r1v0Xe8-lCrW", :text "op-data", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "rJuA7eI-lRB-", :text "sid", :by "root", :at 1517154762895} - "x" {:type :leaf, :id "H1tAmlI-xRrZ", :text "op-id", :by "root", :at 1500541255553} - "y" {:type :leaf, :id "H15RQgIZgCBb", :text "op-time", :by "root", :at 1500541255553} - } - } - } - } - "y" { - :type :expr, :id "rksRmlIZlCSW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ry3Cmx8blABb", :text ":user/sign-up", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SJpRXeUblAS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1ARXgLbe0H-", :text "user/sign-up", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ByJyVeL-e0SW", :text "db", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "r1lJExUbe0Bb", :text "op-data", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "Hy-yVe8ZgABb", :text "sid", :by "root", :at 1517154763884} - "x" {:type :leaf, :id "ryGy4xU-lASb", :text "op-id", :by "root", :at 1500541255553} - "y" {:type :leaf, :id "SJXk4lUbgRBZ", :text "op-time", :by "root", :at 1500541255553} - } - } - } - } - "yT" { - :type :expr, :id "B1V1Nl8Zx0BZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1rJ4eIblRr-", :text ":user/log-out", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "S1IJ4gLbgCBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ryvkVgIbg0rW", :text "user/log-out", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HyOyEgU-lCHZ", :text "db", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "S1FJNgIWgRSW", :text "op-data", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "HyqyNxLbxCrZ", :text "sid", :by "root", :at 1517154764908} - "x" {:type :leaf, :id "HJo1VeIZeCHb", :text "op-id", :by "root", :at 1500541255553} - "y" {:type :leaf, :id "HJhyNeUbxCB-", :text "op-time", :by "root", :at 1500541255553} - } - } - } - } - "yj" { - :type :expr, :id "BypyNl8WxAB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1CJ4xUWx0rW", :text ":session/remove-notification", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "B11g4e8-gCSZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJegNeL-gRr-", :text "session/remove-notification", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SyZlEe8ZlCSW", :text "db", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "HJMlVg8-gRr-", :text "op-data", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "ryXgNxLbg0r-", :text "sid", :by "root", :at 1517154766149} - "x" {:type :leaf, :id "By4l4gLZgCBb", :text "op-id", :by "root", :at 1500541255553} - "y" {:type :leaf, :id "ryBe4gIbl0SW", :text "op-time", :by "root", :at 1500541255553} - } - } - } - } - "yr" { - :type :expr, :id "HyUe4gLbxCr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJDxEeLWgASb", :text ":router/change", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "r1dgVlUbg0r-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1tl4lIZx0SW", :text "router/change", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "H1qxExIWgRBW", :text "db", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "S1ol4lLWgCHW", :text "op-data", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "rk2xVx8ZeRrZ", :text "sid", :by "root", :at 1517154767477} - "x" {:type :leaf, :id "r1axElLZgCHW", :text "op-id", :by "root", :at 1500541255553} - "y" {:type :leaf, :id "ry0gNeU-l0SW", :text "op-time", :by "root", :at 1500541255553} - } - } - } - } - "yt" { - :type :expr, :by "root", :at 1517154728270, :id "Bklgnb_sHz" - :data { - "T" {:type :leaf, :by "root", :at 1517154737872, :text ":process/create", :id "Bklgnb_sHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "SJonZOirf" - :data { - "T" {:type :leaf, :by "root", :at 1517154741432, :text "process/create", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yu" { - :type :expr, :by "root", :at 1517154728270, :id "ryjA-_oSG" - :data { - "T" {:type :leaf, :by "root", :at 1517154774944, :text ":process/kill", :id "Bklgnb_sHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "SJonZOirf" - :data { - "T" {:type :leaf, :by "root", :at 1517154776820, :text "process/kill", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yuT" { - :type :expr, :by "root", :at 1517154728270, :id "BJxzJGuorz" - :data { - "T" {:type :leaf, :by "root", :at 1517154780921, :text ":process/stdout", :id "Bklgnb_sHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "SJonZOirf" - :data { - "T" {:type :leaf, :by "root", :at 1517154783867, :text "process/stdout", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yuj" { - :type :expr, :by "root", :at 1517154728270, :id "B1WG1f_oSG" - :data { - "T" {:type :leaf, :by "root", :at 1517154786652, :text ":process/stderr", :id "Bklgnb_sHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "SJonZOirf" - :data { - "T" {:type :leaf, :by "root", :at 1517154790952, :text "process/stderr", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yur" { - :type :expr, :by "root", :at 1517154728270, :id "SyJoNGhSz" - :data { - "T" {:type :leaf, :by "root", :at 1517196440668, :text ":process/clear", :id "Bklgnb_sHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "SJonZOirf" - :data { - "T" {:type :leaf, :by "root", :at 1517196442456, :text "process/clear", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yuv" { - :type :expr, :by "root", :at 1517154728270, :id "SygSNDMnBM" - :data { - "T" {:type :leaf, :by "root", :at 1517197103206, :text ":process/finish", :id "Bklgnb_sHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "SJonZOirf" - :data { - "T" {:type :leaf, :by "root", :at 1517197105069, :text "process/finish", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yux" { - :type :expr, :by "root", :at 1517154728270, :id "r1loueHnBG" - :data { - "T" {:type :leaf, :by "root", :at 1517207668490, :text ":process/shorten-content", :id "Bklgnb_sHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "SJonZOirf" - :data { - "T" {:type :leaf, :by "root", :at 1517207670135, :text "process/shorten-content", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yuy" { - :type :expr, :by "root", :at 1517237258039, :id "HyMMVnhHz" - :data { - "T" {:type :leaf, :by "root", :at 1517328556600, :text ":workflow/create", :id "HyMMVnhHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "BJWoM4n3HG" - :data { - "T" {:type :leaf, :by "root", :at 1517328559867, :text "workflow/create-workflow", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yuyD" { - :type :expr, :by "root", :at 1517237258039, :id "Hk2kKzAHz" - :data { - "T" {:type :leaf, :by "root", :at 1517328615147, :text ":workflow/remove", :id "HyMMVnhHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "BJWoM4n3HG" - :data { - "T" {:type :leaf, :by "root", :at 1517328616735, :text "workflow/remove-workflow", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yuyT" { - :type :expr, :by "root", :at 1517237258039, :id "rygK5LM0rf" - :data { - "T" {:type :leaf, :by "root", :at 1517328021798, :text ":workflow/add-command", :id "HyMMVnhHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "BJWoM4n3HG" - :data { - "T" {:type :leaf, :by "root", :at 1517328023980, :text "workflow/add-command", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yuyj" { - :type :expr, :by "root", :at 1517237258039, :id "rJFbuMCrf" - :data { - "T" {:type :leaf, :by "root", :at 1517328386389, :text ":workflow/remove-command", :id "HyMMVnhHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "BJWoM4n3HG" - :data { - "T" {:type :leaf, :by "root", :at 1517328388027, :text "workflow/remove-command", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yuyn" { - :type :expr, :by "root", :at 1517237258039, :id "S1gOyvPkLG" - :data { - "T" {:type :leaf, :by "root", :at 1517414119832, :text ":workflow/edit-command", :id "HyMMVnhHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "BJWoM4n3HG" - :data { - "T" {:type :leaf, :by "root", :at 1517414117964, :text "workflow/edit-command", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yuyr" { - :type :expr, :by "root", :at 1517237258039, :id "SJaAQwJ8f" - :data { - "T" {:type :leaf, :by "root", :at 1517413335987, :text ":workflow/edit", :id "HyMMVnhHzleaf"} - "j" { - :type :expr, :by "root", :at 1517154738952, :id "BJWoM4n3HG" - :data { - "T" {:type :leaf, :by "root", :at 1517413340900, :text "workflow/edit-workflow", :id "r1Ecn-diSz"} - "j" {:type :leaf, :by "root", :at 1517154744241, :text "db", :id "S1v63ZuoBf"} - "r" {:type :leaf, :by "root", :at 1517154746940, :text "op-data", :id "SyQlpW_jrG"} - "v" {:type :leaf, :by "root", :at 1517154768546, :text "sid", :id "SkGmpWOjrM"} - "x" {:type :leaf, :by "root", :at 1517154752545, :text "op-id", :id "rk_aZusBf"} - "y" {:type :leaf, :by "root", :at 1517154754041, :text "op-time", :id "S1xt6buiHG"} - } - } - } - } - "yv" {:type :leaf, :id "BykZNlLbxRSW", :text "db", :by "root", :at 1500541255553} - } - } - } - } - } - :proc { - :type :expr, :id "SkfhmgLbxRHb", :by nil, :at 1500541255553 - :data {} - } - } - "server.updater.process" { - :ns { - :type :expr, :by "root", :at 1517154858819, :id "BkeX4z_irM" - :data { - "T" {:type :leaf, :by "root", :at 1517154858819, :text "ns", :id "HJZ7VzdjrM"} - "j" {:type :leaf, :by "root", :at 1517154858819, :text "server.updater.process", :id "H1GXNzuorM"} - "r" { - :type :expr, :by "root", :at 1517155147423, :id "S1bXUXuoSG" - :data { - "T" {:type :leaf, :by "root", :at 1517155150067, :text ":require", :id "S1em8X_oBf"} - "j" { - :type :expr, :by "root", :at 1517155150418, :id "HJ8IIQdjBG" - :data { - "T" {:type :leaf, :by "root", :at 1517155150686, :text "[]", :id "SyB8LmdiSM"} - "j" {:type :leaf, :by "root", :at 1517155153556, :text "server.schema", :id "rJ-wIQuoHf"} - "r" {:type :leaf, :by "root", :at 1517155153951, :text ":as", :id "rJg58Q_irM"} - "v" {:type :leaf, :by "root", :at 1517155154652, :text "schema", :id "r1NcUXusrf"} - } - } - } - } - } - } - :defs { - "clear" { - :type :expr, :by "root", :at 1517196409766, :id "HyezFVM3rz" - :data { - "T" {:type :leaf, :by "root", :at 1517196409766, :text "defn", :id "S1ZGYVM3Hz"} - "j" {:type :leaf, :by "root", :at 1517196409766, :text "clear", :id "ryzGFNznrz"} - "r" { - :type :expr, :by "root", :at 1517196409766, :id "BJQfY4GhSf" - :data { - "T" {:type :leaf, :by "root", :at 1517196413696, :text "db", :id "SkZ4tEznBG"} - "j" {:type :leaf, :by "root", :at 1517196414925, :text "op-data", :id "ryxIYNG3HG"} - "r" {:type :leaf, :by "root", :at 1517196418460, :text "sid", :id "BymDF4MhHM"} - "v" {:type :leaf, :by "root", :at 1517196419855, :text "op-id", :id "BJiK4MhSG"} - "x" {:type :leaf, :by "root", :at 1517196420938, :text "op-time", :id "SJe2FNG2SM"} - } - } - "x" { - :type :expr, :by "root", :at 1517204791609, :id "ByxHrN3Hz" - :data { - "T" {:type :leaf, :by "root", :at 1517204793556, :text "update", :id "ByxHrN3Hzleaf"} - "j" {:type :leaf, :by "root", :at 1517204794670, :text "db", :id "ByxzSSEhSG"} - "r" {:type :leaf, :by "root", :at 1517204799040, :text ":processes", :id "HkQNBrN3Hz"} - "v" { - :type :expr, :by "root", :at 1517204799835, :id "S1euSSEnBG" - :data { - "T" {:type :leaf, :by "root", :at 1517204800260, :text "fn", :id "SJ_Br4hBz"} - "j" { - :type :expr, :by "root", :at 1517204800449, :id "S1VuBSN3HM" - :data { - "T" {:type :leaf, :by "root", :at 1517204801945, :text "processes", :id "Bk7OrHNnBG"} - } - } - "r" { - :type :expr, :by "root", :at 1517204802613, :id "Sksrr42HG" - :data { - "T" {:type :leaf, :by "root", :at 1517204805828, :text "->>", :id "Sksrr42HGleaf"} - "j" {:type :leaf, :by "root", :at 1517204807806, :text "processes", :id "Sy-AHB43BM"} - "r" { - :type :expr, :by "root", :at 1517204808793, :id "Hke-8HV2BM" - :data { - "T" {:type :leaf, :by "root", :at 1517204820050, :text "filter", :id "SJbIr42HM"} - "j" { - :type :expr, :by "root", :at 1517204809929, :id "rkgfUBE3Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517204810694, :text "fn", :id "HkMISNnSz"} - "j" { - :type :expr, :by "root", :at 1517204810929, :id "ryfmUHV3Sf" - :data { - "T" { - :type :expr, :by "root", :at 1517204812189, :id "SJVUB4nSz" - :data { - "T" {:type :leaf, :by "root", :at 1517204812436, :text "[]", :id "SkWQLr42Hz"} - "j" {:type :leaf, :by "root", :at 1517204814659, :text "pid", :id "H1B8BVhBz"} - "r" {:type :leaf, :by "root", :at 1517204815724, :text "process", :id "B1gvUSVnSG"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517204827607, :id "S1NwSEhBG" - :data { - "T" {:type :leaf, :by "root", :at 1517204830586, :text ":alive?", :id "S1NwSEhBGleaf"} - "j" {:type :leaf, :by "root", :at 1517204832103, :text "process", :id "BJeDDHE2HG"} - } - } - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517204821604, :id "ByAIHE2BM" - :data { - "T" {:type :leaf, :by "root", :at 1517204823125, :text "into", :id "ByAIHE2BMleaf"} - "j" { - :type :expr, :by "root", :at 1517204823729, :id "BJxvBVnSf" - :data { - "T" {:type :leaf, :by "root", :at 1517204853331, :text "{}", :id "SJN1PBV2SM"} - } - } - } - } - } - } - } - } - } - } - } - } - "create" { - :type :expr, :by "root", :at 1517154861078, :id "SyxrEz_sBG" - :data { - "T" {:type :leaf, :by "root", :at 1517154861078, :text "defn", :id "rk-HVz_oBz"} - "j" {:type :leaf, :by "root", :at 1517154861078, :text "create", :id "BkfB4GuoHf"} - "r" { - :type :expr, :by "root", :at 1517154861078, :id "BJQS4z_sHz" - :data { - "T" {:type :leaf, :by "root", :at 1517154870062, :text "db", :id "r1-6Ef_oSf"} - "j" {:type :leaf, :by "root", :at 1517154871125, :text "op-data", :id "SkbC4fuiHf"} - "r" {:type :leaf, :by "root", :at 1517154872574, :text "sid", :id "BkVJSMuiSz"} - "v" {:type :leaf, :by "root", :at 1517154884767, :text "op-id", :id "BJxZrG_iSz"} - "x" {:type :leaf, :by "root", :at 1517154886046, :text "op-time", :id "Hk-6BMdiBG"} - } - } - "v" { - :type :expr, :by "root", :at 1517498616372, :id "r1lZWneLG" - :data { - "D" {:type :leaf, :by "root", :at 1517498617475, :text "->", :id "H1--ZhxIz"} - "L" {:type :leaf, :by "root", :at 1517498617890, :text "db", :id "HkMZ-3e8z"} - "T" { - :type :expr, :by "root", :at 1517154887600, :id "BygIGdjBG" - :data { - "T" {:type :leaf, :by "root", :at 1517154892181, :text "assoc-in", :id "BygIGdjBGleaf"} - "r" { - :type :expr, :by "root", :at 1517154893603, :id "Sk8LMdorG" - :data { - "T" {:type :leaf, :by "root", :at 1517154893945, :text "[]", :id "BJfHUzdsSM"} - "j" {:type :leaf, :by "root", :at 1517154898402, :text ":processes", :id "BkGLUfdsBG"} - "r" { - :type :expr, :by "root", :at 1517196349138, :id "B1xHHVGhBf" - :data { - "T" {:type :leaf, :by "root", :at 1517196350887, :text ":pid", :id "rkkvfOjBG"} - "j" {:type :leaf, :by "root", :at 1517196353337, :text "op-data", :id "ryuBVM3rG"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517154905901, :id "BkeCYXOsSM" - :data { - "T" {:type :leaf, :by "root", :at 1517154909056, :text "merge", :id "HyMPMOsSG"} - "j" {:type :leaf, :by "root", :at 1517154912361, :text "schema/process", :id "rkNrvMdiSf"} - "r" {:type :leaf, :by "root", :at 1517154944130, :text "op-data", :id "ByxvYG_jSG"} - "v" { - :type :expr, :by "root", :at 1517154944498, :id "Bkr_YfuoHz" - :data { - "T" {:type :leaf, :by "root", :at 1517154944851, :text "{}", :id "HyE_tfOiBf"} - "j" { - :type :expr, :by "root", :at 1517154945126, :id "ryGFYMusrz" - :data { - "T" {:type :leaf, :by "root", :at 1517154955649, :text ":started-at", :id "r1-YFfuiBG"} - "j" {:type :leaf, :by "root", :at 1517154957603, :text "op-time", :id "ry-N9M_iSG"} - } - } - "r" { - :type :expr, :by "root", :at 1517197035737, :id "rJVgDznHz" - :data { - "T" {:type :leaf, :by "root", :at 1517197037328, :text ":alive?", :id "rJVgDznHzleaf"} - "j" {:type :leaf, :by "root", :at 1517197037956, :text "true", :id "B1MSlvz2rf"} - } - } - } - } - } - } - } - } - "j" { - :type :expr, :by "root", :at 1517498621665, :id "SyUWWhe8f" - :data { - "T" {:type :leaf, :by "root", :at 1517498771192, :text "update", :id "SyUWWhe8fleaf"} - "n" {:type :leaf, :by "root", :at 1517498629509, :text ":histories", :id "Sy-5ZZneIG"} - "r" { - :type :expr, :by "root", :at 1517498777239, :id "HyxZobhlUf" - :data { - "D" {:type :leaf, :by "root", :at 1517498778384, :text "fn", :id "Byfsb3eIf"} - "L" { - :type :expr, :by "root", :at 1517498778682, :id "ryQi-2g8G" - :data { - "T" {:type :leaf, :by "root", :at 1517498780285, :text "histories", :id "BJGGiZ3gLG"} - } - } - "T" { - :type :expr, :by "root", :at 1517498775028, :id "Skx1o-hxUz" - :data { - "D" {:type :leaf, :by "root", :at 1517498775946, :text "conj", :id "B1bkib2x8M"} - "L" {:type :leaf, :by "root", :at 1517498784941, :text "histories", :id "rkPib2lIG"} - "T" { - :type :expr, :by "root", :at 1517498642761, :id "S1jMZnlIz" - :data { - "T" {:type :leaf, :by "root", :at 1517498644003, :text "merge", :id "S1jMZnlIzleaf"} - "j" {:type :leaf, :by "root", :at 1517498697246, :text "schema/history", :id "SJAGW2xLf"} - "r" { - :type :expr, :by "root", :at 1517498698092, :id "HJxG8bnxLM" - :data { - "T" {:type :leaf, :by "root", :at 1517498710467, :text "{}", :id "BkML-3e8z"} - "j" { - :type :expr, :by "root", :at 1517498710787, :id "S1e1vZnxLz" - :data { - "T" {:type :leaf, :by "root", :at 1517498714048, :text ":command", :id "SJJDW3xIz"} - "j" { - :type :expr, :by "root", :at 1517498716788, :id "rkHDWng8z" - :data { - "T" {:type :leaf, :by "root", :at 1517498717808, :text ":command", :id "ByXwb3eUM"} - "j" {:type :leaf, :by "root", :at 1517498720194, :text "op-data", :id "ryf8vbnl8f"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517498722181, :id "Bkg9DW2gUM" - :data { - "T" {:type :leaf, :by "root", :at 1517498724252, :text ":cwd", :id "Bkg9DW2gUMleaf"} - "j" { - :type :expr, :by "root", :at 1517498724854, :id "Sk6Pb3xUf" - :data { - "T" {:type :leaf, :by "root", :at 1517498726776, :text ":cwd", :id "BJMhvb2lIG"} - "j" {:type :leaf, :by "root", :at 1517498728135, :text "op-data", :id "BJb1O-2eLf"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517498731763, :id "HJNO-3gIf" - :data { - "T" {:type :leaf, :by "root", :at 1517498734300, :text ":started-at", :id "HJNO-3gIfleaf"} - "j" {:type :leaf, :by "root", :at 1517498736484, :text "op-time", :id "r1v_Z3lIz"} - } - } - "x" { - :type :expr, :by "root", :at 1517498737793, :id "rJxqub3gLf" - :data { - "T" {:type :leaf, :by "root", :at 1517498739512, :text ":id", :id "rJxqub3gLfleaf"} - "j" {:type :leaf, :by "root", :at 1517498742391, :text "op-id", :id "rk2_W3x8M"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "error" { - :type :expr, :by "root", :at 1517559407537, :id "B1l_dR9ZUz" - :data { - "T" {:type :leaf, :by "root", :at 1517559407537, :text "defn", :id "SJW_dR9b8G"} - "j" {:type :leaf, :by "root", :at 1517559407537, :text "error", :id "rJGOuRqZIf"} - "r" { - :type :expr, :by "root", :at 1517154861078, :id "BJQS4z_sHz" - :data { - "T" {:type :leaf, :by "root", :at 1517154870062, :text "db", :id "r1-6Ef_oSf"} - "j" {:type :leaf, :by "root", :at 1517154871125, :text "op-data", :id "SkbC4fuiHf"} - "r" {:type :leaf, :by "root", :at 1517154872574, :text "sid", :id "BkVJSMuiSz"} - "v" {:type :leaf, :by "root", :at 1517154884767, :text "op-id", :id "BJxZrG_iSz"} - "x" {:type :leaf, :by "root", :at 1517154886046, :text "op-time", :id "Hk-6BMdiBG"} - } - } - "v" { - :type :expr, :by "root", :at 1517559458571, :id "ryjiAcWIG" - :data { - "D" {:type :leaf, :by "root", :at 1517559459498, :text "let", :id "H1xijA5ZIG"} - "L" { - :type :expr, :by "root", :at 1517559459710, :id "r1e3iC5WUz" - :data { - "T" { - :type :expr, :by "root", :at 1517559464333, :id "HJ-g209-IM" - :data { - "T" { - :type :expr, :by "root", :at 1517559459849, :id "BJbnsAqbIz" - :data { - "T" {:type :leaf, :by "root", :at 1517559460734, :text "[]", :id "SkhjRqb8z"} - "j" {:type :leaf, :by "root", :at 1517559461468, :text "pid", :id "SJlpjC5bUM"} - "r" {:type :leaf, :by "root", :at 1517559463536, :text "data", :id "SkCiR5-If"} - } - } - "j" {:type :leaf, :by "root", :at 1517559466284, :text "op-data", :id "HyWn09WUf"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517155058151, :id "SklbsCqZIf" - :data { - "T" {:type :leaf, :by "root", :at 1517155062246, :text "update-in", :id "S1lqgmOjSfleaf"} - "j" {:type :leaf, :by "root", :at 1517155062594, :text "db", :id "B1GAgmuoHf"} - "r" { - :type :expr, :by "root", :at 1517155062913, :id "H1fyWQOjHG" - :data { - "T" {:type :leaf, :by "root", :at 1517155063121, :text "[]", :id "B1ZJWmOjrf"} - "j" {:type :leaf, :by "root", :at 1517155065198, :text ":processes", :id "rJByb7_iBf"} - "p" {:type :leaf, :by "root", :at 1517559470648, :text "pid", :id "BJeSnR9ZUf"} - "v" {:type :leaf, :by "root", :at 1517155078451, :text ":content", :id "SysWm_iHz"} - } - } - "v" { - :type :expr, :by "root", :at 1517155082278, :id "SklzMm_sHM" - :data { - "T" {:type :leaf, :by "root", :at 1517155084630, :text "fn", :id "SklzMm_sHMleaf"} - "j" { - :type :expr, :by "root", :at 1517155084884, :id "SkzHfXOsHf" - :data { - "T" {:type :leaf, :by "root", :at 1517155086697, :text "content", :id "H1bSzXusBf"} - } - } - "r" { - :type :expr, :by "root", :at 1517155087171, :id "rk4PfXuirz" - :data { - "T" {:type :leaf, :by "root", :at 1517155088820, :text "conj", :id "rk4PfXuirzleaf"} - "j" {:type :leaf, :by "root", :at 1517155091527, :text "content", :id "By7KGQuoHz"} - "r" { - :type :expr, :by "root", :at 1517155093775, :id "BJAG7uoBM" - :data { - "T" {:type :leaf, :by "root", :at 1517155094499, :text "{}", :id "HyZTzXusSz"} - "j" { - :type :expr, :by "root", :at 1517155094821, :id "rJgJmm_jBM" - :data { - "T" {:type :leaf, :by "root", :at 1517155097501, :text ":type", :id "Sy1m7uoSf"} - "j" {:type :leaf, :by "root", :at 1517559451564, :text ":error", :id "S1GQQ_jrf"} - } - } - "r" { - :type :expr, :by "root", :at 1517155105054, :id "ryzFm7usSG" - :data { - "T" {:type :leaf, :by "root", :at 1517155115832, :text ":data", :id "ryzFm7usSGleaf"} - "j" {:type :leaf, :by "root", :at 1517559477290, :text "data", :id "rkln2Ccb8M"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "finish" { - :type :expr, :by "root", :at 1517197071424, :id "S1ewzDM2BM" - :data { - "T" {:type :leaf, :by "root", :at 1517197071424, :text "defn", :id "r1ZwzvM3rz"} - "j" {:type :leaf, :by "root", :at 1517197071424, :text "finish", :id "HJfDMDz2Sz"} - "n" { - :type :expr, :by "root", :at 1517197082113, :id "HkWzQPMhHM" - :data { - "T" {:type :leaf, :by "root", :at 1517197082482, :text "db", :id "rJgfXwz2rf"} - "j" {:type :leaf, :by "root", :at 1517197085542, :text "op-data", :id "Hk7QDG3BM"} - "r" {:type :leaf, :by "root", :at 1517197086356, :text "sid", :id "SJxUXDfhHG"} - "v" {:type :leaf, :by "root", :at 1517197088550, :text "op-id", :id "Sk4UQwz3rM"} - "x" {:type :leaf, :by "root", :at 1517197089692, :text "op-time", :id "S1etXwGhrf"} - } - } - "r" { - :type :expr, :by "root", :at 1517154983105, :id "S1Z7vM3BM" - :data { - "T" {:type :leaf, :by "root", :at 1517155014882, :text "assoc-in", :id "Byek3M_sHfleaf"} - "j" {:type :leaf, :by "root", :at 1517155018067, :text "db", :id "B1b0fdoHM"} - "r" { - :type :expr, :by "root", :at 1517155018313, :id "HJXGRzusHM" - :data { - "T" {:type :leaf, :by "root", :at 1517155018495, :text "[]", :id "rkGMAG_jBf"} - "j" {:type :leaf, :by "root", :at 1517155020533, :text ":processes", :id "SyQ0zdsrz"} - "r" {:type :leaf, :by "root", :at 1517155027093, :text "op-data", :id "SJURGdsHG"} - "v" {:type :leaf, :by "root", :at 1517155031760, :text ":alive?", :id "SyyJmdoBG"} - } - } - "v" {:type :leaf, :by "root", :at 1517155034248, :text "false", :id "B1G17djBM"} - } - } - } - } - "kill" { - :type :expr, :by "root", :at 1517154862890, :id "HygvNGdsrG" - :data { - "T" {:type :leaf, :by "root", :at 1517154862890, :text "defn", :id "rJ-P4f_jHM"} - "j" {:type :leaf, :by "root", :at 1517154862890, :text "kill", :id "H1Gw4z_orM"} - "r" { - :type :expr, :by "root", :at 1517154862890, :id "HkXwNzOsBG" - :data { - "T" {:type :leaf, :by "root", :at 1517154975755, :text "db", :id "HkfIjzdsBG"} - "j" {:type :leaf, :by "root", :at 1517154976787, :text "op-data", :id "rJbOizOsHG"} - "r" {:type :leaf, :by "root", :at 1517154978939, :text "sid", :id "rkzYoGuorM"} - "v" {:type :leaf, :by "root", :at 1517154980841, :text "op-id", :id "H1zjifdiSM"} - "x" {:type :leaf, :by "root", :at 1517154981831, :text "op-time", :id "Hygpsf_sSM"} - } - } - "v" { - :type :expr, :by "root", :at 1517154983105, :id "Byek3M_sHf" - :data { - "T" {:type :leaf, :by "root", :at 1517155014882, :text "assoc-in", :id "Byek3M_sHfleaf"} - "j" {:type :leaf, :by "root", :at 1517155018067, :text "db", :id "B1b0fdoHM"} - "r" { - :type :expr, :by "root", :at 1517155018313, :id "HJXGRzusHM" - :data { - "T" {:type :leaf, :by "root", :at 1517155018495, :text "[]", :id "rkGMAG_jBf"} - "j" {:type :leaf, :by "root", :at 1517155020533, :text ":processes", :id "SyQ0zdsrz"} - "r" {:type :leaf, :by "root", :at 1517155027093, :text "op-data", :id "SJURGdsHG"} - "v" {:type :leaf, :by "root", :at 1517155031760, :text ":alive?", :id "SyyJmdoBG"} - } - } - "v" {:type :leaf, :by "root", :at 1517155034248, :text "false", :id "B1G17djBM"} - } - } - } - } - "shorten-content" { - :type :expr, :by "root", :at 1517207671003, :id "BJeJFgS3HM" - :data { - "T" {:type :leaf, :by "root", :at 1517207671003, :text "defn", :id "HyZytxr2rz"} - "j" {:type :leaf, :by "root", :at 1517207671003, :text "shorten-content", :id "H1MytgShrG"} - "r" { - :type :expr, :by "root", :at 1517207671003, :id "SkmyFxB3Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517207672784, :text "db", :id "SkGetxB3HM"} - "j" {:type :leaf, :by "root", :at 1517207674465, :text "op-data", :id "SyWZKxH2Sz"} - "r" {:type :leaf, :by "root", :at 1517207676316, :text "sid", :id "Hk7YgS3Hf"} - "v" {:type :leaf, :by "root", :at 1517207677832, :text "op-id", :id "HyXNKernHM"} - "x" {:type :leaf, :by "root", :at 1517207679717, :text "op-time", :id "rJZLFxShrG"} - } - } - "v" { - :type :expr, :by "root", :at 1517207680605, :id "B1FteS3rf" - :data { - "T" {:type :leaf, :by "root", :at 1517207687580, :text "update-in", :id "B1FteS3rfleaf"} - "j" {:type :leaf, :by "root", :at 1517207688075, :text "db", :id "S1xl5gSnrM"} - "r" { - :type :expr, :by "root", :at 1517207688579, :id "S1WceS3Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517207688798, :text "[]", :id "rJmgcxr2SG"} - "j" {:type :leaf, :by "root", :at 1517207692648, :text ":processes", :id "HyfWqernBf"} - "r" {:type :leaf, :by "root", :at 1517207699618, :text "op-data", :id "ByZs9eBnBM"} - } - } - "v" { - :type :expr, :by "root", :at 1517207700361, :id "S1zhclr2BM" - :data { - "T" {:type :leaf, :by "root", :at 1517207701181, :text "fn", :id "S1zhclr2BMleaf"} - "j" { - :type :expr, :by "root", :at 1517207701489, :id "HkMTqlB3rf" - :data { - "T" {:type :leaf, :by "root", :at 1517207703143, :text "process", :id "rJ-aqgShrz"} - } - } - "r" { - :type :expr, :by "root", :at 1517207704221, :id "BJleseH2Hf" - :data { - "T" {:type :leaf, :by "root", :at 1517207707882, :text "assoc", :id "BJleseH2Hfleaf"} - "j" {:type :leaf, :by "root", :at 1517207709730, :text "process", :id "SkzVoxr3Hf"} - "r" {:type :leaf, :by "root", :at 1517207713172, :text ":content", :id "ry-IogBnSG"} - "v" { - :type :expr, :by "root", :at 1517207715006, :id "HJlojeS3HM" - :data { - "T" {:type :leaf, :by "root", :at 1517207715631, :text "[]", :id "BJcsgr3HG"} - } - } - } - } - } - } - } - } - } - } - "stderr" { - :type :expr, :by "root", :at 1517154866396, :id "rke94GdiBz" - :data { - "T" {:type :leaf, :by "root", :at 1517154866396, :text "defn", :id "rJWqNG_sBz"} - "j" {:type :leaf, :by "root", :at 1517154866396, :text "stderr", :id "B1GcNMOsBG"} - "r" { - :type :expr, :by "root", :at 1517154864443, :id "BJX_Ef_srz" - :data { - "T" {:type :leaf, :by "root", :at 1517155047840, :text "db", :id "Hkb1eXdiHG"} - "j" {:type :leaf, :by "root", :at 1517155048853, :text "op-data", :id "rJWee7_iSM"} - "r" {:type :leaf, :by "root", :at 1517155054177, :text "sid", :id "rJzl7_iHM"} - "v" {:type :leaf, :by "root", :at 1517155055223, :text "op-id", :id "S1f8lXOiHz"} - "x" {:type :leaf, :by "root", :at 1517155057456, :text "op-time", :id "BkEvgXOjSf"} - } - } - "v" { - :type :expr, :by "root", :at 1517560084657, :id "H1gTGZjWUf" - :data { - "D" {:type :leaf, :by "root", :at 1517560087442, :text "let", :id "BkZpMZibUf"} - "L" { - :type :expr, :by "root", :at 1517560087772, :id "BylxmZibUG" - :data { - "T" { - :type :expr, :by "root", :at 1517560142255, :id "HJeULWjWIz" - :data { - "T" { - :type :expr, :by "root", :at 1517560087992, :id "rkblm-obIz" - :data { - "T" {:type :leaf, :by "root", :at 1517560088286, :text "[]", :id "BJg7bobUM"} - "j" {:type :leaf, :by "root", :at 1517560091447, :text "pid", :id "Hym7Wo-8z"} - "r" {:type :leaf, :by "root", :at 1517560092415, :text "data", :id "HkVmbjZIf"} - } - } - "j" {:type :leaf, :by "root", :at 1517560144473, :text "op-data", :id "Skw8bob8G"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517155058151, :id "S1lqgmOjSf" - :data { - "T" {:type :leaf, :by "root", :at 1517155062246, :text "update-in", :id "S1lqgmOjSfleaf"} - "j" {:type :leaf, :by "root", :at 1517155062594, :text "db", :id "B1GAgmuoHf"} - "r" { - :type :expr, :by "root", :at 1517155062913, :id "H1fyWQOjHG" - :data { - "T" {:type :leaf, :by "root", :at 1517155063121, :text "[]", :id "B1ZJWmOjrf"} - "j" {:type :leaf, :by "root", :at 1517155065198, :text ":processes", :id "rJByb7_iBf"} - "r" {:type :leaf, :by "root", :at 1517560094267, :text "pid", :id "rJf-X_oSz"} - "v" {:type :leaf, :by "root", :at 1517155078451, :text ":content", :id "SysWm_iHz"} - } - } - "v" { - :type :expr, :by "root", :at 1517155082278, :id "SklzMm_sHM" - :data { - "T" {:type :leaf, :by "root", :at 1517155084630, :text "fn", :id "SklzMm_sHMleaf"} - "j" { - :type :expr, :by "root", :at 1517155084884, :id "SkzHfXOsHf" - :data { - "T" {:type :leaf, :by "root", :at 1517155086697, :text "content", :id "H1bSzXusBf"} - } - } - "r" { - :type :expr, :by "root", :at 1517155087171, :id "rk4PfXuirz" - :data { - "T" {:type :leaf, :by "root", :at 1517155088820, :text "conj", :id "rk4PfXuirzleaf"} - "j" {:type :leaf, :by "root", :at 1517155091527, :text "content", :id "By7KGQuoHz"} - "r" { - :type :expr, :by "root", :at 1517155093775, :id "BJAG7uoBM" - :data { - "T" {:type :leaf, :by "root", :at 1517155094499, :text "{}", :id "HyZTzXusSz"} - "j" { - :type :expr, :by "root", :at 1517155094821, :id "rJgJmm_jBM" - :data { - "T" {:type :leaf, :by "root", :at 1517155097501, :text ":type", :id "Sy1m7uoSf"} - "j" {:type :leaf, :by "root", :at 1517155133556, :text ":stderr", :id "S1GQQ_jrf"} - } - } - "r" { - :type :expr, :by "root", :at 1517155105054, :id "ryzFm7usSG" - :data { - "T" {:type :leaf, :by "root", :at 1517155115832, :text ":data", :id "ryzFm7usSGleaf"} - "j" {:type :leaf, :by "root", :at 1517560100060, :text "data", :id "rklTQQOjSz"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "stdout" { - :type :expr, :by "root", :at 1517154864443, :id "SJguEMdoHM" - :data { - "T" {:type :leaf, :by "root", :at 1517154864443, :text "defn", :id "Sk-_NG_sHM"} - "j" {:type :leaf, :by "root", :at 1517154864443, :text "stdout", :id "H1M_4Gdorz"} - "r" { - :type :expr, :by "root", :at 1517154864443, :id "BJX_Ef_srz" - :data { - "T" {:type :leaf, :by "root", :at 1517155047840, :text "db", :id "Hkb1eXdiHG"} - "j" {:type :leaf, :by "root", :at 1517155048853, :text "op-data", :id "rJWee7_iSM"} - "r" {:type :leaf, :by "root", :at 1517155054177, :text "sid", :id "rJzl7_iHM"} - "v" {:type :leaf, :by "root", :at 1517155055223, :text "op-id", :id "S1f8lXOiHz"} - "x" {:type :leaf, :by "root", :at 1517155057456, :text "op-time", :id "BkEvgXOjSf"} - } - } - "v" { - :type :expr, :by "root", :at 1517560062548, :id "B1wW-j-8f" - :data { - "D" {:type :leaf, :by "root", :at 1517560063318, :text "let", :id "Bkevb-sb8G"} - "L" { - :type :expr, :by "root", :at 1517560063510, :id "rJSvbbi-UM" - :data { - "T" { - :type :expr, :by "root", :at 1517560063652, :id "S1OZWjbIM" - :data { - "T" { - :type :expr, :by "root", :at 1517560066417, :id "ByMqbZjb8M" - :data { - "T" {:type :leaf, :by "root", :at 1517560067983, :text "[]", :id "rJ4vZ-j-Lz"} - "j" {:type :leaf, :by "root", :at 1517560069240, :text "pid", :id "r1M2bZjZUG"} - "r" {:type :leaf, :by "root", :at 1517560069877, :text "data", :id "BJQpZZj-8f"} - } - } - "j" {:type :leaf, :by "root", :at 1517560071630, :text "op-data", :id "SJmCb-sZLf"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517196366241, :id "BJb8U4GhBz" - :data { - "T" {:type :leaf, :by "root", :at 1517155062246, :text "update-in", :id "S1lqgmOjSfleaf"} - "j" {:type :leaf, :by "root", :at 1517155062594, :text "db", :id "B1GAgmuoHf"} - "r" { - :type :expr, :by "root", :at 1517155062913, :id "H1fyWQOjHG" - :data { - "T" {:type :leaf, :by "root", :at 1517155063121, :text "[]", :id "B1ZJWmOjrf"} - "j" {:type :leaf, :by "root", :at 1517155065198, :text ":processes", :id "rJByb7_iBf"} - "p" {:type :leaf, :by "root", :at 1517560077085, :text "pid", :id "rkgEz-s-UG"} - "v" {:type :leaf, :by "root", :at 1517155078451, :text ":content", :id "SysWm_iHz"} - } - } - "v" { - :type :expr, :by "root", :at 1517155082278, :id "SklzMm_sHM" - :data { - "T" {:type :leaf, :by "root", :at 1517155084630, :text "fn", :id "SklzMm_sHMleaf"} - "j" { - :type :expr, :by "root", :at 1517155084884, :id "SkzHfXOsHf" - :data { - "T" {:type :leaf, :by "root", :at 1517155086697, :text "content", :id "H1bSzXusBf"} - } - } - "r" { - :type :expr, :by "root", :at 1517155087171, :id "rk4PfXuirz" - :data { - "T" {:type :leaf, :by "root", :at 1517155088820, :text "conj", :id "rk4PfXuirzleaf"} - "j" {:type :leaf, :by "root", :at 1517155091527, :text "content", :id "By7KGQuoHz"} - "r" { - :type :expr, :by "root", :at 1517155093775, :id "BJAG7uoBM" - :data { - "T" {:type :leaf, :by "root", :at 1517155094499, :text "{}", :id "HyZTzXusSz"} - "j" { - :type :expr, :by "root", :at 1517155094821, :id "rJgJmm_jBM" - :data { - "T" {:type :leaf, :by "root", :at 1517155097501, :text ":type", :id "Sy1m7uoSf"} - "j" {:type :leaf, :by "root", :at 1517155104692, :text ":stdout", :id "S1GQQ_jrf"} - } - } - "r" { - :type :expr, :by "root", :at 1517155105054, :id "ryzFm7usSG" - :data { - "T" {:type :leaf, :by "root", :at 1517155115832, :text ":data", :id "ryzFm7usSGleaf"} - "j" {:type :leaf, :by "root", :at 1517560074009, :text "data", :id "rJzMZsW8G"} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517154858819, :id "BkmmEfOsrG" - :data {} - } - } - "server.updater.router" { - :ns { - :type :expr, :id "S1eLbxASW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1eeUbeCrZ", :text "ns", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r1-l8We0BW", :text "server.updater.router", :by "root", :at 1500541255553} - } - } - :defs { - "change" { - :type :expr, :id "ryQxUbg0B-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Hy4gLZgABZ", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ByBlIWg0S-", :text "change", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "SkIxIWgAHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJvx8bxCBZ", :text "db", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HkdeLWxRBZ", :text "op-data", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "BkYlL-xCSZ", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "HJ9eLWxRSW", :text "op-id", :by "root", :at 1500541255553} - "x" {:type :leaf, :id "Hkog8blRSW", :text "op-time", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "BkhgI-xCrb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1al8ZxAB-", :text "assoc-in", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "H1ClU-xRB-", :text "db", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "Hk1geLWx0H-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HklggLbxRB-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Hk-xxUbeRSZ", :text ":sessions", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "HyzlgIZgCSb", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "rkQgxU-l0Bb", :text ":router", :by "root", :at 1500541255553} - } - } - "v" {:type :leaf, :id "B14gg8WxCrb", :text "op-data", :by "root", :at 1500541255553} - } - } - } - } - } - :proc { - :type :expr, :id "HJzeUWeAr-", :by nil, :at 1500541255553 - :data {} - } - } - "server.updater.session" { - :ns { - :type :expr, :id "Sy_0leLZgCrW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1t0llUZg0r-", :text "ns", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ryq0ee8Wl0BZ", :text "server.updater.session", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "rJs0xxI-g0rZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B12AggIZl0rW", :text ":require", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SyaAlgIZeCSW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJ00glL-xAr-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BkyJbxUWxCH-", :text "server.schema", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "S1xyWgUWlRHb", :text ":as", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "By-J-xU-gABb", :text "schema", :by "root", :at 1500541255553} - } - } - } - } - } - } - :defs { - "connect" { - :type :expr, :id "HyQ1WeI-xABW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJ4ybe8-g0Sb", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "B1SyWx8bxABW", :text "connect", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "ry8k-eUbgCr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJv1Wl8WgRBZ", :text "db", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Hk_JWeLZg0Hb", :text "op-data", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "ryYkWl8Wx0SZ", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "HyqJ-l8-lCBZ", :text "op-id", :by "root", :at 1500541255553} - "x" {:type :leaf, :id "r1jk-lIWlASb", :text "op-time", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "rJhyZe8blCHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rka1blIZeRrW", :text "assoc-in", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "B1Ry-lIZgRrZ", :text "db", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "r1klbeIWeRSZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJgeZeLbe0HZ", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HkWeWlLbl0rb", :text ":sessions", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SyfgWx8WeAHW", :text "session-id", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "rJ7xbgI-eAHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkNeWeUWx0HW", :text "merge", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BkBxWxIZxArW", :text "schema/session", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "HkUxZeLZxRrb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Skwebg8-gArb", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "BkdxZxL-l0S-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ryKxZl8-x0SZ", :text ":id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r19ebe8WeArW", :text "session-id", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - } - } - "disconnect" { - :type :expr, :id "HJsgZx8-lCr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Bknx-g8-gASW", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ByalZeUblRB-", :text "disconnect", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "rkCxZl8WxCH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1yWZxIbxRSW", :text "db", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r1g--l8WeCHZ", :text "op-data", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "HkWbWe8WeCSW", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "B1G--lIWg0Sb", :text "op-id", :by "root", :at 1500541255553} - "x" {:type :leaf, :id "HkQ-bxLZx0BZ", :text "op-time", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "rJ4ZWeUWeArb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkrbZe8blCrZ", :text "update", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HyL-Wx8WgABb", :text "db", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "H1v-Wx8ZlCBb", :text ":sessions", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "rJ_-ZgUbx0H-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HyKZZxUbxRBb", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HyqWZlU-lCHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SyjWWlLWe0HW", :text "session", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "Syh-WgIZxCHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Bka-Zg8beAS-", :text "dissoc", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJAZZl8ZgABZ", :text "session", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "S1yMbeI-e0BW", :text "session-id", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - "remove-notification" { - :type :expr, :id "ryezWxIWeArb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJWMWxUbe0SW", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ryMfZeUWxCB-", :text "remove-notification", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "ByXM-gUbxRHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkVfZe8-eRrW", :text "db", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BJBMWgIWe0rZ", :text "op-data", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "BJ8zZeU-eCS-", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "SJPfZeLZeCr-", :text "op-id", :by "root", :at 1500541255553} - "x" {:type :leaf, :id "ryuMWe8blABZ", :text "op-time", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "ByFGbg8WxRHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Bk5MWeLbeCr-", :text "update-in", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJjM-gUWxRSb", :text "db", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "Hyhf-eIZlABb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Sk6MbeUWlCrW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJAMbgLZx0BW", :text ":sessions", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "B11Xbg8-xRHZ", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "ByeXZgU-g0Hb", :text ":notifications", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "Hy-Q-xL-eABZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkzXWe8bxCS-", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "BJQmblIWxRHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "By4QWxI-l0SZ", :text "notifications", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "BkB7blLbxArZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJLXZeUbx0SW", :text "subvec", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJw7Zx8ZxASW", :text "notifications", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "rkOQ-lL-lCrZ", :text "0", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "SkFXWg8bg0rW", :text "op-data", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :id "rJGJZgL-x0rZ", :by nil, :at 1500541255553 - :data {} - } - } - "server.updater.user" { - :ns { - :type :expr, :id "SyuRgL-x0HZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1KCx8bgAH-", :text "ns", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Sk5AgLWlRrb", :text "server.updater.user", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "ryi0xL-lCH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r13AgIWlAS-", :text ":require", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "H16ClL-l0SZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B10Al8-eRS-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJJ1eeLWxCH-", :text "server.util", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SJgJegUbeCB-", :text ":refer", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "S1-yel8ZgAB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkfJxxU-eRr-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJQkxg8WgCH-", :text "find-first", :by "root", :at 1500541255553} - } - } - } - } - "r" { - :type :expr, :id "rkDjPKTbf", :by "root", :at 1513097118588 - :data { - "T" {:type :leaf, :text "[]", :id "rkDjPKTbfleaf", :by "root", :at 1513097119283} - "j" {:type :leaf, :text "|md5", :id "H1GPjPKpZf", :by "root", :at 1513097121683} - "r" {:type :leaf, :text ":as", :id "r1-ciPFpWG", :by "root", :at 1513097122864} - "v" {:type :leaf, :text "md5", :id "SkQojvtaWG", :by "root", :at 1513097123766} - } - } - } - } - } - } - :defs { - "log-in" { - :type :expr, :id "SJArel8-e0Sb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HykIxxLbxAB-", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SklIgeLWx0rZ", :text "log-in", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "Sk-UglUZgRHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1MUxxI-e0H-", :text "db", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BkXLxgIWeAH-", :text "op-data", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "H1NLxxIZxCSZ", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "BJSLeg8bxRrW", :text "op-id", :by "root", :at 1500541255553} - "x" {:type :leaf, :id "ryULlg8-xCB-", :text "op-time", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "r1DUeeI-g0BZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJuLleUZx0HZ", :text "let", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HyF8ge8WxArb", :by nil, :at 1500541255553 - :data { - "T" { - :type :expr, :id "H158llU-g0Hb", :by nil, :at 1500541255553 - :data { - "T" { - :type :expr, :id "HksLxxU-eRS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ByhLglUbgCHZ", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJpLxlUZxRBW", :text "username", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SyR8leIZx0H-", :text "password", :by "root", :at 1500541255553} - } - } - "j" {:type :leaf, :id "rJJDgxIWg0HZ", :text "op-data", :by "root", :at 1500541255553} - } - } - "j" { - :type :expr, :id "BklDegI-g0H-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJ-vgeUWxRBZ", :text "maybe-user", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "H1fwgeUWl0Sb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S17Dxl8Zg0SW", :text "find-first", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "S1EwlgLWgCHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SyrPelLWg0rW", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "r1Lwee8ZeRB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1wwxeUZxAr-", :text "user", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "r1_DxlI-gAS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HkYPglIbeAHb", :text "and", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rycDxgIWxRBZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ryiPxeIbxCSW", :text "=", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Bk2DxlIZeAHb", :text "username", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "ByTPle8-xRSb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJ0DxlLWl0BZ", :text ":name", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Hy1uleUWl0BW", :text "user", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - "r" { - :type :expr, :id "SJlulx8beCBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJWdlxIblRHW", :text "vals", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HJMugeUWlAr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1mOegUZgABb", :text ":users", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r1Euex8beRH-", :text "db", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :id "ryBOgxUZlCB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1IdxxIbgAHZ", :text "update-in", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJvuxl8WxRrW", :text "db", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "BJudgxL-l0rW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1Y_xlLWeCH-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Skcdee8blCBb", :text ":sessions", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "HJsdgeIWg0S-", :text "session-id", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "Hk3_elLbxArb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJa_egLWlCSZ", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rJ0OglL-gRB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkJtglLbeRSZ", :text "session", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "rkxYleIZl0rW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJZKlxIZg0Bb", :text "if", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "B1fKge8be0SZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkQKeg8-l0rW", :text "some?", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HJEKglU-x0BW", :text "maybe-user", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "S1SYge8WeABW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BkIFegU-eRSZ", :text "if", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rJvKex8WgRB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BydYle8-xCB-", :text "=", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HJqpvtTWG", :by "root", :at 1513097153553 - :data { - "D" {:type :leaf, :text "md5", :id "HJgc6vt6bz", :by "root", :at 1513097155650} - "T" {:type :leaf, :id "S1FFglUWlRH-", :text "password", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "r15YxeLbeABb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1itgeLbxCHZ", :text ":password", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SkntxlUZg0SZ", :text "maybe-user", :by "root", :at 1500541255553} - } - } - } - } - "r" { - :type :expr, :id "HJ6Ylg8ZxCrZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJCYgg8WlArb", :text "assoc", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ryk5lgIWgASZ", :text "session", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "rkl9llIbgCSZ", :text ":user-id", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "S1b5elUZgRSb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Syf5gxIWg0rZ", :text ":id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJX5eeUWxArb", :text "maybe-user", :by "root", :at 1500541255553} - } - } - } - } - "v" { - :type :expr, :id "HyE5ee8Wx0H-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkHcgxI-xRS-", :text "update", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ryUqex8ZlRr-", :text "session", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "BkwqxeIbe0SZ", :text ":notifications", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "SkuqxlLWxAHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ByYcgx8-gABZ", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "Sy9qxg8-eABW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkocxgUZgASW", :text "notifications", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "Bkh5lxLZgAHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rya5xxL-xABb", :text "conj", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BkA9gxI-g0HW", :text "notifications", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "rykillLZlRSZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BkeoelL-l0r-", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SyWixeI-xRHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJMsglUWlRBb", :text ":id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rkQoelLZl0rb", :text "op-id", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "ryVjxgUZgCSW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJrjgg8bxCHW", :text ":kind", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Hy8oelUZxCrb", :text ":attentive", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "HkDslx8Ze0r-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Skuigl8blRrW", :text ":text", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HyYogeU-lAHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJ5jxg8blArZ", :text "str", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Byisxx8ZeCBb", :text "|Wrong password for ", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "r12oge8-x0rW", :text "username", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "v" { - :type :expr, :id "HJpselLbgRS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1AoxlLZg0SZ", :text "update", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ByJ3geUWxCHW", :text "session", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SkxnlxLZgCSW", :text ":notifications", :by "root", :at 1500541255553} - "v" { - :type :expr, :id "rkb3lgL-eAS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1zhllIWl0rb", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "S1m3gxLWgASZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJV2egI-xArZ", :text "notifications", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "BJB3xlLblCBW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1IhggLWe0SW", :text "conj", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HkP2le8ZlABZ", :text "notifications", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "Hk_nggI-g0rb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJF2eg8bgAS-", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "S1chglL-gRSZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1j2gxUZg0B-", :text ":id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "By3nxxLbxCrZ", :text "op-id", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "HJa2xxLbeRSZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJ0hlx8WxASb", :text ":kind", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Bk1pee8-lRBZ", :text ":attentive", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "SJgTll8-xArb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ry-TllI-xCHb", :text ":text", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "H1M6ee8ZxCB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkmallLbeCBW", :text "str", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "r1EpxxUWlRrb", :text "|No user named: ", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "ryHpel8blArb", :text "username", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - "log-out" { - :type :expr, :id "Bk8TlgU-xAHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BJPaegIWgAHZ", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HkuTeeIbxAB-", :text "log-out", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "BkFael8ZgRrW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SJ9pxxIZeRHW", :text "db", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BkjpegUbxArZ", :text "op-data", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "Hk3peeU-e0BW", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "H16agxUbx0r-", :text "op-id", :by "root", :at 1500541255553} - "x" {:type :leaf, :id "HyRpllIblRSb", :text "op-time", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "rkyRlxUZxCSZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1gRge8WeCBb", :text "assoc-in", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "H1WAxxIWlAS-", :text "db", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "BkzRglUWgCHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HymReg8WgRBZ", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "H1V0ggLZgCB-", :text ":sessions", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "rJBRgeUbxCHZ", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "HJL0egLbe0H-", :text ":user-id", :by "root", :at 1500541255553} - } - } - "v" {:type :leaf, :id "HJvCgxLbeRB-", :text "nil", :by "root", :at 1500541255553} - } - } - } - } - "sign-up" { - :type :expr, :id "SkB1llUZeAH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1IyglL-lCHb", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJvyxl8WxABZ", :text "sign-up", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "H1dJeeUZlCr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1KJex8ZlABb", :text "db", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Sk5JlxL-g0HZ", :text "op-data", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SkokleUZeABW", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "r12yllU-xRBW", :text "op-id", :by "root", :at 1500541255553} - "x" {:type :leaf, :id "HkTJegI-eRS-", :text "op-time", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "Bk0Jxl8We0SZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Skklel8-eRH-", :text "let", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SyleegL-gRHb", :by nil, :at 1500541255553 - :data { - "T" { - :type :expr, :id "H1Zggx8WxRBW", :by nil, :at 1500541255553 - :data { - "T" { - :type :expr, :id "BkMleeIbxAHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJmlxgU-gABW", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HkEllxU-lCSW", :text "username", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "ryBgxgU-gABb", :text "password", :by "root", :at 1500541255553} - } - } - "j" {:type :leaf, :id "HyIggxU-xAB-", :text "op-data", :by "root", :at 1500541255553} - } - } - "j" { - :type :expr, :id "H1PxllI-eCHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Bk_gxe8-lASW", :text "maybe-user", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rJKxxgI-lRSW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r19ellLblAHW", :text "find-first", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "Hkillg8ZgAHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "ryhxgg8ZgCrb", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "H1TxxeIZe0rZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkCegeIWlCHZ", :text "user", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "rkJbggLWx0rb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJeZxeIZl0HW", :text "=", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Byb-llIZl0B-", :text "username", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "BJGbeg8-xAHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJ7-xxU-lCrW", :text ":name", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJE-xgLZx0rW", :text "user", :by "root", :at 1500541255553} - } - } - } - } - } - } - "r" { - :type :expr, :id "r1BbgxU-lASb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "BkU-gxIWlRB-", :text "vals", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HkDbxl8WlCBZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "By_Wxx8blAr-", :text ":users", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rkYWlg8-gCB-", :text "db", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - } - } - "r" { - :type :expr, :id "H1cble8beCHZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HyobggLbxAS-", :text "if", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HJh-lgLbxAH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJTWeg8-gAS-", :text "some?", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJ0WgeLWg0HW", :text "maybe-user", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "BykGxxUWeABW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1eMexLbxCB-", :text "update-in", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HkbGxxUZxRrW", :text "db", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "H1fMgx8-e0HW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJ7fllLWeRSb", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SyVGlgIZg0r-", :text ":sessions", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "SySGgg8bx0rZ", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "HyUGglIbeASZ", :text ":notifications", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "Hkvfxe8blArW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SyuzleUbx0SZ", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rkKzggLWx0BW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Hkqfll8ZgRrZ", :text "notifications", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "HJszxx8ZlAH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S12Mxe8Wx0SZ", :text "conj", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SJ6MxlL-xCHb", :text "notifications", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "rJ0MleIblRBZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1k7xlLbgAr-", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "r1eQleLZeCrW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1bQex8-gAr-", :text ":id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "ryGmegIZeABb", :text "op-id", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "Hym7eeLZxRBZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJVXggIbeRrb", :text ":kind", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BJBXllUWlRB-", :text ":attentive", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "S1L7lxI-gCHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkwXlxU-e0BZ", :text ":text", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "B1umleU-xAS-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SkFQgeUZe0rb", :text "str", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rkcXeeLWxAHb", :text "|Name is token: ", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "Byi7lx8blCH-", :text "username", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - } - } - } - } - "v" { - :type :expr, :id "rJ2melL-gABW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Sy6mllUWeArb", :text "->", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rk07lg8ZxCrb", :text "db", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "H1J4lgUWxArZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rJg4geIWxRrZ", :text "assoc-in", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "rkbEgeLZg0H-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1fExeUbeRr-", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "BymVlgLWl0SZ", :text ":sessions", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "HkNExgLbeRrZ", :text "session-id", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "HkHEgeIbxASb", :text ":user-id", :by "root", :at 1500541255553} - } - } - "r" {:type :leaf, :id "HkLNxxI-gRBZ", :text "op-id", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "SyvVxg8-xAHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1dNlxLblAH-", :text "assoc-in", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "HyKVegIWeAHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HkcVegLbxRHb", :text "[]", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SksNle8-lCBZ", :text ":users", :by "root", :at 1500541255553} - "r" {:type :leaf, :id "B12VgeLWlAr-", :text "op-id", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "rkTExe8ZlCB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "S1RNlgIbxRS-", :text "{}", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SyyBxgUblRrb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1gSgxUZxArb", :text ":id", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "B1bHllLZeASW", :text "op-id", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "SkGrxgL-xRBb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SyQHle8-e0r-", :text ":name", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "HyNSle8ZeABb", :text "username", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "BJSHlgLbl0HZ", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "B1IrlgUZe0HZ", :text ":nickname", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "SkDBxe8bxRSb", :text "username", :by "root", :at 1500541255553} - } - } - "x" { - :type :expr, :id "ryuSgxU-eCSb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "r1YSgxLZg0S-", :text ":password", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "S1lMhvKpZz", :by "root", :at 1513097129906 - :data { - "D" {:type :leaf, :text "md5", :id "SJZz2DK6WG", :by "root", :at 1513097131281} - "T" {:type :leaf, :id "rycSxlL-e0r-", :text "password", :by "root", :at 1500541255553} - } - } - } - } - "y" { - :type :expr, :id "B1iBgxIWlASW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "By2Sel8Zx0S-", :text ":avatar", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rkTSexUZlRrZ", :text "nil", :by "root", :at 1500541255553} - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :id "B141llLbeCBW", :by nil, :at 1500541255553 - :data {} - } - } - "server.updater.workflow" { - :ns { - :type :expr, :by "root", :at 1517237233495, :id "rJxtlNhnBz" - :data { - "T" {:type :leaf, :by "root", :at 1517237233495, :text "ns", :id "ry-Yl42hHz"} - "j" {:type :leaf, :by "root", :at 1517237233495, :text "server.updater.workflow", :id "BJfKgE2hHz"} - "r" { - :type :expr, :by "root", :at 1517237313754, :id "HybqSV3nrz" - :data { - "T" {:type :leaf, :by "root", :at 1517237314612, :text ":require", :id "S1e9B42hBG"} - "j" { - :type :expr, :by "root", :at 1517237315432, :id "H1ziHV2hBM" - :data { - "T" {:type :leaf, :by "root", :at 1517237315621, :text "[]", :id "SJZsBEh2BM"} - "j" {:type :leaf, :by "root", :at 1517237319093, :text "server.schema", :id "BkW2B432rG"} - "r" {:type :leaf, :by "root", :at 1517237319846, :text ":as", :id "Hkz1UV23Bf"} - "v" {:type :leaf, :by "root", :at 1517237321367, :text "schema", :id "rkfg8N3nSG"} - } - } - } - } - } - } - :defs { - "add-command" { - :type :expr, :by "root", :at 1517327887544, :id "H1xdMIM0rz" - :data { - "T" {:type :leaf, :by "root", :at 1517327890344, :text "defn", :id "Byb_fUz0Sz"} - "j" {:type :leaf, :by "root", :at 1517327887544, :text "add-command", :id "ryMuGUMABG"} - "r" { - :type :expr, :by "root", :at 1517327887544, :id "BJ7_fIzABz" - :data { - "T" {:type :leaf, :by "root", :at 1517327895444, :text "db", :id "SkZjM8f0rG"} - "j" {:type :leaf, :by "root", :at 1517327893434, :text "op-data", :id "ByW2fIz0Hz"} - "r" {:type :leaf, :by "root", :at 1517327897432, :text "sid", :id "S1RMUMCHM"} - "v" {:type :leaf, :by "root", :at 1517327899656, :text "op-id", :id "S1fXUzAHf"} - "x" {:type :leaf, :by "root", :at 1517327900531, :text "op-time", :id "rkb4mUGRSG"} - } - } - "v" { - :type :expr, :by "root", :at 1517327903186, :id "r1gv7LMCHz" - :data { - "T" {:type :leaf, :by "root", :at 1517327904643, :text "let", :id "r1gv7LMCHzleaf"} - "j" { - :type :expr, :by "root", :at 1517327904889, :id "rkGFXUG0SG" - :data { - "T" { - :type :expr, :by "root", :at 1517327926271, :id "Sy0VLz0SM" - :data { - "T" { - :type :expr, :by "root", :at 1517327905096, :id "BJXFX8M0SM" - :data { - "T" {:type :leaf, :by "root", :at 1517327905471, :text "{}", :id "Bk-tQ8fRHf"} - "j" { - :type :expr, :by "root", :at 1517327906086, :id "rygc7IfRHz" - :data { - "T" {:type :leaf, :by "root", :at 1517327912260, :text "workflow-id", :id "H15XLMArz"} - "j" {:type :leaf, :by "root", :at 1517327915878, :text ":workflow-id", :id "rkzeEUMCSz"} - } - } - "r" { - :type :expr, :by "root", :at 1517327916464, :id "BJfVNIzCHM" - :data { - "T" {:type :leaf, :by "root", :at 1517327919146, :text "code", :id "BJfVNIzCHMleaf"} - "j" {:type :leaf, :by "root", :at 1517327919798, :text ":code", :id "Hymw4UfArG"} - } - } - "v" { - :type :expr, :by "root", :at 1517327920410, :id "SJmO4Uf0Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517327923296, :text "path", :id "SJmO4Uf0Bfleaf"} - "j" {:type :leaf, :by "root", :at 1517327924772, :text ":path", :id "rJmoNLMRrz"} - } - } - } - } - "j" {:type :leaf, :by "root", :at 1517327929115, :text "op-data", :id "HJkrLzCrM"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517327930085, :id "B1lMHUMAHz" - :data { - "T" {:type :leaf, :by "root", :at 1517327931411, :text "assoc-in", :id "B1lMHUMAHzleaf"} - "j" {:type :leaf, :by "root", :at 1517327934084, :text "db", :id "BJ8rUM0HM"} - "r" { - :type :expr, :by "root", :at 1517327934378, :id "rkmLHIM0HM" - :data { - "T" {:type :leaf, :by "root", :at 1517327934625, :text "[]", :id "SkfLS8z0SG"} - "j" {:type :leaf, :by "root", :at 1517327937391, :text ":workflows", :id "SybDH8zCHM"} - "r" {:type :leaf, :by "root", :at 1517327939692, :text "workflow-id", :id "Sk9r8f0HM"} - "v" {:type :leaf, :by "root", :at 1517327942204, :text ":commands", :id "Bk6H8z0HG"} - "x" {:type :leaf, :by "root", :at 1517327971194, :text "op-id", :id "S1GPPLzCrf"} - } - } - "v" { - :type :expr, :by "root", :at 1517327957903, :id "BkAIUfRrz" - :data { - "T" {:type :leaf, :by "root", :at 1517327958277, :text "{}", :id "S1epLUf0Bz"} - "j" { - :type :expr, :by "root", :at 1517327958520, :id "H1kPUfASM" - :data { - "T" {:type :leaf, :by "root", :at 1517327960929, :text ":id", :id "rJMCL8zCrz"} - "j" {:type :leaf, :by "root", :at 1517328146329, :text "op-id", :id "r1ZZvUfCHG"} - } - } - "r" { - :type :expr, :by "root", :at 1517327973416, :id "r1WpvIMRBG" - :data { - "T" {:type :leaf, :by "root", :at 1517327974262, :text ":code", :id "r1WpvIMRBGleaf"} - "j" {:type :leaf, :by "root", :at 1517327975096, :text "code", :id "BJ1dUG0Hz"} - } - } - "v" { - :type :expr, :by "root", :at 1517327975415, :id "S1SJ_IMRSM" - :data { - "T" {:type :leaf, :by "root", :at 1517327976683, :text ":path", :id "S1SJ_IMRSMleaf"} - "j" {:type :leaf, :by "root", :at 1517327977400, :text "path", :id "HJW-uIfCHz"} - } - } - } - } - } - } - } - } - } - } - "create-workflow" { - :type :expr, :by "root", :at 1517237235754, :id "HJehgN22Hz" - :data { - "T" {:type :leaf, :by "root", :at 1517237235754, :text "defn", :id "r1b3lEhhHz"} - "j" {:type :leaf, :by "root", :at 1517237235754, :text "create-workflow", :id "BJznlV23SG"} - "r" { - :type :expr, :by "root", :at 1517237235754, :id "HyX2eV32SG" - :data { - "T" {:type :leaf, :by "root", :at 1517237238910, :text "db", :id "ByZRx4hnHz"} - "j" {:type :leaf, :by "root", :at 1517237240068, :text "op-data", :id "rJbkWV3nrz"} - "r" {:type :leaf, :by "root", :at 1517237241696, :text "sid", :id "B14x-N22Sz"} - "v" {:type :leaf, :by "root", :at 1517237242857, :text "op-id", :id "rybGbVh3HG"} - "x" {:type :leaf, :by "root", :at 1517237244222, :text "op-time", :id "rkZQ-EhhSM"} - } - } - "v" { - :type :expr, :by "root", :at 1517237597214, :id "B1gSvBn2HM" - :data { - "D" {:type :leaf, :by "root", :at 1517237598618, :text "let", :id "HyIPr3hHz"} - "L" { - :type :expr, :by "root", :at 1517237598990, :id "SJGDPH2nHz" - :data { - "T" { - :type :expr, :by "root", :at 1517237599393, :id "BJXDvr3hBf" - :data { - "L" { - :type :expr, :by "root", :at 1517326433142, :id "HytPgf0HG" - :data { - "D" {:type :leaf, :by "root", :at 1517326435097, :text "{}", :id "Bk5PefRSM"} - "T" { - :type :expr, :by "root", :at 1517326435893, :id "rJxnvxfArM" - :data { - "T" {:type :leaf, :by "root", :at 1517237712826, :text "workflow-name", :id "BJeDABhhSf"} - "j" {:type :leaf, :by "root", :at 1517326437596, :text ":name", :id "SkpDlzAHG"} - } - } - "j" { - :type :expr, :by "root", :at 1517326438389, :id "ryZAvlf0Bz" - :data { - "T" {:type :leaf, :by "root", :at 1517326441873, :text "base-dir", :id "ryZAvlf0Bzleaf"} - "j" {:type :leaf, :by "root", :at 1517326446555, :text ":base-dir", :id "BkMzOgzRSM"} - } - } - } - } - "j" {:type :leaf, :by "root", :at 1517237603804, :text "op-data", :id "r1cPrn3SM"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517237292921, :id "ByHNEhhBM" - :data { - "T" {:type :leaf, :by "root", :at 1517237298720, :text "assoc-in", :id "ByHNEhhBMleaf"} - "j" {:type :leaf, :by "root", :at 1517237300679, :text "db", :id "Skn44nnrf"} - "r" { - :type :expr, :by "root", :at 1517237301620, :id "rJCEN23BG" - :data { - "T" {:type :leaf, :by "root", :at 1517237301818, :text "[]", :id "HJWTVV22HG"} - "j" {:type :leaf, :by "root", :at 1517237303756, :text ":workflows", :id "HJf0E4nnSf"} - "r" {:type :leaf, :by "root", :at 1517237306140, :text "op-id", :id "SJZr43nHf"} - } - } - "v" { - :type :expr, :by "root", :at 1517237517522, :id "Hk8GBnnHz" - :data { - "D" {:type :leaf, :by "root", :at 1517237519241, :text "merge", :id "HyeUzr33rG"} - "L" {:type :leaf, :by "root", :at 1517237522900, :text "schema/workflow", :id "B1WPfBh2HM"} - "T" { - :type :expr, :by "root", :at 1517237306725, :id "rkXBEh3rG" - :data { - "T" {:type :leaf, :by "root", :at 1517237307376, :text "{}", :id "rkXBEh3rGleaf"} - "j" { - :type :expr, :by "root", :at 1517237307593, :id "rkESEh3Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517237308025, :text ":id", :id "r1MQBNn3Hz"} - "j" {:type :leaf, :by "root", :at 1517237309015, :text "op-id", :id "HJXEHNnhHz"} - } - } - "r" { - :type :expr, :by "root", :at 1517237309466, :id "SyfBS4n3SG" - :data { - "T" {:type :leaf, :by "root", :at 1517237310562, :text ":name", :id "SyfBS4n3SGleaf"} - "j" {:type :leaf, :by "root", :at 1517237680003, :text "workflow-name", :id "SJH3r22BG"} - } - } - "v" { - :type :expr, :by "root", :at 1517237680820, :id "B1Yhrn2Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517237684899, :text ":base-dir", :id "B1Yhrn2Bfleaf"} - "j" {:type :leaf, :by "root", :at 1517326453004, :text "base-dir", :id "HkG63H3hrf"} - } - } - } - } - } - } - } - } - } - } - } - } - "edit-command" { - :type :expr, :by "root", :at 1517414121864, :id "r1ZzxwwyUz" - :data { - "T" {:type :leaf, :by "root", :at 1517414121864, :text "defn", :id "rJGfxwwJIM"} - "j" {:type :leaf, :by "root", :at 1517414121864, :text "edit-command", :id "SyXMgPPkUG"} - "r" { - :type :expr, :by "root", :at 1517414121864, :id "rkEflwwJ8G" - :data { - "T" {:type :leaf, :by "root", :at 1517414123711, :text "db", :id "SJ-XxvPkLM"} - "j" {:type :leaf, :by "root", :at 1517414124719, :text "op-data", :id "B1ZNlDw18f"} - "r" {:type :leaf, :by "root", :at 1517414128032, :text "sid", :id "r1zHlvD18f"} - "v" {:type :leaf, :by "root", :at 1517414131006, :text "op-id", :id "SyM_xwvy8f"} - "x" {:type :leaf, :by "root", :at 1517414134772, :text "op-time", :id "rJZoxvw18f"} - } - } - "v" { - :type :expr, :by "root", :at 1517414135663, :id "rylbvwJIM" - :data { - "T" {:type :leaf, :by "root", :at 1517414136150, :text "let", :id "rylbvwJIMleaf"} - "j" { - :type :expr, :by "root", :at 1517414136423, :id "r1VgZvvJIf" - :data { - "T" { - :type :expr, :by "root", :at 1517414136558, :id "r1ZWPDk8G" - :data { - "T" { - :type :expr, :by "root", :at 1517414136947, :id "BJlZWvvkLz" - :data { - "T" {:type :leaf, :by "root", :at 1517414137702, :text "[]", :id "HJmx-wvyLM"} - "j" {:type :leaf, :by "root", :at 1517414141062, :text "workflow-id", :id "ryZMbvwyLz"} - "r" {:type :leaf, :by "root", :at 1517414144993, :text "command-id", :id "BJ7HZwPJ8z"} - "v" {:type :leaf, :by "root", :at 1517414148141, :text "changes", :id "ByZFZPwyLf"} - } - } - "j" {:type :leaf, :by "root", :at 1517414153129, :text "op-data", :id "H1R-DP1IM"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517414153889, :id "HyxMfDvyUf" - :data { - "T" {:type :leaf, :by "root", :at 1517414156874, :text "update-in", :id "HyxMfDvyUfleaf"} - "j" {:type :leaf, :by "root", :at 1517414157261, :text "db", :id "BkMHGDPJ8M"} - "r" { - :type :expr, :by "root", :at 1517414157629, :id "B1LzDPk8M" - :data { - "T" {:type :leaf, :by "root", :at 1517414157956, :text "[]", :id "HkHrMDwyUM"} - "j" {:type :leaf, :by "root", :at 1517414159477, :text ":workflows", :id "ryzLzvv18z"} - "r" {:type :leaf, :by "root", :at 1517414162719, :text "workflow-id", :id "B1dfvwJIf"} - "v" {:type :leaf, :by "root", :at 1517414164709, :text ":commands", :id "SygoGwvJ8z"} - "x" {:type :leaf, :by "root", :at 1517414167358, :text "command-id", :id "H1eaGPwkLG"} - } - } - "v" { - :type :expr, :by "root", :at 1517414169921, :id "HkgfXvwyUz" - :data { - "T" {:type :leaf, :by "root", :at 1517414170306, :text "fn", :id "SkMXDPkUM"} - "j" { - :type :expr, :by "root", :at 1517414170528, :id "B1QXPvk8G" - :data { - "T" {:type :leaf, :by "root", :at 1517414172049, :text "command", :id "HkmM7PwJLM"} - } - } - "r" { - :type :expr, :by "root", :at 1517414173661, :id "BJIQwvJLG" - :data { - "T" {:type :leaf, :by "root", :at 1517414174406, :text "merge", :id "BJIQwvJLGleaf"} - "j" {:type :leaf, :by "root", :at 1517414175616, :text "command", :id "Bkr8Qwwy8M"} - "r" {:type :leaf, :by "root", :at 1517414178963, :text "changes", :id "rkedQPPk8M"} - } - } - } - } - } - } - } - } - } - } - "edit-workflow" { - :type :expr, :by "root", :at 1517413342200, :id "ByxLyVvy8f" - :data { - "T" {:type :leaf, :by "root", :at 1517413342200, :text "defn", :id "By-8J4vJ8M"} - "j" {:type :leaf, :by "root", :at 1517413342200, :text "edit-workflow", :id "rkG814wJIz"} - "r" { - :type :expr, :by "root", :at 1517413342200, :id "B1XIy4wJ8f" - :data { - "T" {:type :leaf, :by "root", :at 1517413343874, :text "db", :id "B1GDkNPkLM"} - "j" {:type :leaf, :by "root", :at 1517413344909, :text "op-data", :id "ry-dyNv1LM"} - "r" {:type :leaf, :by "root", :at 1517413346664, :text "sid", :id "B19yNwJLG"} - "v" {:type :leaf, :by "root", :at 1517413348135, :text "op-id", :id "S1Ws14D1Iz"} - "x" {:type :leaf, :by "root", :at 1517413348980, :text "op-time", :id "S1m2JEDyUf"} - } - } - "v" { - :type :expr, :by "root", :at 1517413374032, :id "Ske8W4Dy8M" - :data { - "D" {:type :leaf, :by "root", :at 1517413374699, :text "let", :id "r1-8b4wk8M"} - "L" { - :type :expr, :by "root", :at 1517413375064, :id "HyQPWEw1IM" - :data { - "T" { - :type :expr, :by "root", :at 1517413375226, :id "BJNwZVPkLz" - :data { - "T" {:type :leaf, :by "root", :at 1517413378628, :text "new-workflow", :id "rJMw-4PJ8M"} - "j" {:type :leaf, :by "root", :at 1517413379763, :text "op-data", :id "SJZjb4Pk8G"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517413349605, :id "By0yVvyIf" - :data { - "T" {:type :leaf, :by "root", :at 1517413355286, :text "update-in", :id "By0yVvyIfleaf"} - "j" {:type :leaf, :by "root", :at 1517413356331, :text "db", :id "Hy7QeNvyLz"} - "r" { - :type :expr, :by "root", :at 1517413356615, :id "SyHxEDy8z" - :data { - "T" {:type :leaf, :by "root", :at 1517413356894, :text "[]", :id "Hy74e4Py8M"} - "j" {:type :leaf, :by "root", :at 1517413365385, :text ":workflows", :id "SJGBlVvJIM"} - "r" { - :type :expr, :by "root", :at 1517413367263, :id "r1k-VPyLf" - :data { - "T" {:type :leaf, :by "root", :at 1517413369671, :text ":id", :id "BJCeND1IM"} - "j" {:type :leaf, :by "root", :at 1517413386302, :text "new-workflow", :id "BkeGbNP1LG"} - } - } - } - } - "v" { - :type :expr, :by "root", :at 1517413387639, :id "HyVGNw1Lz" - :data { - "T" {:type :leaf, :by "root", :at 1517413387950, :text "fn", :id "HyVGNw1Lzleaf"} - "j" { - :type :expr, :by "root", :at 1517413388251, :id "BJXNf4PyIM" - :data { - "T" {:type :leaf, :by "root", :at 1517413393410, :text "workflow", :id "BkM4MVv18M"} - } - } - "r" { - :type :expr, :by "root", :at 1517413394382, :id "r1e5G4wkLG" - :data { - "T" {:type :leaf, :by "root", :at 1517413395229, :text "merge", :id "r1e5G4wkLGleaf"} - "j" {:type :leaf, :by "root", :at 1517413396417, :text "workflow", :id "Bk4jf4PyLG"} - "r" {:type :leaf, :by "root", :at 1517413399525, :text "new-workflow", :id "ByazNvJ8G"} - } - } - } - } - } - } - } - } - } - } - "remove-command" { - :type :expr, :by "root", :at 1517328389069, :id "SkepZ_M0HM" - :data { - "T" {:type :leaf, :by "root", :at 1517328389069, :text "defn", :id "BkbpZ_M0Sz"} - "j" {:type :leaf, :by "root", :at 1517328389069, :text "remove-command", :id "H1GpZuG0BM"} - "r" { - :type :expr, :by "root", :at 1517328389069, :id "BJXa-uMRrM" - :data { - "T" {:type :leaf, :by "root", :at 1517328391233, :text "db", :id "HJgkfOGCHf"} - "j" {:type :leaf, :by "root", :at 1517328392433, :text "op-data", :id "BJmyfuGABG"} - "r" {:type :leaf, :by "root", :at 1517328393559, :text "sid", :id "r1Wf_MABz"} - "v" {:type :leaf, :by "root", :at 1517328395197, :text "op-id", :id "S1gzG_MCHz"} - "x" {:type :leaf, :by "root", :at 1517328396059, :text "op-time", :id "rkMmGdfCrM"} - } - } - "v" { - :type :expr, :by "root", :at 1517328396878, :id "ByHzdfAHz" - :data { - "T" {:type :leaf, :by "root", :at 1517328397741, :text "let", :id "ByHzdfAHzleaf"} - "j" { - :type :expr, :by "root", :at 1517328397915, :id "HJ7Uf_f0rM" - :data { - "T" { - :type :expr, :by "root", :at 1517328398082, :id "SkELfdMRrz" - :data { - "b" { - :type :expr, :by "root", :at 1517674637927, :id "ByU5gDmIz" - :data { - "T" {:type :leaf, :by "root", :at 1517674638386, :text "[]", :id "ByU5gDmIzleaf"} - "b" {:type :leaf, :by "root", :at 1517674677669, :text "workflow-id", :id "SkZTnxPmLf"} - "j" {:type :leaf, :by "root", :at 1517674641570, :text "command-id", :id "HyvqeDXIz"} - } - } - "j" {:type :leaf, :by "root", :at 1517328417003, :text "op-data", :id "rJbwmuzCBM"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517328417890, :id "rkg5QufAHf" - :data { - "T" {:type :leaf, :by "root", :at 1517328419082, :text "update-in", :id "rkg5QufAHfleaf"} - "j" {:type :leaf, :by "root", :at 1517328419926, :text "db", :id "Hy2mOzCSG"} - "r" { - :type :expr, :by "root", :at 1517328420415, :id "Hy73Q_G0BG" - :data { - "T" {:type :leaf, :by "root", :at 1517328420623, :text "[]", :id "ByG27_f0SM"} - "j" {:type :leaf, :by "root", :at 1517328424550, :text ":workflows", :id "HkRXuGArz"} - "r" {:type :leaf, :by "root", :at 1517328426527, :text "workflow-id", :id "HylZ4dMRSM"} - "v" {:type :leaf, :by "root", :at 1517328431077, :text ":commands", :id "SJl7V_z0Sz"} - } - } - "v" { - :type :expr, :by "root", :at 1517328432104, :id "Bku4OfASM" - :data { - "T" {:type :leaf, :by "root", :at 1517328432427, :text "fn", :id "Bku4OfASMleaf"} - "j" { - :type :expr, :by "root", :at 1517328432699, :id "HJgtV_GRHz" - :data { - "T" {:type :leaf, :by "root", :at 1517328434810, :text "commands", :id "BJFEOzASz"} - } - } - "r" { - :type :expr, :by "root", :at 1517328435411, :id "rJzsV_f0SM" - :data { - "T" {:type :leaf, :by "root", :at 1517328436961, :text "dissoc", :id "rJzsV_f0SMleaf"} - "j" {:type :leaf, :by "root", :at 1517328529044, :text "commands", :id "SyCEdfRrf"} - "r" {:type :leaf, :by "root", :at 1517328441131, :text "command-id", :id "H1WkS_zCHM"} - } - } - } - } - } - } - } - } - } - } - "remove-workflow" { - :type :expr, :by "root", :at 1517328617125, :id "BJQWgtzCSf" - :data { - "T" {:type :leaf, :by "root", :at 1517328617125, :text "defn", :id "HJEZlKMCHG"} - "j" {:type :leaf, :by "root", :at 1517328617125, :text "remove-workflow", :id "BJrWeFf0SG"} - "r" { - :type :expr, :by "root", :at 1517328617125, :id "rJU-lKfCSz" - :data { - "T" {:type :leaf, :by "root", :at 1517328621242, :text "db", :id "SJ7xYzCSG"} - "j" {:type :leaf, :by "root", :at 1517328622712, :text "op-data", :id "SkXBlKzASf"} - "r" {:type :leaf, :by "root", :at 1517328623506, :text "sid", :id "HyGwxtMCSM"} - "v" {:type :leaf, :by "root", :at 1517328626042, :text "op-id", :id "rJdxKzRHM"} - "x" {:type :leaf, :by "root", :at 1517328627548, :text "op-time", :id "rkf5lKMASG"} - } - } - "v" { - :type :expr, :by "root", :at 1517328652624, :id "rkrfKz0BM" - :data { - "D" {:type :leaf, :by "root", :at 1517328653214, :text "let", :id "BkxSGFGCSz"} - "L" { - :type :expr, :by "root", :at 1517328653429, :id "B1rSztGRrG" - :data { - "T" { - :type :expr, :by "root", :at 1517328653578, :id "HJLztfRSM" - :data { - "T" {:type :leaf, :by "root", :at 1517328654005, :text "workflow-id", :id "rkNHzFGRSf"} - "j" {:type :leaf, :by "root", :at 1517328655971, :text "op-data", :id "H1DftfRSG"} - } - } - } - } - "T" { - :type :expr, :by "root", :at 1517328628152, :id "SJW3gFMASf" - :data { - "T" {:type :leaf, :by "root", :at 1517328633886, :text "update", :id "SJW3gFMASfleaf"} - "j" {:type :leaf, :by "root", :at 1517328635920, :text "db", :id "BJQ-tfRSz"} - "r" {:type :leaf, :by "root", :at 1517328637480, :text ":workflows", :id "S1M4WYM0BM"} - "v" { - :type :expr, :by "root", :at 1517328637720, :id "rJeLWtMRSG" - :data { - "T" {:type :leaf, :by "root", :at 1517328638745, :text "fn", :id "SkLbtzABz"} - "j" { - :type :expr, :by "root", :at 1517328639027, :id "ryGv-YM0Sz" - :data { - "T" {:type :leaf, :by "root", :at 1517328640618, :text "workflows", :id "SJbwbKz0rM"} - } - } - "r" { - :type :expr, :by "root", :at 1517328641674, :id "HJqbFG0Bf" - :data { - "T" {:type :leaf, :by "root", :at 1517328645740, :text "dissoc", :id "HJqbFG0Bfleaf"} - "j" {:type :leaf, :by "root", :at 1517328648721, :text "workflows", :id "HkWCWtGCBG"} - "r" {:type :leaf, :by "root", :at 1517328651198, :text "workflow-id", :id "ryWbzKz0SM"} - } - } - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :by "root", :at 1517237233495, :id "BkQKeNn2rf" - :data {} - } - } - "server.util" { - :ns { - :type :expr, :id "H1cSgIWeRr-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HyirlLbg0S-", :text "ns", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Sy3rgUZx0SW", :text "server.util", :by "root", :at 1500541255553} - } - } - :defs { - "find-first" { - :type :expr, :id "HJ0Sg8Zx0rb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HyJLe8ZxRrW", :text "defn", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJgLlI-lCSb", :text "find-first", :by "root", :at 1500541255553} - "r" { - :type :expr, :id "SyZUgL-xCHb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "SyMUl8-eCB-", :text "f", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rJ7IxUZgRSb", :text "xs", :by "root", :at 1500541255553} - } - } - "v" { - :type :expr, :id "rkVUxLWxABW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "H1SIg8ZgRBZ", :text "reduce", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "B1LLeUbgRH-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkwLxUZxABZ", :text "fn", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "B1OLxUWgCHW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Skt8e8ZeCH-", :text "_", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "rycUgLWg0rW", :text "x", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "B1sLeIWgASW", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "Bk2UgUWxRrb", :text "when", :by "root", :at 1500541255553} - "j" { - :type :expr, :id "SJp8gL-gCB-", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "HJRLeL-x0BW", :text "f", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "Hk1DxUZlAB-", :text "x", :by "root", :at 1500541255553} - } - } - "r" { - :type :expr, :id "BJgPxLbg0Sb", :by nil, :at 1500541255553 - :data { - "T" {:type :leaf, :id "rkbDlIbx0S-", :text "reduced", :by "root", :at 1500541255553} - "j" {:type :leaf, :id "B1MDlUZe0r-", :text "x", :by "root", :at 1500541255553} - } - } - } - } - } - } - "r" {:type :leaf, :id "BkmweL-xCr-", :text "nil", :by "root", :at 1500541255553} - "v" {:type :leaf, :id "ByEvlLbxRSb", :text "xs", :by "root", :at 1500541255553} - } - } - } - } - "log-js!" { - :type :expr, :id "Hyx3rl03hW", :by "root", :at 1507807299824 - :data { - "T" {:type :leaf, :text "defn", :id "SybnBe022b", :by "root", :at 1507807299824} - "j" {:type :leaf, :text "log-js!", :id "BkGnBlA3nb", :by "root", :at 1507807299824} - "r" { - :type :expr, :id "rkXnrxAh2W", :by "root", :at 1507807299824 - :data { - "D" {:type :leaf, :text "&", :id "Sy_IeCn3W", :by "root", :at 1507807312214} - "T" {:type :leaf, :text "args", :id "B1G8x0nhb", :by "root", :at 1507807311196} - } - } - "v" { - :type :expr, :id "B1g5Ig02hW", :by "root", :at 1507807314214 - :data { - "D" {:type :leaf, :text "apply", :id "B1GwxRn2b", :by "root", :at 1507807322695} - "T" {:type :leaf, :text "js/console.log", :id "B1g5Ig02hWleaf", :by "root", :at 1507813317702} - "j" { - :type :expr, :id "SJlV2gAhhb", :by "root", :at 1507807403935 - :data { - "D" {:type :leaf, :text "map", :id "HybVheC3hW", :by "root", :at 1507807405424} - "L" { - :type :expr, :id "Sku3gA32W", :by "root", :at 1507807407587 - :data { - "T" {:type :leaf, :text "fn", :id "rJDnlAhnb", :by "root", :at 1507807407873} - "j" { - :type :expr, :id "SkQ_2gCnhZ", :by "root", :at 1507807408313 - :data { - "T" {:type :leaf, :text "x", :id "BJfO2l02h-", :by "root", :at 1507807408822} - } - } - "r" { - :type :expr, :id "HkWYng032W", :by "root", :at 1507807409370 - :data { - "T" {:type :leaf, :text "if", :id "HkWYng032Wleaf", :by "root", :at 1507807410374} - "j" { - :type :expr, :id "BJh2e022-", :by "root", :at 1507807411586 - :data { - "T" {:type :leaf, :text "coll?", :id "Syjng032Z", :by "root", :at 1507807412476} - "j" {:type :leaf, :text "x", :id "rJanxChh-", :by "root", :at 1507807412913} - } - } - "r" { - :type :expr, :id "ByMpng0n3-", :by "root", :at 1507807413442 - :data { - "T" {:type :leaf, :text "clj->js", :id "ByMpng0n3-leaf", :by "root", :at 1507807416591} - "j" {:type :leaf, :text "x", :id "BkwpeAn3b", :by "root", :at 1507807422979} - } - } - "v" {:type :leaf, :text "x", :id "rkZb6l0n2-", :by "root", :at 1507807418380} - } - } - } - } - "T" {:type :leaf, :text "args", :id "BkErvxAnn-", :by "root", :at 1507807326178} - } - } - } - } - } - } - "map-val" { - :type :expr, :by "root", :at 1517503374018, :id "SkgUqQagIz" - :data { - "T" {:type :leaf, :by "root", :at 1517503374018, :text "defn", :id "Bk-89magUG"} - "j" {:type :leaf, :by "root", :at 1517503374018, :text "map-val", :id "H1ML5XTgLz"} - "r" { - :type :expr, :by "root", :at 1517503374018, :id "rJm89XagIG" - :data { - "T" {:type :leaf, :by "root", :at 1517503390642, :text "f", :id "BkSj7TlLG"} - "j" {:type :leaf, :by "root", :at 1517503396745, :text "xs", :id "HyevsX6gUM"} - } - } - "v" { - :type :expr, :by "root", :at 1517503397873, :id "BkeAsXalLG" - :data { - "T" {:type :leaf, :by "root", :at 1517503406748, :text "assert", :id "BkeAsXalLGleaf"} - "j" { - :type :expr, :by "root", :at 1517559757465, :id "S1er01s-8z" - :data { - "D" {:type :leaf, :by "root", :at 1517559759718, :text "or", :id "HJLAkib8f"} - "T" { - :type :expr, :by "root", :at 1517503407706, :id "SJgO37pl8f" - :data { - "T" {:type :leaf, :by "root", :at 1517503408483, :text "map?", :id "HJO2X6gIz"} - "j" {:type :leaf, :by "root", :at 1517503409424, :text "xs", :id "HkY3m6xLM"} - } - } - "j" { - :type :expr, :by "root", :at 1517559760959, :id "BJxY0yiZIf" - :data { - "T" {:type :leaf, :by "root", :at 1517559762179, :text "seq?", :id "BkF0ys-LM"} - "j" {:type :leaf, :by "root", :at 1517559763254, :text "xs", :id "rkZ5C1j-Lf"} - } - } - } - } - "r" {:type :leaf, :by "root", :at 1517503423703, :text "|map-val deals maps", :id "Hybn37Tl8z"} - } - } - "x" { - :type :expr, :by "root", :at 1517503424748, :id "ByYpX6lUG" - :data { - "T" {:type :leaf, :by "root", :at 1517503427738, :text "->>", :id "ByYpX6lUGleaf"} - "b" {:type :leaf, :by "root", :at 1517503469664, :text "xs", :id "By-He4Tg8M"} - "j" { - :type :expr, :by "root", :at 1517503432668, :id "ry-0QTlIz" - :data { - "T" {:type :leaf, :by "root", :at 1517503428381, :text "map", :id "H1b3ampeLf"} - "j" { - :type :expr, :by "root", :at 1517503434897, :id "rkmCXTlLz" - :data { - "T" {:type :leaf, :by "root", :at 1517503436015, :text "fn", :id "r1-GA7pe8G"} - "j" { - :type :expr, :by "root", :at 1517503437149, :id "SkxrRQ6xUG" - :data { - "T" { - :type :expr, :by "root", :at 1517503438926, :id "HJDRmalLG" - :data { - "T" {:type :leaf, :by "root", :at 1517503439578, :text "[]", :id "BkrRmTeUM"} - "j" {:type :leaf, :by "root", :at 1517503440338, :text "k", :id "Hkeu0X6eUM"} - "r" {:type :leaf, :by "root", :at 1517503441053, :text "x", :id "BytRmTgLz"} - } - } - } - } - "r" { - :type :expr, :by "root", :at 1517503444958, :id "Hke6A7Te8M" - :data { - "T" {:type :leaf, :by "root", :at 1517503449710, :text "[]", :id "Hke6A7Te8Mleaf"} - "j" {:type :leaf, :by "root", :at 1517503450887, :text "k", :id "r1WGyVaeLf"} - "r" { - :type :expr, :by "root", :at 1517503464395, :id "HJxglVpgIM" - :data { - "T" {:type :leaf, :by "root", :at 1517503464734, :text "f", :id "rJgg4peUG"} - "j" {:type :leaf, :by "root", :at 1517503465318, :text "x", :id "r1gWlEalLG"} - } - } - } - } - } - } - } - } - } - } - } - } - "try-verbosely!" { - :type :expr, :id "Sye_yxAnhb", :by "root", :at 1507807199530 - :data { - "T" {:type :leaf, :text "defn", :id "BkZu1xA2nb", :by "root", :at 1507807199530} - "j" {:type :leaf, :text "try-verbosely!", :id "SyGukeA3hW", :by "root", :at 1507807199530} - "r" { - :type :expr, :id "ByXOJeC3h-", :by "root", :at 1507807199530 - :data { - "T" {:type :leaf, :text "x", :id "H1vxgC3hW", :by "root", :at 1507807214905} - } - } - "v" { - :type :expr, :id "rJdeeChnb", :by "root", :at 1507805724033 - :data { - "T" {:type :leaf, :text "try", :id "rkk-4XcTh2W", :by "root", :at 1507805724033} - "f" {:type :leaf, :text "x", :id "SkcxlCn2Z", :by "root", :at 1507807219573} - "r" { - :type :expr, :id "HkbzEm5an3-", :by "root", :at 1507805724033 - :data { - "T" {:type :leaf, :text "catch", :id "B1GzV7qp22Z", :by "root", :at 1507805724033} - "j" {:type :leaf, :text "js/Error", :id "BJmzNQq6nnZ", :by "root", :at 1507805724033} - "r" {:type :leaf, :text "e", :id "BkVzEX9phn-", :by "root", :at 1507805724033} - "v" { - :type :expr, :id "S1BfVX5phhb", :by "root", :at 1507805724033 - :data { - "T" {:type :leaf, :text ".error", :id "BkUMVQcp2hW", :by "root", :at 1515986547318} - "j" {:type :leaf, :text "js/console", :id "ByPGV75Tn2Z", :by "root", :at 1507805724033} - "r" {:type :leaf, :text "e", :id "SkuMVQ9a2hZ", :by "root", :at 1507805724033} - } - } - } - } - } - } - } - } - } - :proc { - :type :expr, :id "rJTSx8ZxRB-", :by nil, :at 1500541255553 - :data {} - } - } - } - } - :sessions {} - :users { - "root" {:id "root", :name "root", :nickname "root", :password "d41d8cd98f00b204e9800998ecf8427e", :avatar nil, :theme :star-trail} - } - :saved-files {} - :configs {:storage-key "calcit.edn", :extension ".cljs", :output "src", :port 6002} -} \ No newline at end of file diff --git a/server/package.json b/server/package.json deleted file mode 100644 index 786ede1..0000000 --- a/server/package.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "name": "termina", - "version": "0.1.1", - "description": "Start process from a Webpage", - "main": "index.js", - "bin": { - "termina": "dist/main.js" - }, - "scripts": { - "tiye": "rsync -r dist/main.js repo.tiye.me:servers/tiye", - "compile": "shadow-cljs compile app", - "build": "shadow-cljs release app", - "watch": "shadow-cljs watch app", - "test": "echo \"Error: no test specified\" && exit 1" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/mvc-works/termina.git" - }, - "author": "", - "license": "ISC", - "bugs": { - "url": "https://github.com/mvc-works/termina/issues" - }, - "homepage": "https://github.com/mvc-works/termina#readme", - "dependencies": { - "md5": "^2.2.1", - "shortid": "^2.2.6", - "uws": "^9.14.0" - }, - "devDependencies": { - "shadow-cljs": "2.2.3", - "source-map-support": "^0.5.3", - "ws": "^4.0.0" - } -} diff --git a/server/shadow-cljs.edn b/server/shadow-cljs.edn deleted file mode 100644 index 1930810..0000000 --- a/server/shadow-cljs.edn +++ /dev/null @@ -1,11 +0,0 @@ - -{:source-paths ["src"], - :http {:port 9640} - :dependencies [[mvc-works/hsl "0.1.2"] - [mvc-works/verbosely "0.1.2"] - [cumulo/recollect "0.4.3"]] - :builds {:app {:target :node-script - :output-to "target/main.js" - :main server.main/main! - :devtools {:after-load server.main/reload!} - :release {:output-to "dist/main.js"}}}} diff --git a/server/src/server/main.cljs b/server/src/server/main.cljs deleted file mode 100644 index 406a815..0000000 --- a/server/src/server/main.cljs +++ /dev/null @@ -1,56 +0,0 @@ - -(ns server.main - (:require [server.schema :as schema] - [server.network :refer [run-server! sync-clients!]] - [server.updater.core :refer [updater]] - [cljs.reader :refer [read-string]] - [server.util :refer [try-verbosely! log-js!]] - [server.reel :refer [reel-updater refresh-reel reel-schema]] - [server.manager :refer [create-process! kill-process!]] - ["fs" :as fs] - ["shortid" :as shortid])) - -(def initial-db - (let [filepath (:storage-key schema/configs)] - (if (fs/existsSync filepath) - (do - (println "Found storage in" filepath) - (read-string (fs/readFileSync filepath "utf8"))) - schema/database))) - -(defonce *reel (atom (merge reel-schema {:base initial-db, :db initial-db}))) - -(defonce *reader-reel (atom @*reel)) - -(defn dispatch! [op op-data sid] - (let [op-id (.generate shortid), op-time (.valueOf (js/Date.))] - (comment println "Dispatch!" op (type op-data)) - (try-verbosely! - (cond - (= op :effect/run) (create-process! op-data dispatch!) - (= op :effect/kill) (kill-process! op-data dispatch!) - :else - (let [new-reel (reel-updater @*reel updater op op-data sid op-id op-time)] - (reset! *reel new-reel)))))) - -(defn on-exit! [code] - (fs/writeFileSync (:storage-key schema/configs) (pr-str (assoc (:db @*reel) :sessions {}))) - (println "Saving file on exit:" (:storage-key schema/configs) code) - (.exit js/process)) - -(defn proxy-dispatch! [& args] "Make dispatch hot relodable." (apply dispatch! args)) - -(defn render-loop! [] - (if (not (identical? @*reader-reel @*reel)) - (do (reset! *reader-reel @*reel) (sync-clients! @*reader-reel))) - (js/setTimeout render-loop! 300)) - -(defn main! [] - (run-server! proxy-dispatch! (:port schema/configs)) - (render-loop!) - (.on js/process "SIGINT" on-exit!)) - -(defn reload! [] - (println "Code updated.") - (reset! *reel (refresh-reel @*reel initial-db updater)) - (sync-clients! @*reader-reel)) diff --git a/server/src/server/twig/user.cljs b/server/src/server/twig/user.cljs deleted file mode 100644 index c0a1b56..0000000 --- a/server/src/server/twig/user.cljs +++ /dev/null @@ -1,4 +0,0 @@ - -(ns server.twig.user (:require [recollect.macros :refer [deftwig]])) - -(deftwig twig-user (user) (dissoc user :password)) diff --git a/server/src/server/updater/core.cljs b/server/src/server/updater/core.cljs deleted file mode 100644 index 1068394..0000000 --- a/server/src/server/updater/core.cljs +++ /dev/null @@ -1,31 +0,0 @@ - -(ns server.updater.core - (:require [server.updater.session :as session] - [server.updater.user :as user] - [server.updater.router :as router] - [server.updater.process :as process] - [server.updater.workflow :as workflow])) - -(defn updater [db op op-data sid op-id op-time] - (case op - :session/connect (session/connect db op-data sid op-id op-time) - :session/disconnect (session/disconnect db op-data sid op-id op-time) - :user/log-in (user/log-in db op-data sid op-id op-time) - :user/sign-up (user/sign-up db op-data sid op-id op-time) - :user/log-out (user/log-out db op-data sid op-id op-time) - :session/remove-notification (session/remove-notification db op-data sid op-id op-time) - :router/change (router/change db op-data sid op-id op-time) - :process/create (process/create db op-data sid op-id op-time) - :process/kill (process/kill db op-data sid op-id op-time) - :process/stdout (process/stdout db op-data sid op-id op-time) - :process/stderr (process/stderr db op-data sid op-id op-time) - :process/clear (process/clear db op-data sid op-id op-time) - :process/finish (process/finish db op-data sid op-id op-time) - :process/shorten-content (process/shorten-content db op-data sid op-id op-time) - :workflow/create (workflow/create-workflow db op-data sid op-id op-time) - :workflow/remove (workflow/remove-workflow db op-data sid op-id op-time) - :workflow/add-command (workflow/add-command db op-data sid op-id op-time) - :workflow/remove-command (workflow/remove-command db op-data sid op-id op-time) - :workflow/edit-command (workflow/edit-command db op-data sid op-id op-time) - :workflow/edit (workflow/edit-workflow db op-data sid op-id op-time) - db)) diff --git a/server/src/server/updater/router.cljs b/server/src/server/updater/router.cljs deleted file mode 100644 index dffdb16..0000000 --- a/server/src/server/updater/router.cljs +++ /dev/null @@ -1,5 +0,0 @@ - -(ns server.updater.router ) - -(defn change [db op-data session-id op-id op-time] - (assoc-in db [:sessions session-id :router] op-data)) diff --git a/server/src/server/updater/session.cljs b/server/src/server/updater/session.cljs deleted file mode 100644 index 9e1d168..0000000 --- a/server/src/server/updater/session.cljs +++ /dev/null @@ -1,14 +0,0 @@ - -(ns server.updater.session (:require [server.schema :as schema])) - -(defn connect [db op-data session-id op-id op-time] - (assoc-in db [:sessions session-id] (merge schema/session {:id session-id}))) - -(defn disconnect [db op-data session-id op-id op-time] - (update db :sessions (fn [session] (dissoc session session-id)))) - -(defn remove-notification [db op-data session-id op-id op-time] - (update-in - db - [:sessions session-id :notifications] - (fn [notifications] (subvec notifications 0 op-data)))) diff --git a/server/src/server/updater/user.cljs b/server/src/server/updater/user.cljs deleted file mode 100644 index 6b86031..0000000 --- a/server/src/server/updater/user.cljs +++ /dev/null @@ -1,53 +0,0 @@ - -(ns server.updater.user (:require [server.util :refer [find-first]] ["md5" :as md5])) - -(defn log-in [db op-data session-id op-id op-time] - (let [[username password] op-data - maybe-user (find-first - (fn [user] (and (= username (:name user)))) - (vals (:users db)))] - (update-in - db - [:sessions session-id] - (fn [session] - (if (some? maybe-user) - (if (= (md5 password) (:password maybe-user)) - (assoc session :user-id (:id maybe-user)) - (update - session - :notifications - (fn [notifications] - (conj - notifications - {:id op-id, :kind :attentive, :text (str "Wrong password for " username)})))) - (update - session - :notifications - (fn [notifications] - (conj - notifications - {:id op-id, :kind :attentive, :text (str "No user named: " username)})))))))) - -(defn log-out [db op-data session-id op-id op-time] - (assoc-in db [:sessions session-id :user-id] nil)) - -(defn sign-up [db op-data session-id op-id op-time] - (let [[username password] op-data - maybe-user (find-first (fn [user] (= username (:name user))) (vals (:users db)))] - (if (some? maybe-user) - (update-in - db - [:sessions session-id :notifications] - (fn [notifications] - (conj - notifications - {:id op-id, :kind :attentive, :text (str "Name is token: " username)}))) - (-> db - (assoc-in [:sessions session-id :user-id] op-id) - (assoc-in - [:users op-id] - {:id op-id, - :name username, - :nickname username, - :password (md5 password), - :avatar nil}))))) diff --git a/server/src/server/util.cljs b/server/src/server/util.cljs deleted file mode 100644 index 4640997..0000000 --- a/server/src/server/util.cljs +++ /dev/null @@ -1,13 +0,0 @@ - -(ns server.util ) - -(defn find-first [f xs] (reduce (fn [_ x] (when (f x) (reduced x))) nil xs)) - -(defn log-js! [& args] - (apply js/console.log (map (fn [x] (if (coll? x) (clj->js x) x)) args))) - -(defn map-val [f xs] - (assert (or (map? xs) (seq? xs)) "map-val deals maps") - (->> xs (map (fn [[k x]] [k (f x)])))) - -(defn try-verbosely! [x] (try x (catch js/Error e (.error js/console e)))) diff --git a/server/yarn.lock b/server/yarn.lock deleted file mode 100644 index cf8481c..0000000 --- a/server/yarn.lock +++ /dev/null @@ -1,1279 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - -asn1.js@^4.0.0: - version "4.9.2" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -assert@^1.1.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" - dependencies: - util "0.10.3" - -async-limiter@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" - -babel-code-frame@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" - dependencies: - chalk "^1.1.3" - esutils "^2.0.2" - js-tokens "^3.0.2" - -babel-core@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" - dependencies: - babel-code-frame "^6.26.0" - babel-generator "^6.26.0" - babel-helpers "^6.24.1" - babel-messages "^6.23.0" - babel-register "^6.26.0" - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - convert-source-map "^1.5.0" - debug "^2.6.8" - json5 "^0.5.1" - lodash "^4.17.4" - minimatch "^3.0.4" - path-is-absolute "^1.0.1" - private "^0.1.7" - slash "^1.0.0" - source-map "^0.5.6" - -babel-generator@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" - dependencies: - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - detect-indent "^4.0.0" - jsesc "^1.3.0" - lodash "^4.17.4" - source-map "^0.5.6" - trim-right "^1.0.1" - -babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" - dependencies: - babel-helper-explode-assignable-expression "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-call-delegate@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" - dependencies: - babel-helper-hoist-variables "^6.24.1" - babel-runtime "^6.22.0" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-define-map@^6.24.1: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" - dependencies: - babel-helper-function-name "^6.24.1" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - lodash "^4.17.4" - -babel-helper-explode-assignable-expression@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" - dependencies: - babel-runtime "^6.22.0" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-function-name@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" - dependencies: - babel-helper-get-function-arity "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-get-function-arity@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-hoist-variables@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-optimise-call-expression@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-regex@^6.24.1: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" - dependencies: - babel-runtime "^6.26.0" - babel-types "^6.26.0" - lodash "^4.17.4" - -babel-helper-remap-async-to-generator@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" - dependencies: - babel-helper-function-name "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-replace-supers@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" - dependencies: - babel-helper-optimise-call-expression "^6.24.1" - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helpers@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" - dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-messages@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-check-es2015-constants@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-syntax-async-functions@^6.8.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" - -babel-plugin-syntax-exponentiation-operator@^6.8.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" - -babel-plugin-syntax-trailing-function-commas@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" - -babel-plugin-transform-async-to-generator@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" - dependencies: - babel-helper-remap-async-to-generator "^6.24.1" - babel-plugin-syntax-async-functions "^6.8.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-arrow-functions@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-block-scoping@^6.23.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" - dependencies: - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - lodash "^4.17.4" - -babel-plugin-transform-es2015-classes@^6.23.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" - dependencies: - babel-helper-define-map "^6.24.1" - babel-helper-function-name "^6.24.1" - babel-helper-optimise-call-expression "^6.24.1" - babel-helper-replace-supers "^6.24.1" - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-computed-properties@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" - dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-destructuring@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-duplicate-keys@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-for-of@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-function-name@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" - dependencies: - babel-helper-function-name "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-literals@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" - dependencies: - babel-plugin-transform-es2015-modules-commonjs "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" - dependencies: - babel-plugin-transform-strict-mode "^6.24.1" - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-types "^6.26.0" - -babel-plugin-transform-es2015-modules-systemjs@^6.23.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" - dependencies: - babel-helper-hoist-variables "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-modules-umd@^6.23.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" - dependencies: - babel-plugin-transform-es2015-modules-amd "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-object-super@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" - dependencies: - babel-helper-replace-supers "^6.24.1" - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-parameters@^6.23.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" - dependencies: - babel-helper-call-delegate "^6.24.1" - babel-helper-get-function-arity "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-shorthand-properties@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-spread@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-sticky-regex@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" - dependencies: - babel-helper-regex "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-template-literals@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-typeof-symbol@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-unicode-regex@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" - dependencies: - babel-helper-regex "^6.24.1" - babel-runtime "^6.22.0" - regexpu-core "^2.0.0" - -babel-plugin-transform-exponentiation-operator@^6.22.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" - dependencies: - babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" - babel-plugin-syntax-exponentiation-operator "^6.8.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-regenerator@^6.22.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" - dependencies: - regenerator-transform "^0.10.0" - -babel-plugin-transform-strict-mode@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-preset-env@^1.6.0: - version "1.6.1" - resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" - dependencies: - babel-plugin-check-es2015-constants "^6.22.0" - babel-plugin-syntax-trailing-function-commas "^6.22.0" - babel-plugin-transform-async-to-generator "^6.22.0" - babel-plugin-transform-es2015-arrow-functions "^6.22.0" - babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" - babel-plugin-transform-es2015-block-scoping "^6.23.0" - babel-plugin-transform-es2015-classes "^6.23.0" - babel-plugin-transform-es2015-computed-properties "^6.22.0" - babel-plugin-transform-es2015-destructuring "^6.23.0" - babel-plugin-transform-es2015-duplicate-keys "^6.22.0" - babel-plugin-transform-es2015-for-of "^6.23.0" - babel-plugin-transform-es2015-function-name "^6.22.0" - babel-plugin-transform-es2015-literals "^6.22.0" - babel-plugin-transform-es2015-modules-amd "^6.22.0" - babel-plugin-transform-es2015-modules-commonjs "^6.23.0" - babel-plugin-transform-es2015-modules-systemjs "^6.23.0" - babel-plugin-transform-es2015-modules-umd "^6.23.0" - babel-plugin-transform-es2015-object-super "^6.22.0" - babel-plugin-transform-es2015-parameters "^6.23.0" - babel-plugin-transform-es2015-shorthand-properties "^6.22.0" - babel-plugin-transform-es2015-spread "^6.22.0" - babel-plugin-transform-es2015-sticky-regex "^6.22.0" - babel-plugin-transform-es2015-template-literals "^6.22.0" - babel-plugin-transform-es2015-typeof-symbol "^6.23.0" - babel-plugin-transform-es2015-unicode-regex "^6.22.0" - babel-plugin-transform-exponentiation-operator "^6.22.0" - babel-plugin-transform-regenerator "^6.22.0" - browserslist "^2.1.2" - invariant "^2.2.2" - semver "^5.3.0" - -babel-register@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" - dependencies: - babel-core "^6.26.0" - babel-runtime "^6.26.0" - core-js "^2.5.0" - home-or-tmp "^2.0.0" - lodash "^4.17.4" - mkdirp "^0.5.1" - source-map-support "^0.4.15" - -babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.11.0" - -babel-template@^6.24.1, babel-template@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" - dependencies: - babel-runtime "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - lodash "^4.17.4" - -babel-traverse@^6.24.1, babel-traverse@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" - dependencies: - babel-code-frame "^6.26.0" - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - debug "^2.6.8" - globals "^9.18.0" - invariant "^2.2.2" - lodash "^4.17.4" - -babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" - dependencies: - babel-runtime "^6.26.0" - esutils "^2.0.2" - lodash "^4.17.4" - to-fast-properties "^1.0.3" - -babylon@^6.18.0: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" - -balanced-match@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - -base64-js@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" - -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: - version "4.11.8" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" - -brace-expansion@^1.1.7: - version "1.1.8" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -brorand@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.1.1" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - -browserify-rsa@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" - dependencies: - bn.js "^4.1.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" - dependencies: - bn.js "^4.1.1" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.2" - elliptic "^6.0.0" - inherits "^2.0.1" - parse-asn1 "^5.0.0" - -browserify-zlib@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" - dependencies: - pako "~1.0.5" - -browserslist@^2.1.2: - version "2.9.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.9.0.tgz#706aca15c53be15610f466e348cbfa0c00a6a379" - dependencies: - caniuse-lite "^1.0.30000760" - electron-to-chromium "^1.3.27" - -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - -buffer@^4.3.0: - version "4.9.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - isarray "^1.0.0" - -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - -caniuse-lite@^1.0.30000760: - version "1.0.30000769" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000769.tgz#d68c5aa0772ea3eac6c97d42e239c9b4d3261b93" - -chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -charenc@~0.0.1: - version "0.0.2" - resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" - -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - -console-browserify@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" - dependencies: - date-now "^0.1.4" - -constants-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" - -convert-source-map@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" - -core-js@^2.4.0, core-js@^2.5.0: - version "2.5.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" - -core-util-is@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - -create-ecdh@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" - dependencies: - bn.js "^4.1.0" - elliptic "^6.0.0" - -create-hash@^1.1.0, create-hash@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - ripemd160 "^2.0.0" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: - version "1.1.6" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" - dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -crypt@~0.0.1: - version "0.0.2" - resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" - -crypto-browserify@^3.11.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" - dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" - -date-now@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" - -debug@^2.6.8: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - dependencies: - ms "2.0.0" - -des.js@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" - dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -detect-indent@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" - dependencies: - repeating "^2.0.0" - -diffie-hellman@^5.0.0: - version "5.0.2" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" - dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" - -domain-browser@^1.1.1: - version "1.1.7" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" - -electron-to-chromium@^1.3.27: - version "1.3.27" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.27.tgz#78ecb8a399066187bb374eede35d9c70565a803d" - -elliptic@^6.0.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" - dependencies: - bn.js "^4.4.0" - brorand "^1.0.1" - hash.js "^1.0.0" - hmac-drbg "^1.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.0" - -escape-string-regexp@^1.0.2: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - -esutils@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" - -events@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" - -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" - dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" - -globals@^9.18.0: - version "9.18.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" - -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - dependencies: - ansi-regex "^2.0.0" - -hash-base@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" - dependencies: - inherits "^2.0.1" - -hash-base@^3.0.0: - version "3.0.4" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.0" - -hmac-drbg@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - -home-or-tmp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.1" - -https-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" - -ieee754@^1.1.4: - version "1.1.8" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" - -indexof@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" - -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - -inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - -invariant@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" - dependencies: - loose-envify "^1.0.0" - -is-buffer@~1.1.1: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - -is-finite@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" - dependencies: - number-is-nan "^1.0.0" - -isarray@^1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - -js-tokens@^3.0.0, js-tokens@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" - -jsesc@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - -json5@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" - -lodash@^4.17.4: - version "4.17.4" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" - -loose-envify@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" - dependencies: - js-tokens "^3.0.0" - -md5.js@^1.3.4: - version "1.3.4" - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - -md5@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" - dependencies: - charenc "~0.0.1" - crypt "~0.0.1" - is-buffer "~1.1.1" - -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" - -minimalistic-assert@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" - -minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - -minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - dependencies: - brace-expansion "^1.1.7" - -minimist@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" - -mkdirp@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" - dependencies: - minimist "0.0.8" - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - -node-libs-browser@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" - dependencies: - assert "^1.1.1" - browserify-zlib "^0.2.0" - buffer "^4.3.0" - console-browserify "^1.1.0" - constants-browserify "^1.0.0" - crypto-browserify "^3.11.0" - domain-browser "^1.1.1" - events "^1.0.0" - https-browserify "^1.0.0" - os-browserify "^0.3.0" - path-browserify "0.0.0" - process "^0.11.10" - punycode "^1.2.4" - querystring-es3 "^0.2.0" - readable-stream "^2.3.3" - stream-browserify "^2.0.1" - stream-http "^2.7.2" - string_decoder "^1.0.0" - timers-browserify "^2.0.4" - tty-browserify "0.0.0" - url "^0.11.0" - util "^0.10.3" - vm-browserify "0.0.4" - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - -os-browserify@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - -os-homedir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - -os-tmpdir@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - -pako@~1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" - -parse-asn1@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" - dependencies: - asn1.js "^4.0.0" - browserify-aes "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - -path-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" - -path-is-absolute@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - -pbkdf2@^3.0.3: - version "3.0.14" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -private@^0.1.6, private@^0.1.7: - version "0.1.8" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" - -process-nextick-args@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" - -process@^0.11.10: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - -public-encrypt@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - -punycode@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - -punycode@^1.2.4: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - -querystring-es3@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - -querystring@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" - dependencies: - safe-buffer "^5.1.0" - -randomfill@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" - dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" - -readable-stream@^2.0.2, readable-stream@^2.2.6, readable-stream@^2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - safe-buffer "~5.1.1" - string_decoder "~1.0.3" - util-deprecate "~1.0.1" - -readline-sync@^1.4.7: - version "1.4.7" - resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.7.tgz#001bfdd4c06110c3c084c63bf7c6a56022213f30" - -regenerate@^1.2.1: - version "1.3.3" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" - -regenerator-runtime@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" - -regenerator-transform@^0.10.0: - version "0.10.1" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" - dependencies: - babel-runtime "^6.18.0" - babel-types "^6.19.0" - private "^0.1.6" - -regexpu-core@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" - dependencies: - regenerate "^1.2.1" - regjsgen "^0.2.0" - regjsparser "^0.1.4" - -regjsgen@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" - -regjsparser@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" - dependencies: - jsesc "~0.5.0" - -repeating@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" - dependencies: - is-finite "^1.0.0" - -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" - dependencies: - hash-base "^2.0.0" - inherits "^2.0.1" - -safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" - -semver@^5.3.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" - -setimmediate@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - -sha.js@^2.4.0, sha.js@^2.4.8: - version "2.4.9" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -shadow-cljs-jar@1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/shadow-cljs-jar/-/shadow-cljs-jar-1.1.2.tgz#88664fae5957a7c21554e1a33476f1c475162c92" - -shadow-cljs@2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/shadow-cljs/-/shadow-cljs-2.2.3.tgz#e91c34b2eea037a136590aabcbd316301d6c0cab" - dependencies: - babel-core "^6.26.0" - babel-preset-env "^1.6.0" - mkdirp "^0.5.1" - node-libs-browser "^2.0.0" - readline-sync "^1.4.7" - shadow-cljs-jar "1.1.2" - signal-exit "^3.0.2" - source-map-support "^0.4.15" - ws "^3.0.0" - -shortid@^2.2.6: - version "2.2.8" - resolved "https://registry.yarnpkg.com/shortid/-/shortid-2.2.8.tgz#033b117d6a2e975804f6f0969dbe7d3d0b355131" - -signal-exit@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" - -slash@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" - -source-map-support@^0.4.15: - version "0.4.18" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" - dependencies: - source-map "^0.5.6" - -source-map-support@^0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.3.tgz#2b3d5fff298cfa4d1afd7d4352d569e9a0158e76" - dependencies: - source-map "^0.6.0" - -source-map@^0.5.6: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - -source-map@^0.6.0: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - -stream-browserify@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" - dependencies: - inherits "~2.0.1" - readable-stream "^2.0.2" - -stream-http@^2.7.2: - version "2.7.2" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.1" - readable-stream "^2.2.6" - to-arraybuffer "^1.0.0" - xtend "^4.0.0" - -string_decoder@^1.0.0, string_decoder@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - dependencies: - ansi-regex "^2.0.0" - -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - -timers-browserify@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" - dependencies: - setimmediate "^1.0.4" - -to-arraybuffer@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" - -to-fast-properties@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" - -trim-right@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" - -tty-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" - -ultron@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.0.tgz#b07a2e6a541a815fc6a34ccd4533baec307ca864" - -url@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - dependencies: - punycode "1.3.2" - querystring "0.2.0" - -util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - -util@0.10.3, util@^0.10.3: - version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - dependencies: - inherits "2.0.1" - -uws@^9.14.0: - version "9.14.0" - resolved "https://registry.yarnpkg.com/uws/-/uws-9.14.0.tgz#fac8386befc33a7a3705cbd58dc47b430ca4dd95" - -vm-browserify@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" - dependencies: - indexof "0.0.1" - -ws@^3.0.0: - version "3.3.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.2.tgz#96c1d08b3fefda1d5c1e33700d3bfaa9be2d5608" - dependencies: - async-limiter "~1.0.0" - safe-buffer "~5.1.0" - ultron "~1.1.0" - -ws@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-4.0.0.tgz#bfe1da4c08eeb9780b986e0e4d10eccd7345999f" - dependencies: - async-limiter "~1.0.0" - safe-buffer "~5.1.0" - ultron "~1.1.0" - -xtend@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" diff --git a/shadow-cljs.edn b/shadow-cljs.edn new file mode 100644 index 0000000..3267a28 --- /dev/null +++ b/shadow-cljs.edn @@ -0,0 +1,34 @@ + +{:repositories {"central" {:url "https://maven.aliyun.com/nexus/content/groups/public/"} + "clojars" {:url "https://mirrors.ustc.edu.cn/clojars/"}} + :source-paths ["src" "cli"] + :dependencies [[mvc-works/hsl "0.1.2"] + [mvc-works/shell-page "0.1.8"] + [cumulo/recollect "0.4.3"] + [respo "0.8.21"] + [respo/ui "0.3.7"] + [respo/alerts "0.3.7"] + [respo/message "0.3.3"] + [cirru/bisection-key "0.1.5"]] + :open-file-command ["subl" ["%s:%s:%s" :file :line :column]] + :builds {:client {:output-dir "target/" + :asset-path "./" + :target :browser + :modules {:client {:entries [app.client]}} + :devtools {:after-load app.client/reload! + :http-root "target" + :http-port 7000 + :loader-mode :eval} + :release {:output-dir "dist/"} + :module-hash-names 8 + :build-options {:manifest-name "assets.edn"}} + :page {:target :node-script + :output-to "target/page.js" + :main app.page/main! + :devtools {:after-load app.page/main!}} + :server {:target :node-script + :output-to "target/server.js" + :main app.server/main! + :devtools {:after-load app.server/reload!} + :release {:output-to "dist/server.js" + :compiler-options {:optimizations :simple}}}}} diff --git a/app/src/app/main.cljs b/src/app/client.cljs similarity index 70% rename from app/src/app/main.cljs rename to src/app/client.cljs index f25b774..aa1e083 100644 --- a/app/src/app/main.cljs +++ b/src/app/client.cljs @@ -1,12 +1,12 @@ -(ns app.main +(ns app.client (:require [respo.core :refer [render! clear-cache! realize-ssr!]] [respo.cursor :refer [mutate]] [app.comp.container :refer [comp-container]] [cljs.reader :refer [read-string]] - [app.network :refer [send! setup-socket!]] + [app.connection :refer [send! setup-socket!]] [app.schema :as schema] - [app.util :refer [test-join-path!]])) + [app.config :as config])) (declare dispatch!) @@ -19,13 +19,13 @@ (defonce *store (atom nil)) (defn simulate-login! [] - (let [raw (.getItem js/localStorage (:storage-key schema/configs))] + (let [raw (.getItem js/localStorage (:storage-key config/site))] (if (some? raw) (do (println "Found storage.") (dispatch! :user/log-in (read-string raw))) (do (println "Found no storage."))))) (defn dispatch! [op op-data] - (if (not= op :states) (println "Dispatch" op op-data)) + (println "Dispatch" op op-data) (case op :states (reset! *states ((mutate op-data) @*states)) :effect/connect (connect!) @@ -34,10 +34,9 @@ (defn connect! [] (setup-socket! *store - (let [app-host (.-hostname js/location)] - {:url (str "ws://" "localhost" ":" (:port schema/configs)), - :on-close! (fn [event] (reset! *store nil) (.error js/console "Lost connection!")), - :on-open! (fn [event] (simulate-login!))}))) + {:url (str "ws://localhost" ":" (:port config/site)), + :on-close! (fn [event] (reset! *store nil) (.error js/console "Lost connection!")), + :on-open! (fn [event] (simulate-login!))})) (def mount-target (.querySelector js/document ".app")) @@ -52,6 +51,10 @@ (connect!) (add-watch *store :changes #(render-app! render!)) (add-watch *states :changes #(render-app! render!)) + (.addEventListener + js/window + "visibilitychange" + (fn [] (when (and (nil? @*store) (= "visible" js/document.visibilityState)) (connect!)))) (println "App started!")) (defn reload! [] (clear-cache!) (render-app! render!) (println "Code updated.")) diff --git a/app/src/app/comp/commander.cljs b/src/app/comp/commander.cljs similarity index 96% rename from app/src/app/comp/commander.cljs rename to src/app/comp/commander.cljs index ffd4617..7fd183f 100644 --- a/app/src/app/comp/commander.cljs +++ b/src/app/comp/commander.cljs @@ -4,7 +4,6 @@ [respo-ui.core :as ui] [respo-ui.colors :as colors] [respo.macros :refer [defcomp mutation-> action-> <> span div input button]] - [keycode.core :as keycode] [respo.comp.space :refer [=<]])) (defcomp diff --git a/src/app/comp/container.cljs b/src/app/comp/container.cljs new file mode 100644 index 0000000..0550764 --- /dev/null +++ b/src/app/comp/container.cljs @@ -0,0 +1,89 @@ + +(ns app.comp.container + (:require [hsl.core :refer [hsl]] + [respo-ui.core :as ui] + [respo.macros :refer [defcomp <> div span action-> cursor-> button]] + [respo.comp.inspect :refer [comp-inspect]] + [respo.comp.space :refer [=<]] + [app.comp.navigation :refer [comp-navigation]] + [app.comp.profile :refer [comp-profile]] + [app.comp.login :refer [comp-login]] + [respo-message.comp.messages :refer [comp-messages]] + [app.comp.reel :refer [comp-reel]] + [app.config :refer [dev?]] + [app.schema :as schema] + [app.config :as config] + [app.comp.reel :refer [comp-reel]] + [app.comp.missing :refer [comp-missing]] + [app.comp.home :refer [comp-home]] + [app.comp.workflow :refer [comp-workflow-container]] + [app.comp.history :refer [comp-history]] + [app.comp.process-detail :refer [comp-process-detail]])) + +(defcomp + comp-offline + () + (div + {:style (merge + ui/global + ui/fullscreen + ui/column-dispersive + {:background-color (:theme config/site)})} + (div {:style {:height 0}}) + (div + {:style {:background-image (str "url(" (:icon config/site) ")"), + :width 128, + :height 128, + :background-size :contain}}) + (div + {:style {:cursor :pointer, :line-height "32px"}, + :on-click (action-> :effect/connect nil)} + (<> "No connection..." {:font-family ui/font-fancy, :font-size 24})))) + +(defcomp + comp-status-color + (color) + (div + {:style (let [size 24] + {:width size, + :height size, + :position :absolute, + :bottom 60, + :left 8, + :background-color color, + :border-radius "50%", + :opacity 0.6, + :pointer-events :none})})) + +(defcomp + comp-container + (states store) + (let [state (:data states) + session (:session store) + router (:router store) + router-data (:data router)] + (if (nil? store) + (comp-offline) + (div + {:style (merge ui/global ui/fullscreen ui/column)} + (comp-navigation (:logged-in? store) (:count store)) + (if (:logged-in? store) + (let [router (:router store), router-data (:data router)] + (case (:name router) + :profile (comp-profile (:user store) router-data) + :home (comp-home router-data states) + :workflows + (cursor-> :workflows comp-workflow-container states (:workflows router-data)) + :history (comp-history (:histories router-data)) + :process (comp-process-detail router-data) + (comp-missing router))) + (comp-login states)) + (comp-status-color (:color store)) + (when dev? (comp-inspect "Store" store {:bottom 0, :left 0, :max-width "100%"})) + (comp-messages + (get-in store [:session :messages]) + {} + (fn [info d! m!] (d! :session/remove-message info))) + (when dev? (comp-reel (:reel-length store) {})))))) + +(def style-body {:padding "8px 16px"}) diff --git a/app/src/app/comp/dialog.cljs b/src/app/comp/dialog.cljs similarity index 100% rename from app/src/app/comp/dialog.cljs rename to src/app/comp/dialog.cljs diff --git a/app/src/app/comp/header.cljs b/src/app/comp/header.cljs similarity index 100% rename from app/src/app/comp/header.cljs rename to src/app/comp/header.cljs diff --git a/app/src/app/comp/history.cljs b/src/app/comp/history.cljs similarity index 100% rename from app/src/app/comp/history.cljs rename to src/app/comp/history.cljs diff --git a/app/src/app/comp/home.cljs b/src/app/comp/home.cljs similarity index 100% rename from app/src/app/comp/home.cljs rename to src/app/comp/home.cljs diff --git a/src/app/comp/login.cljs b/src/app/comp/login.cljs new file mode 100644 index 0000000..a5cefc7 --- /dev/null +++ b/src/app/comp/login.cljs @@ -0,0 +1,56 @@ + +(ns app.comp.login + (:require [respo.macros :refer [defcomp <> div input button span]] + [respo.comp.space :refer [=<]] + [respo.comp.inspect :refer [comp-inspect]] + [respo-ui.core :as ui] + [app.schema :as schema] + [app.style :as style] + [app.config :as config])) + +(def initial-state {:username "", :password ""}) + +(defn on-input [state k] (fn [e dispatch! mutate!] (mutate! (assoc state k (:value e))))) + +(defn on-submit [username password signup?] + (fn [e dispatch!] + (dispatch! (if signup? :user/sign-up :user/log-in) [username password]) + (.setItem js/localStorage (:storage-key config/site) [username password]))) + +(defcomp + comp-login + (states) + (let [state (or (:data states) initial-state)] + (div + {:style (merge ui/flex ui/center)} + (div + {} + (div + {:style {}} + (div + {} + (input + {:placeholder "Username", + :value (:username state), + :style ui/input, + :on-input (on-input state :username)})) + (=< nil 8) + (div + {} + (input + {:placeholder "Password", + :value (:password state), + :style ui/input, + :on-input (on-input state :password)}))) + (=< nil 8) + (div + {:style {:text-align :right}} + (span + {:inner-text "Sign up", + :style (merge style/link), + :on-click (on-submit (:username state) (:password state) true)}) + (=< 8 nil) + (span + {:inner-text "Log in", + :style (merge style/link), + :on-click (on-submit (:username state) (:password state) false)})))))) diff --git a/app/src/app/comp/missing.cljs b/src/app/comp/missing.cljs similarity index 100% rename from app/src/app/comp/missing.cljs rename to src/app/comp/missing.cljs diff --git a/src/app/comp/navigation.cljs b/src/app/comp/navigation.cljs new file mode 100644 index 0000000..4769c6c --- /dev/null +++ b/src/app/comp/navigation.cljs @@ -0,0 +1,28 @@ + +(ns app.comp.navigation + (:require [hsl.core :refer [hsl]] + [respo-ui.core :as ui] + [respo.comp.space :refer [=<]] + [respo.macros :refer [defcomp <> action-> span div]] + [app.config :as config])) + +(defcomp + comp-navigation + (logged-in? count-members) + (div + {:style (merge + ui/row-center + {:height 48, + :justify-content :space-between, + :padding "0 16px", + :font-size 16, + :border-bottom (str "1px solid " (hsl 0 0 0 0.1)), + :font-family ui/font-fancy})} + (div + {:on-click (action-> :router/change {:name :home}), :style {:cursor :pointer}} + (<> (:title config/site) nil)) + (div + {:style {:cursor "pointer"}, :on-click (action-> :router/change {:name :profile})} + (<> (if logged-in? "Me" "Guest")) + (=< 8 nil) + (<> count-members)))) diff --git a/app/src/app/comp/process.cljs b/src/app/comp/process.cljs similarity index 98% rename from app/src/app/comp/process.cljs rename to src/app/comp/process.cljs index 7be568e..224039a 100644 --- a/app/src/app/comp/process.cljs +++ b/src/app/comp/process.cljs @@ -19,9 +19,11 @@ (div {:style (merge ui/row {:align-items :center})} (<> (:command process)) + (=< 8 nil) (span {:on-click (action-> :router/change {:name :process, :params {:id (:pid process)}})} (<> "view" style/link)) + (=< 8 nil) (if (:alive? process) (button {:style style/button, :on-click (action-> :effect/kill (:pid process))} diff --git a/app/src/app/comp/process_detail.cljs b/src/app/comp/process_detail.cljs similarity index 100% rename from app/src/app/comp/process_detail.cljs rename to src/app/comp/process_detail.cljs diff --git a/src/app/comp/profile.cljs b/src/app/comp/profile.cljs new file mode 100644 index 0000000..725fb0f --- /dev/null +++ b/src/app/comp/profile.cljs @@ -0,0 +1,49 @@ + +(ns app.comp.profile + (:require [hsl.core :refer [hsl]] + [app.schema :as schema] + [respo-ui.core :as ui] + [respo.macros :refer [defcomp list-> <> span div button]] + [respo.comp.space :refer [=<]] + [app.config :as config])) + +(defcomp + comp-profile + (user members) + (div + {:style (merge ui/flex {:padding 16})} + (div + {:style {:font-family ui/font-fancy, :font-size 32, :font-weight 100}} + (<> (str "Hello! " (:name user)))) + (=< nil 16) + (div + {:style ui/row} + (<> "Members:") + (=< 8 nil) + (list-> + {:style ui/row} + (->> members + (map + (fn [[k username]] + [k + (div + {:style {:padding "0 8px", + :border (str "1px solid " (hsl 0 0 80)), + :border-radius "16px", + :margin "0 4px"}} + (<> username))]))))) + (=< nil 48) + (div + {} + (button + {:style (merge ui/button), + :on-click (fn [e d! m!] + (.replace js/location (str js/location.origin "?time=" (.now js/Date))))} + (<> "Refresh")) + (=< 8 nil) + (button + {:style (merge ui/button {:color :red, :border-color :red}), + :on-click (fn [e dispatch! mutate!] + (dispatch! :user/log-out nil) + (.removeItem js/localStorage (:storage-key config/site)))} + (<> "Log out"))))) diff --git a/app/src/app/comp/reel.cljs b/src/app/comp/reel.cljs similarity index 75% rename from app/src/app/comp/reel.cljs rename to src/app/comp/reel.cljs index dba9ff5..65eaf35 100644 --- a/app/src/app/comp/reel.cljs +++ b/src/app/comp/reel.cljs @@ -2,8 +2,7 @@ (ns app.comp.reel (:require [hsl.core :refer [hsl]] [respo-ui.core :as ui] - [respo-ui.colors :as colors] - [respo.macros :refer [defcomp <> span button div]] + [respo.macros :refer [defcomp action-> <> span button div]] [respo.comp.space :refer [=<]])) (def style-click @@ -31,4 +30,7 @@ (span {:inner-text "Merge", :style style-click, - :on {:click (fn [e d! m!] (d! :reel/merge nil))}}))) + :on {:click (fn [e d! m!] (d! :reel/merge nil))}}) + (=< 8 nil) + (span + {:inner-text "Persist", :style style-click, :on {:click (action-> :effect/persist nil)}}))) diff --git a/app/src/app/comp/workflow.cljs b/src/app/comp/workflow.cljs similarity index 100% rename from app/src/app/comp/workflow.cljs rename to src/app/comp/workflow.cljs diff --git a/src/app/config.cljs b/src/app/config.cljs new file mode 100644 index 0000000..e9517bf --- /dev/null +++ b/src/app/config.cljs @@ -0,0 +1,22 @@ + +(ns app.config (:require [app.util :refer [get-env!]])) + +(def bundle-builds #{"release" "local-bundle"}) + +(def dev? + (if (exists? js/window) + (do ^boolean js/goog.DEBUG) + (not (contains? bundle-builds (get-env! "mode"))))) + +(def site + {:storage-key "termina", + :port 11014, + :title "Termina", + :icon "http://cdn.tiye.me/logo/termina.png", + :dev-ui "http://localhost:8100/main.css", + :release-ui "http://cdn.tiye.me/favored-fonts/main.css", + :cdn-url "http://cdn.tiye.me/termina/", + :cdn-folder "tiye.me:cdn/termina", + :upload-folder "tiye.me:repo/mvc-works/termina/", + :server-folder "tiye.me:servers/termina", + :theme "#eeeeff"}) diff --git a/app/src/app/network.cljs b/src/app/connection.cljs similarity index 89% rename from app/src/app/network.cljs rename to src/app/connection.cljs index 78a97e6..8f6223b 100644 --- a/app/src/app/network.cljs +++ b/src/app/connection.cljs @@ -1,5 +1,6 @@ -(ns app.network (:require [cljs.reader :as reader] [recollect.patch :refer [patch-twig]])) +(ns app.connection + (:require [cljs.reader :as reader] [recollect.patch :refer [patch-twig]])) (defonce *global-ws (atom nil)) diff --git a/server/src/server/manager.cljs b/src/app/manager.cljs similarity index 79% rename from server/src/server/manager.cljs rename to src/app/manager.cljs index 7691554..94c8183 100644 --- a/server/src/server/manager.cljs +++ b/src/app/manager.cljs @@ -1,8 +1,5 @@ -(ns server.manager - (:require [verbosely.core :refer [log!]] - [clojure.string :as string] - ["child_process" :as cp])) +(ns app.manager (:require ["child_process" :as cp])) (defonce *registry (atom {})) @@ -11,7 +8,6 @@ cwd (:cwd op-data) proc (.exec cp command (clj->js {:cwd cwd})) pid proc.pid] - (println "Run" (if (string/blank? cwd) "./" cwd) (pr-str command)) (swap! *registry assoc pid proc) (dispatch! :process/create {:pid pid, :command command, :cwd cwd}) (.on proc "exit" (fn [event] (dispatch! :process/finish pid))) diff --git a/src/app/node_config.cljs b/src/app/node_config.cljs new file mode 100644 index 0000000..68723a8 --- /dev/null +++ b/src/app/node_config.cljs @@ -0,0 +1,4 @@ + +(ns app.node-config (:require ["path" :as path] [app.config :as config])) + +(def env {:storage-path (path/join js/__dirname "storage.edn")}) diff --git a/src/app/page.cljs b/src/app/page.cljs new file mode 100644 index 0000000..f4a50df --- /dev/null +++ b/src/app/page.cljs @@ -0,0 +1,43 @@ + +(ns app.page + (:require [respo.render.html :refer [make-string]] + [shell-page.core :refer [make-page spit slurp]] + [app.comp.container :refer [comp-container]] + [cljs.reader :refer [read-string]] + [app.schema :as schema] + [app.config :as config] + [app.util :refer [get-env!]])) + +(def base-info + {:title (:title config/site), + :icon (:icon config/site), + :ssr nil, + :inline-styles [(slurp "entry/main.css")]}) + +(defn dev-page [] + (make-page + "" + (merge + base-info + {:styles [(:dev-ui config/site) "/entry/main.css"], + :scripts ["/client.js"], + :inline-styles []}))) + +(def local-bundle? (= "local-bundle" (get-env! "mode"))) + +(defn prod-page [] + (let [html-content (make-string (comp-container {} nil)) + assets (read-string (slurp "dist/assets.edn")) + cdn (if local-bundle? "" (:cdn-url config/site)) + prefix-cdn #(str cdn %)] + (make-page + html-content + (merge + base-info + {:styles [(:release-ui config/site)], + :scripts (map #(-> % :output-name prefix-cdn) assets)})))) + +(defn main! [] + (if (contains? config/bundle-builds (get-env! "mode")) + (spit "dist/index.html" (prod-page)) + (spit "target/index.html" (dev-page)))) diff --git a/server/src/server/reel.cljs b/src/app/reel.cljs similarity index 74% rename from server/src/server/reel.cljs rename to src/app/reel.cljs index 51a5821..f77e963 100644 --- a/server/src/server/reel.cljs +++ b/src/app/reel.cljs @@ -1,5 +1,5 @@ -(ns server.reel (:require [clojure.string :as string])) +(ns app.reel (:require [clojure.string :as string] [app.config :refer [dev?]])) (defn play-records [db records updater] (if (empty? records) @@ -8,21 +8,21 @@ next-db (updater db op op-data sid op-id op-time)] (recur next-db (rest records) updater)))) -(def reel-schema {:base nil, :db nil, :records [], :merged? false}) - -(defn reel-updater [reel updater op op-data sid op-id op-time] +(defn reel-reducer [reel updater op op-data sid op-id op-time] (if (string/starts-with? (str op) ":reel/") (merge reel (case op :reel/reset {:records [], :db (:base reel)} - :reel/merge {:records [], :base (:db reel)} + :reel/merge {:records [], :base (:db reel), :merged? true} (do (println "Unknown op:" op) reel))) (let [msg-pack [op op-data sid op-id op-time]] (-> reel - (update :records (fn [records] (conj records msg-pack))) + (update :records (fn [records] (if dev? (conj records msg-pack) records))) (assoc :db (updater (:db reel) op op-data sid op-id op-time)))))) +(def reel-schema {:base nil, :db nil, :records [], :merged? false}) + (defn refresh-reel [reel base updater] (let [next-base (if (:merged? reel) (:base reel) base)] (-> reel diff --git a/server/src/server/schema.cljs b/src/app/schema.cljs similarity index 53% rename from server/src/server/schema.cljs rename to src/app/schema.cljs index 8bbf2c3..591d828 100644 --- a/server/src/server/schema.cljs +++ b/src/app/schema.cljs @@ -1,28 +1,30 @@ -(ns server.schema ) +(ns app.schema ) (def command {:id nil, :path ".", :code ""}) -(def configs {:storage-key (str js/process.env.HOME "/.config/termina.edn"), :port 6200}) - -(def database - {:sessions {}, :users {}, :topics {}, :processes {}, :workflows {}, :histories []}) - (def history {:id nil, :pid 0, :started-at 0, :cwd "", :command ""}) -(def notification {:id nil, :kind nil, :text nil}) - (def process {:pid 0, :content [], :started-at 0, :alive? false, :cwd "", :command ""}) -(def router {:name nil, :params nil, :data nil}) +(def router {:name nil, :title nil, :data {}, :router nil}) (def session {:user-id nil, :id nil, :nickname nil, - :router {:name :home, :data nil, :router nil}, - :notifications []}) + :router (do router {:name :home, :data nil, :router nil}), + :messages {}}) (def user {:name nil, :id nil, :nickname nil, :avatar nil, :password nil}) (def workflow {:id nil, :name nil, :base-dir "~/", :commands {}}) + +(def database + {:sessions (do session {}), + :users (do user {}), + :processes (do process {}), + :workflows (do workflow {}), + :histories (do history [])}) + +(def page {:id nil, :title "", :time nil}) diff --git a/src/app/server.cljs b/src/app/server.cljs new file mode 100644 index 0000000..a4c3a41 --- /dev/null +++ b/src/app/server.cljs @@ -0,0 +1,76 @@ + +(ns app.server + (:require [app.schema :as schema] + [app.service :refer [run-server! sync-clients!]] + [app.updater :refer [updater]] + [cljs.reader :refer [read-string]] + [app.reel :refer [reel-reducer refresh-reel reel-schema]] + ["fs" :as fs] + ["shortid" :as shortid] + ["child_process" :as cp] + ["path" :as path] + [app.node-config :as node-config] + [app.config :refer [dev?]] + [app.config :as config] + [app.manager :refer [create-process! kill-process!]])) + +(def initial-db + (let [filepath (:storage-path node-config/env)] + (if (fs/existsSync filepath) + (do + (println "Found storage in:" (:storage-path node-config/env)) + (read-string (fs/readFileSync filepath "utf8"))) + schema/database))) + +(defonce *reel (atom (merge reel-schema {:base initial-db, :db initial-db}))) + +(defonce *reader-reel (atom @*reel)) + +(defn persist-db! [] + (let [file-content (pr-str (assoc (:db @*reel) :sessions {})) + now (js/Date.) + storage-path (:storage-path node-config/env) + backup-path (path/join + js/__dirname + "backups" + (str (inc (.getMonth now))) + (str (.getDate now) "-storage.edn"))] + (fs/writeFileSync storage-path file-content) + (cp/execSync (str "mkdir -p " (path/dirname backup-path))) + (fs/writeFileSync backup-path file-content) + (println "Saved file in" storage-path "and saved backup in" backup-path))) + +(defn dispatch! [op op-data sid] + (let [op-id (.generate shortid), op-time (.valueOf (js/Date.))] + (if dev? (println "Dispatch!" (str op) op-data sid)) + (try + (cond + (= op :effect/persist) (persist-db!) + (= op :effect/run) (create-process! op-data dispatch!) + (= op :effect/kill) (kill-process! op-data dispatch!) + :else + (let [new-reel (reel-reducer @*reel updater op op-data sid op-id op-time)] + (reset! *reel new-reel))) + (catch js/Error error (.error js/console error))))) + +(defn on-exit! [code] + (persist-db!) + (println "exit code is:" (pr-str code)) + (.exit js/process)) + +(defn render-loop! [] + (if (not (identical? @*reader-reel @*reel)) + (do (reset! *reader-reel @*reel) (sync-clients! @*reader-reel))) + (js/setTimeout render-loop! 200)) + +(defn main! [] + (run-server! #(dispatch! %1 %2 %3) (:port config/site)) + (render-loop!) + (.on js/process "SIGINT" on-exit!) + (js/setInterval #(persist-db!) (* 60 1000 10)) + (println "Server started.")) + +(defn reload! [] + (println "Code updated.") + (reset! *reel (refresh-reel @*reel initial-db updater)) + (sync-clients! @*reader-reel)) diff --git a/server/src/server/network.cljs b/src/app/service.cljs similarity index 68% rename from server/src/server/network.cljs rename to src/app/service.cljs index 6b62836..35f2ebe 100644 --- a/server/src/server/network.cljs +++ b/src/app/service.cljs @@ -1,13 +1,12 @@ -(ns server.network +(ns app.service (:require [cljs.nodejs :as nodejs] [cljs.reader :as reader] - [server.twig.container :refer [twig-container]] + [app.twig.container :refer [twig-container]] [recollect.diff :refer [diff-twig]] [recollect.twig :refer [render-twig]] - [server.util :refer [log-js!]] ["shortid" :as shortid] - ["uws" :as ws])) + ["ws" :as ws])) (defonce *registry (atom {})) @@ -15,7 +14,6 @@ (defn run-server! [on-action! port] (let [WebSocketServer (.-Server ws), wss (new WebSocketServer (js-obj "port" port))] - (println "Listening on" port ". Connect with: http://repo.mvc-works.org/termina") (.on wss "connection" @@ -37,19 +35,17 @@ (.warn js/console "Client closed!") (swap! *registry dissoc sid) (on-action! :session/disconnect nil sid))) - (.on socket "error" (fn [event] (.error js/console event)))))))) + (.on socket "error" (fn [error] (.error js/console error)))))))) (defn sync-clients! [reel] (let [db (:db reel), records (:records reel)] (doseq [sid (keys @*registry)] - (let [session-id sid + (let [sid sid session (get-in db [:sessions sid]) - old-store (or (get @client-caches session-id) nil) + old-store (or (get @client-caches sid) nil) new-store (render-twig (twig-container db session records) old-store) changes (diff-twig old-store new-store {:key :id}) - socket (get @*registry session-id)] - (comment log-js! "Changes for" session-id ":" changes (count records)) + socket (get @*registry sid)] + (println "Changes for" sid ":" changes (count records)) (if (and (not= changes []) (some? socket)) - (do - (.send socket (pr-str changes)) - (swap! client-caches assoc session-id new-store))))))) + (do (.send socket (pr-str changes)) (swap! client-caches assoc sid new-store))))))) diff --git a/src/app/style.cljs b/src/app/style.cljs new file mode 100644 index 0000000..7b9412b --- /dev/null +++ b/src/app/style.cljs @@ -0,0 +1,13 @@ + +(ns app.style (:require [hsl.core :refer [hsl]] [respo-ui.core :as ui])) + +(def button + (merge ui/button {:padding "0 8px", :min-width 40, :line-height "24px", :height "24px"})) + +(def input (merge ui/input {:width 320})) + +(def link + {:text-decoration :underline, + :cursor :pointer, + :color (hsl 240 80 80), + :font-family ui/font-fancy}) diff --git a/server/src/server/twig/container.cljs b/src/app/twig/container.cljs similarity index 59% rename from server/src/server/twig/container.cljs rename to src/app/twig/container.cljs index faed834..08e63d0 100644 --- a/server/src/server/twig/container.cljs +++ b/src/app/twig/container.cljs @@ -1,17 +1,22 @@ -(ns server.twig.container +(ns app.twig.container (:require [recollect.macros :refer [deftwig]] - [server.twig.user :refer [twig-user]] - [server.util :refer [map-val]])) + [app.twig.user :refer [twig-user]] + ["randomcolor" :as color])) + +(deftwig + twig-members + (sessions users) + (->> sessions + (map (fn [[k session]] [k (get-in users [(:user-id session) :name])])) + (into {}))) (deftwig twig-container (db session records) (let [logged-in? (some? (:user-id session)) router (:router session) - base-data {:logged-in? logged-in?, - :reel-length (count records), - :notifications (:notifications session)} + base-data {:logged-in? logged-in?, :session session, :reel-length (count records)} {workflows :workflows, processes :processes, histories :histories} db] (merge base-data @@ -26,5 +31,8 @@ :home {:processes processes, :workflows workflows} :process (let [process-id (-> router :params :id)] (get processes process-id)) - router))} + :profile (twig-members (:sessions db) (:users db)) + {})), + :count (count (:sessions db)), + :color (color/randomColor)} nil)))) diff --git a/src/app/twig/user.cljs b/src/app/twig/user.cljs new file mode 100644 index 0000000..f6c7253 --- /dev/null +++ b/src/app/twig/user.cljs @@ -0,0 +1,4 @@ + +(ns app.twig.user (:require [recollect.macros :refer [deftwig]])) + +(deftwig twig-user (user) (dissoc user :password)) diff --git a/src/app/updater.cljs b/src/app/updater.cljs new file mode 100644 index 0000000..f6145c7 --- /dev/null +++ b/src/app/updater.cljs @@ -0,0 +1,34 @@ + +(ns app.updater + (:require [app.updater.session :as session] + [app.updater.user :as user] + [app.updater.router :as router] + [app.schema :as schema] + [respo-message.updater :refer [update-messages]] + [app.updater.process :as process] + [app.updater.workflow :as workflow])) + +(defn updater [db op op-data sid op-id op-time] + (let [f (case op + :session/connect session/connect + :session/disconnect session/disconnect + :session/remove-message session/remove-message + :user/log-in user/log-in + :user/sign-up user/sign-up + :user/log-out user/log-out + :router/change router/change + :process/create process/create + :process/kill process/kill + :process/stdout process/stdout + :process/stderr process/stderr + :process/clear process/clear + :process/finish process/finish + :process/shorten-content process/shorten-content + :workflow/create workflow/create-workflow + :workflow/remove workflow/remove-workflow + :workflow/add-command workflow/add-command + :workflow/remove-command workflow/remove-command + :workflow/edit-command workflow/edit-command + :workflow/edit workflow/edit-workflow + (do (println "Unknown op:" op) identity))] + (f db op-data sid op-id op-time))) diff --git a/server/src/server/updater/process.cljs b/src/app/updater/process.cljs similarity index 95% rename from server/src/server/updater/process.cljs rename to src/app/updater/process.cljs index f5b3b8f..d0c7227 100644 --- a/server/src/server/updater/process.cljs +++ b/src/app/updater/process.cljs @@ -1,5 +1,5 @@ -(ns server.updater.process (:require [server.schema :as schema])) +(ns app.updater.process (:require [app.schema :as schema])) (defn clear [db op-data sid op-id op-time] (update diff --git a/src/app/updater/router.cljs b/src/app/updater/router.cljs new file mode 100644 index 0000000..8cfa0ad --- /dev/null +++ b/src/app/updater/router.cljs @@ -0,0 +1,4 @@ + +(ns app.updater.router ) + +(defn change [db op-data sid op-id op-time] (assoc-in db [:sessions sid :router] op-data)) diff --git a/src/app/updater/session.cljs b/src/app/updater/session.cljs new file mode 100644 index 0000000..62f9051 --- /dev/null +++ b/src/app/updater/session.cljs @@ -0,0 +1,11 @@ + +(ns app.updater.session (:require [app.schema :as schema])) + +(defn connect [db op-data sid op-id op-time] + (assoc-in db [:sessions sid] (merge schema/session {:id sid}))) + +(defn disconnect [db op-data sid op-id op-time] + (update db :sessions (fn [session] (dissoc session sid)))) + +(defn remove-message [db op-data sid op-id op-time] + (update-in db [:sessions sid :messages] (fn [messages] (dissoc messages (:id op-data))))) diff --git a/src/app/updater/user.cljs b/src/app/updater/user.cljs new file mode 100644 index 0000000..a1f672e --- /dev/null +++ b/src/app/updater/user.cljs @@ -0,0 +1,46 @@ + +(ns app.updater.user (:require [app.util :refer [find-first]] ["md5" :as md5])) + +(defn log-in [db op-data sid op-id op-time] + (let [[username password] op-data + maybe-user (find-first + (fn [user] (and (= username (:name user)))) + (vals (:users db)))] + (update-in + db + [:sessions sid] + (fn [session] + (if (some? maybe-user) + (if (= (md5 password) (:password maybe-user)) + (assoc session :user-id (:id maybe-user)) + (update + session + :messages + (fn [messages] + (assoc messages op-id {:id op-id, :text (str "Wrong password for " username)})))) + (update + session + :messages + (fn [messages] + (assoc messages op-id {:id op-id, :text (str "No user named: " username)})))))))) + +(defn log-out [db op-data sid op-id op-time] (assoc-in db [:sessions sid :user-id] nil)) + +(defn sign-up [db op-data sid op-id op-time] + (let [[username password] op-data + maybe-user (find-first (fn [user] (= username (:name user))) (vals (:users db)))] + (if (some? maybe-user) + (update-in + db + [:sessions sid :messages] + (fn [messages] + (assoc messages op-id {:id op-id, :text (str "Name is token: " username)}))) + (-> db + (assoc-in [:sessions sid :user-id] op-id) + (assoc-in + [:users op-id] + {:id op-id, + :name username, + :nickname username, + :password (md5 password), + :avatar nil}))))) diff --git a/server/src/server/updater/workflow.cljs b/src/app/updater/workflow.cljs similarity index 94% rename from server/src/server/updater/workflow.cljs rename to src/app/updater/workflow.cljs index 312f91d..4d5fb2d 100644 --- a/server/src/server/updater/workflow.cljs +++ b/src/app/updater/workflow.cljs @@ -1,5 +1,5 @@ -(ns server.updater.workflow (:require [server.schema :as schema])) +(ns app.updater.workflow (:require [app.schema :as schema])) (defn add-command [db op-data sid op-id op-time] (let [{workflow-id :workflow-id, code :code, path :path} op-data] diff --git a/app/src/app/util.cljs b/src/app/util.cljs similarity index 82% rename from app/src/app/util.cljs rename to src/app/util.cljs index 3d69134..55facc4 100644 --- a/app/src/app/util.cljs +++ b/src/app/util.cljs @@ -1,6 +1,10 @@ (ns app.util (:require [clojure.string :as string])) +(defn find-first [f xs] (reduce (fn [_ x] (when (f x) (reduced x))) nil xs)) + +(defn get-env! [property] (aget (.-env js/process) property)) + (defn join-segments [acc xs] (if (empty? xs) (string/join "/" acc) @@ -19,6 +23,9 @@ new-path (join-segments [] (concat (string/split xs "/") (string/split ys "/")))] (if absolute? (str "/" new-path) new-path)))) +(defn log-js! [& args] + (apply js/console.log (map (fn [x] (if (coll? x) (clj->js x) x)) args))) + (defn map-val [f xs] (assert (or (map? xs) (seq? xs)) "map-val deals maps") (->> xs (map (fn [[k x]] [k (f x)])))) diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..6309be3 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,830 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +asn1.js@^4.0.0: + version "4.9.2" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" + integrity sha512-b/OsSjvWEo8Pi8H0zsDd2P6Uqo2TK2pH8gNLSJtNLM2Db0v2QaAZ0pBQJXVjAn4gBuugeVDr7s63ZogpUIwWDg== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +assert@^1.1.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE= + dependencies: + util "0.10.3" + +async-limiter@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" + integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== + +async@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" + integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= + +base64-js@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" + integrity sha512-dwVUVIXsBZXwTuwnXI9RK8sBmgq09NDHzyR9SAph9eqk76gKK2JSQmZARC2zRC81JC2QTtxD0ARU5qTS25gIGw== + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: + version "4.11.8" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" + integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== + +brorand@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.1.1" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" + integrity sha512-UGnTYAnB2a3YuYKIRy1/4FB2HdM866E0qC46JXvVTYKlBlZlnvfpSfY6OKfXZAkv70eJ2a1SqzpAo5CRhZGDFg== + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" + integrity sha1-mYgkSHS/XtTijalWZtzWasj8Njo= + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" + integrity sha1-2qJ3cXRwki7S/hhZQRihdUOXId0= + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + +browserify-rsa@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= + dependencies: + bn.js "^4.1.1" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.2" + elliptic "^6.0.0" + inherits "^2.0.1" + parse-asn1 "^5.0.0" + +browserify-zlib@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== + dependencies: + pako "~1.0.5" + +buffer-from@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" + integrity sha512-83apNb8KK0Se60UE1+4Ukbe3HbfELJ6UlI4ldtOGs7So4KD26orJM8hIY9lxdzP+UpItH1Yh/Y8GUvNFWFFRxA== + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= + +buffer@^4.3.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= + +charenc@~0.0.1: + version "0.0.2" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +colors@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" + integrity sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs= + +console-browserify@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= + dependencies: + date-now "^0.1.4" + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= + +core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +corser@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/corser/-/corser-2.0.1.tgz#8eda252ecaab5840dcd975ceb90d9370c819ff87" + integrity sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c= + +create-ecdh@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" + integrity sha1-iIxyNZbN92EvZJgjPuvXo1MBc30= + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-hash@^1.1.0, create-hash@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" + integrity sha1-YGBCrIuSYnUPSDyt2rD1gZFy2P0= + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + ripemd160 "^2.0.0" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: + version "1.1.6" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" + integrity sha1-rLniIaThe9sHbpBlfEK5PjcmzwY= + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +crypt@~0.0.1: + version "0.0.2" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs= + +crypto-browserify@^3.11.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +date-now@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= + +debug@^2.2.0: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +des.js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +diffie-hellman@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" + integrity sha1-tYNXOScM/ias9jIJn97SoH8gnl4= + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +domain-browser@^1.1.1: + version "1.1.7" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" + integrity sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw= + +ecstatic@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/ecstatic/-/ecstatic-3.1.1.tgz#2564aa9dde84179dcaf926a9e6d12df13a0b666d" + integrity sha512-D9UcjcxDMMqjaQxC0mSsFh/IjJSdiZVPnHrhjHuKXlhLByk5QGGPX1GUIDIjRzhTq4UDCPYwWblw79VBEh3r1w== + dependencies: + he "^1.1.1" + mime "^1.4.1" + minimist "^1.1.0" + url-join "^2.0.2" + +elliptic@^6.0.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" + integrity sha1-ysmvh2LIWDYYcAPI3+GT5eLq5d8= + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + hmac-drbg "^1.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.0" + +eventemitter3@1.x.x: + version "1.2.0" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" + integrity sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg= + +events@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ= + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +hash-base@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" + integrity sha1-ZuodhW206KVHDK32/OI65SRO8uE= + dependencies: + inherits "^2.0.1" + +hash-base@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" + integrity sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.0" + +he@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" + integrity sha1-k0EP0hsAlzUVH4howvJx80J+I/0= + +hmac-drbg@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +http-proxy@^1.8.1: + version "1.16.2" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" + integrity sha1-Bt/ykpUr9k2+hHH6nfcwZtTzd0I= + dependencies: + eventemitter3 "1.x.x" + requires-port "1.x.x" + +http-server@^0.11.1: + version "0.11.1" + resolved "https://registry.yarnpkg.com/http-server/-/http-server-0.11.1.tgz#2302a56a6ffef7f9abea0147d838a5e9b6b6a79b" + integrity sha512-6JeGDGoujJLmhjiRGlt8yK8Z9Kl0vnl/dQoQZlc4oeqaUoAKQg94NILLfrY3oWzSyFaQCVNTcKE5PZ3cH8VP9w== + dependencies: + colors "1.0.3" + corser "~2.0.0" + ecstatic "^3.0.0" + http-proxy "^1.8.1" + opener "~1.4.0" + optimist "0.6.x" + portfinder "^1.0.13" + union "~0.4.3" + +https-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= + +ieee754@^1.1.4: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" + integrity sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q= + +indexof@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10= + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= + +inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + +is-buffer@~1.1.1: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +md5.js@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" + integrity sha1-6b296UogpawYsENA/Fdk1bCdkB0= + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +md5@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" + integrity sha1-U6s41f48iJG6RlMp6iP6wFQBJvk= + dependencies: + charenc "~0.0.1" + crypt "~0.0.1" + is-buffer "~1.1.1" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +mime@^1.4.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +minimalistic-assert@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" + integrity sha1-cCvi3aazf0g2vLP121ZkG2Sh09M= + +minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= + +minimist@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= + +minimist@~0.0.1: + version "0.0.10" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" + integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= + +mkdirp@0.5.x, mkdirp@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= + dependencies: + minimist "0.0.8" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +nanoid@^1.0.7: + version "1.1.0" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-1.1.0.tgz#b18e806e1cdbfdbe030374d5cf08a48cbc80b474" + integrity sha512-iOCqgXieGrk8/wDt1n9rZS2KB1dYVssemY0NTWjfzVr+1t1gAmdTp1u2+YHppKro3Bk5S+Gs+xmYCfpuXauYXQ== + +node-libs-browser@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" + integrity sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg== + dependencies: + assert "^1.1.1" + browserify-zlib "^0.2.0" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^1.0.0" + https-browserify "^1.0.0" + os-browserify "^0.3.0" + path-browserify "0.0.0" + process "^0.11.10" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.3.3" + stream-browserify "^2.0.1" + stream-http "^2.7.2" + string_decoder "^1.0.0" + timers-browserify "^2.0.4" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.10.3" + vm-browserify "0.0.4" + +opener@~1.4.0: + version "1.4.3" + resolved "https://registry.yarnpkg.com/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" + integrity sha1-XG2ixdflgx6P+jlklQ+NZnSskLg= + +optimist@0.6.x: + version "0.6.1" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +os-browserify@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= + +pako@~1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" + integrity sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg== + +parse-asn1@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" + integrity sha1-N8T5t+06tlx0gXtfJICTf7+XxxI= + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + +path-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + integrity sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo= + +pbkdf2@^3.0.3: + version "3.0.14" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" + integrity sha512-gjsZW9O34fm0R7PaLHRJmLLVfSoesxztjPjE9o6R+qtVJij90ltg1joIovN9GKrRW3t1PzhDDG3UMEMFfZ+1wA== + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +portfinder@^1.0.13: + version "1.0.13" + resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" + integrity sha1-uzLs2HwnEErm7kS1o8y/Drsa7ek= + dependencies: + async "^1.5.2" + debug "^2.2.0" + mkdirp "0.5.x" + +process-nextick-args@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= + +process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= + +public-encrypt@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" + integrity sha1-OfaZ86RlYN1eusvKaTyvfGXBjMY= + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= + +punycode@^1.2.4: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= + +qs@~2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404" + integrity sha1-6eha2+ddoLvkyOBHaghikPhjtAQ= + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" + integrity sha512-8T7Zn1AhMsQ/HI1SjcCfT/t4ii3eAqco3yOcSzS4mozsOz69lHLsoMXmF9nZgnFanYscnSlUSgs8uZyKzpE6kg== + dependencies: + safe-buffer "^5.1.0" + +randomcolor@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/randomcolor/-/randomcolor-0.5.3.tgz#7f90f2f2a7f6d5a52232161eeaeeaea9ac3b5815" + integrity sha1-f5Dy8qf21aUiMhYe6u6uqaw7WBU= + +randomfill@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" + integrity sha512-YL6GrhrWoic0Eq8rXVbMptH7dAxCs0J+mh5Y0euNekPPYaxEmdVGim6GdoxoRzKW2yJoU8tueifS7mYxvcFDEQ== + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +readable-stream@^2.0.2, readable-stream@^2.2.6, readable-stream@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" + integrity sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + safe-buffer "~5.1.1" + string_decoder "~1.0.3" + util-deprecate "~1.0.1" + +readline-sync@^1.4.7: + version "1.4.7" + resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.7.tgz#001bfdd4c06110c3c084c63bf7c6a56022213f30" + integrity sha1-ABv91MBhEMPAhMY798alYCIhPzA= + +requires-port@1.x.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" + integrity sha1-D0WEKVxTo2KK9+bXmsohzlfRxuc= + dependencies: + hash-base "^2.0.0" + inherits "^2.0.1" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" + integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg== + +setimmediate@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.9" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" + integrity sha512-G8zektVqbiPHrylgew9Zg1VRB1L/DtXNUVAM6q4QLy8NE3qtHlFXTf8VLL4k1Yl6c7NMjtZUTdXV+X44nFaT6A== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shadow-cljs-jar@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/shadow-cljs-jar/-/shadow-cljs-jar-1.3.0.tgz#e25c4fa57c0b405096250884b164c112654a06a3" + integrity sha512-KReNVgFVM2ZPPGCP8rsCPqtlee/+SwXyoeEqbAXBO7jlpoNnNee2x4fiRg/Pr/vXGEkV/Ez5l4qdNSU1Na+1Jg== + +shadow-cljs@^2.6.10: + version "2.6.10" + resolved "https://registry.yarnpkg.com/shadow-cljs/-/shadow-cljs-2.6.10.tgz#5a7a9eee385d79a0c88c6ca52e72de2f4575bcfe" + integrity sha512-QE3vL+2LDJ5wlg6HvUnAixFYIc2Ek2cB0GqeFN9Ppnmn1tz/0a/3HP5Pgdjr9QI0co6rTu9oqA497VRZYBH7Nw== + dependencies: + mkdirp "^0.5.1" + node-libs-browser "^2.0.0" + readline-sync "^1.4.7" + shadow-cljs-jar "1.3.0" + signal-exit "^3.0.2" + source-map-support "^0.4.15" + ws "^3.0.0" + +shortid@^2.2.13: + version "2.2.13" + resolved "https://registry.yarnpkg.com/shortid/-/shortid-2.2.13.tgz#b2441e71c664ace458a341d343959f677910ef5b" + integrity sha512-dBuNnQGKrJNfjunmXI2X7bl1gnMO4PwbNxrTzO1JvilODmL7WyyCtA+DYxe9XunLXmxmgzFIvKPQ6XRAQrr46Q== + dependencies: + nanoid "^1.0.7" + +signal-exit@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= + +source-map-support@^0.4.15: + version "0.4.18" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" + integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== + dependencies: + source-map "^0.5.6" + +source-map-support@^0.5.9: + version "0.5.9" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f" + integrity sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + +source-map@^0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +stream-browserify@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" + integrity sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds= + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-http@^2.7.2: + version "2.7.2" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" + integrity sha512-c0yTD2rbQzXtSsFSVhtpvY/vS6u066PcXOX9kBB3mSO76RiUQzL340uJkGBWnlBg4/HZzqiUXtaVA7wcRcJgEw== + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.2.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +string_decoder@^1.0.0, string_decoder@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" + integrity sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ== + dependencies: + safe-buffer "~5.1.0" + +timers-browserify@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" + integrity sha512-uZYhyU3EX8O7HQP+J9fTVYwsq90Vr68xPEFo7yrVImIxYvHgukBEgOB/SgGoorWVTzGM/3Z+wUNnboA4M8jWrg== + dependencies: + setimmediate "^1.0.4" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= + +ultron@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" + integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og== + +union@~0.4.3: + version "0.4.6" + resolved "https://registry.yarnpkg.com/union/-/union-0.4.6.tgz#198fbdaeba254e788b0efcb630bc11f24a2959e0" + integrity sha1-GY+9rrolTniLDvy2MLwR8kopWeA= + dependencies: + qs "~2.3.3" + +url-join@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/url-join/-/url-join-2.0.2.tgz#c072756967ad24b8b59e5741551caac78f50b8b7" + integrity sha1-wHJ1aWetJLi1nldBVRyqx49QuLc= + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +util@0.10.3, util@^0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= + dependencies: + inherits "2.0.1" + +vm-browserify@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + integrity sha1-XX6kW7755Kb/ZflUOOCofDV9WnM= + dependencies: + indexof "0.0.1" + +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= + +ws@^3.0.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.2.tgz#96c1d08b3fefda1d5c1e33700d3bfaa9be2d5608" + integrity sha512-t+WGpsNxhMR4v6EClXS8r8km5ZljKJzyGhJf7goJz9k5Ye3+b5Bvno5rjqPuIBn5mnn5GBb7o8IrIWHxX1qOLQ== + dependencies: + async-limiter "~1.0.0" + safe-buffer "~5.1.0" + ultron "~1.1.0" + +ws@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.1.0.tgz#119a9dbf92c54e190ec18d10e871d55c95cf9373" + integrity sha512-H3dGVdGvW2H8bnYpIDc3u3LH8Wue3Qh+Zto6aXXFzvESkTVT6rAfKR6tR/+coaUvxs8yHtmNV0uioBF62ZGSTg== + dependencies: + async-limiter "~1.0.0" + +xtend@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68=