From 42f127b3963a660e8eeea97090b35664b9698b99 Mon Sep 17 00:00:00 2001 From: Tienson Qin Date: Wed, 18 Sep 2024 10:41:37 +0800 Subject: [PATCH] feat: support nlp date in node reference (#11531) feat: support nlp date in node reference --- src/main/frontend/common/search_fuzzy.cljs | 11 ++- src/main/frontend/components/editor.cljs | 14 +++- src/main/frontend/date.cljs | 27 +++++++ src/main/frontend/db/react.cljs | 1 - src/main/frontend/handler/editor.cljs | 18 +++-- src/main/frontend/handler/page.cljs | 71 ++++++++++--------- src/main/frontend/ui.cljs | 49 +++++++------ src/rtc_e2e_test/example.cljs | 2 +- src/test/frontend/db/db_based_model_test.cljs | 2 +- 9 files changed, 124 insertions(+), 71 deletions(-) diff --git a/src/main/frontend/common/search_fuzzy.cljs b/src/main/frontend/common/search_fuzzy.cljs index d57778b64d..33f5a19521 100644 --- a/src/main/frontend/common/search_fuzzy.cljs +++ b/src/main/frontend/common/search_fuzzy.cljs @@ -42,7 +42,16 @@ ;; boost score if we have an exact match including punctuation (empty? q) (+ score' (str-len-distance query s) - (if (<= 0 (.indexOf ostr oquery)) MAX-STRING-LENGTH 0)) + (cond + (<= 0 (.indexOf ostr oquery)) + MAX-STRING-LENGTH + + (<= 0 (.indexOf (string/lower-case ostr) (string/lower-case oquery))) + (- MAX-STRING-LENGTH 0.1) + + :else + 0) + (if (empty? s) 1 0)) (empty? s) 0 :else (if (= (first q) (first s)) (recur (rest q) diff --git a/src/main/frontend/components/editor.cljs b/src/main/frontend/components/editor.cljs index ae45d8557f..5cd74355b4 100644 --- a/src/main/frontend/components/editor.cljs +++ b/src/main/frontend/components/editor.cljs @@ -33,7 +33,8 @@ [promesa.core :as p] [react-draggable] [rum.core :as rum] - [frontend.config :as config])) + [frontend.config :as config] + [frontend.date :as date])) (defn filter-commands [page? commands] @@ -144,7 +145,11 @@ (editor-handler/> (map (fn [title] {:block/title title + :nlp-date? true}) + date/nlp-pages) + (take 10)) ;; reorder, shortest and starts-with first. (let [matched-pages-with-new-page (fn [partial-matched-pages] @@ -180,6 +185,9 @@ (when-not db-tag? [:div.flex.items-center (cond + (:nlp-date? block) + (ui/icon "calendar" {:size 14}) + (ldb/class? block) (ui/icon "hash" {:size 14}) @@ -193,7 +201,7 @@ (ui/icon "page" {:extension? true}) (or (string/starts-with? (str (:block/title block)) (t :new-tag)) - (string/starts-with? (str (:block/title block)) (t :new-page))) + (string/starts-with? (str (:block/title block)) (t :new-page))) (ui/icon "plus" {:size 14}) :else diff --git a/src/main/frontend/date.cljs b/src/main/frontend/date.cljs index 6adeec001f..14c978f64a 100644 --- a/src/main/frontend/date.cljs +++ b/src/main/frontend/date.cljs @@ -179,6 +179,33 @@ (goog.date.Date. (.getFullYear d) (.getMonth d) (.getDate d)) :else d)) +(def nlp-pages + ["Today" + "Tomorrow" + "Yesterday" + "Next week" + "Last week" + "Next month" + "Last month" + "Next year" + "Last year" + "Last Monday" + "Last Tuesday" + "Last Wednesday" + "Last Thursday" + "Last Friday" + "Last Saturday" + "Last Sunday" + "Next Monday" + "Next Tuesday" + "Next Wednesday" + "Next Thursday" + "Next Friday" + "Next Saturday" + "Next Sunday"]) + + + (comment (def default-formatter (tf/formatter "MMM do, yyyy")) (def zh-formatter (tf/formatter "YYYY年MM月dd日")) diff --git a/src/main/frontend/db/react.cljs b/src/main/frontend/db/react.cljs index 099b6e7e0c..df0bf3cbd5 100644 --- a/src/main/frontend/db/react.cljs +++ b/src/main/frontend/db/react.cljs @@ -197,7 +197,6 @@ "Re-compute corresponding queries (from tx) and refresh the related react components." [repo-url affected-keys] (when (and repo-url (seq affected-keys)) - (prn :debug :affected-keys affected-keys) (refresh-affected-queries! repo-url affected-keys))) (defn run-custom-queries-when-idle! diff --git a/src/main/frontend/handler/editor.cljs b/src/main/frontend/handler/editor.cljs index 3006d42c29..d05eadf0c5 100644 --- a/src/main/frontend/handler/editor.cljs +++ b/src/main/frontend/handler/editor.cljs @@ -1654,13 +1654,17 @@ "Return matched blocks that are not built-in" [q] (p/let [block (state/get-edit-block) - pages (search/block-search (state/get-current-repo) q {:built-in? false - :enable-snippet? false})] - (keep (fn [b] - (when-let [id (:block/uuid b)] - (when-not (= id (:block/uuid block)) ; avoid block self-reference - (db/entity [:block/uuid id])))) - pages))) + nodes (search/block-search (state/get-current-repo) q {:built-in? false + :enable-snippet? false}) + matched (keep (fn [b] + (when-let [id (:block/uuid b)] + (when-not (= id (:block/uuid block)) ; avoid block self-reference + (db/entity [:block/uuid id])))) + nodes) + matched-dates (map (fn [title] {:block/title title + :nlp-date? true}) date/nlp-pages)] + (-> (concat matched-dates matched) + (search/fuzzy-search q {:extract-fn :block/title :limit 50})))) (defn page-ref (:block/uuid chosen-result)) - :else - (block-ref/->block-ref (:block/uuid chosen-result))) - (get-page-ref-text chosen')) - result (when db-based? - (when-not (de/entity? chosen-result) - (page-ref (:block/title result)) ref-text)] - (p/do! - (editor-handler/insert-command! id - ref-text' - format - {:last-pattern (str page-ref/left-brackets (if (editor-handler/get-selected-text) "" q)) - :end-pattern page-ref/right-brackets - :postfix-fn (fn [s] (util/replace-first page-ref/right-brackets s "")) - :command :page-ref}) - (p/let [chosen-result (or result chosen-result)] - (when (de/entity? chosen-result) - (state/conj-block-ref! chosen-result))))))) + (util/stop e) + (state/clear-editor-action!) + (p/let [chosen-result (if (:block/uuid chosen-result) + (db/entity [:block/uuid (:block/uuid chosen-result)]) + chosen-result) + chosen (:block/title chosen-result) + chosen' (string/replace-first chosen (str (t :new-page) " ") "") + [chosen' chosen-result] (or (when-not (de/entity? chosen-result) + (when-let [result (date/nld-parse chosen')] + (let [d (doto (goog.date.DateTime.) (.setTime (.getTime result))) + gd (goog.date.Date. (.getFullYear d) (.getMonth d) (.getDate d)) + page (date/js-date->journal-title gd)] + [page (db/get-page page)]))) + [chosen' chosen-result]) + ref-text (if (and (de/entity? chosen-result) (not (ldb/page? chosen-result))) + (cond + db-based? + (page-ref/->page-ref (:block/uuid chosen-result)) + :else + (block-ref/->block-ref (:block/uuid chosen-result))) + (get-page-ref-text chosen')) + result (when db-based? + (when-not (de/entity? chosen-result) + (page-ref (:block/title result)) ref-text)] + (p/do! + (editor-handler/insert-command! id + ref-text' + format + {:last-pattern (str page-ref/left-brackets (if (editor-handler/get-selected-text) "" q)) + :end-pattern page-ref/right-brackets + :postfix-fn (fn [s] (util/replace-first page-ref/right-brackets s "")) + :command :page-ref}) + (p/let [chosen-result (or result chosen-result)] + (when (de/entity? chosen-result) + (state/conj-block-ref! chosen-result))))))) (defn on-chosen-handler [input id pos format] @@ -479,4 +486,4 @@ (if page-uuid (util/copy-to-clipboard! (url-util/get-logseq-graph-page-url nil (state/get-current-repo) (str page-uuid))) - (notification/show! "No page found to copy" :warning)))) \ No newline at end of file + (notification/show! "No page found to copy" :warning)))) diff --git a/src/main/frontend/ui.cljs b/src/main/frontend/ui.cljs index 41ff5c9251..e72d33708f 100644 --- a/src/main/frontend/ui.cljs +++ b/src/main/frontend/ui.cljs @@ -521,35 +521,34 @@ [:div#ui__ac-inner.hide-scrollbar (when header header) (for [[idx item] (medley/indexed matched)] - [:<> - {:key idx} - (let [item-cp - [:div.menu-link-wrap - {:key idx + (let [react-key (str idx) + item-cp + [:div.menu-link-wrap + {:key react-key ;; mouse-move event to indicate that cursor moved by user - :on-mouse-move #(reset! *current-idx idx)} - (let [chosen? (= @*current-idx idx)] - (menu-link - {:id (str "ac-" idx) - :tab-index "0" - :class (when chosen? "chosen") + :on-mouse-move #(reset! *current-idx idx)} + (let [chosen? (= @*current-idx idx)] + (menu-link + {:id (str "ac-" react-key) + :tab-index "0" + :class (when chosen? "chosen") ;; TODO: should have more tests on touch devices ;:on-pointer-down #(util/stop %) - :on-click (fn [e] - (util/stop e) - (if (and (gobj/get e "shiftKey") on-shift-chosen) - (on-shift-chosen item) - (on-chosen item e)))} - (if item-render (item-render item chosen?) item)))]] + :on-click (fn [e] + (util/stop e) + (if (and (gobj/get e "shiftKey") on-shift-chosen) + (on-shift-chosen item) + (on-chosen item e)))} + (if item-render (item-render item chosen?) item)))]] - (let [group-name (and (fn? get-group-name) (get-group-name item))] - (if (and group-name (not (contains? @*groups group-name))) - (do - (swap! *groups conj group-name) - [:div - [:div.ui__ac-group-name group-name] - item-cp]) - item-cp)))])] + (let [group-name (and (fn? get-group-name) (get-group-name item))] + (if (and group-name (not (contains? @*groups group-name))) + (do + (swap! *groups conj group-name) + [:div + [:div.ui__ac-group-name group-name] + item-cp]) + item-cp))))] (when empty-placeholder empty-placeholder))])) diff --git a/src/rtc_e2e_test/example.cljs b/src/rtc_e2e_test/example.cljs index eadcc327fa..7df88f8da8 100644 --- a/src/rtc_e2e_test/example.cljs +++ b/src/rtc_e2e_test/example.cljs @@ -3,6 +3,6 @@ ;; (datascript.transit/write-transit-str db) (def example-db-transit - "[\"~#datascript/DB\",[\"^ \",\"~:schema\",[\"^ \",\"~i32\",\"~:logseq.property.tldraw/shape\",\"~:logseq.property.view/type.table\",[\"^ \",\"~:db/ident\",\"^4\"],\"~:file/created-at\",[\"^ \"],\"~i1\",\"~:logseq.kv/db-type\",\"~i33\",\"~:logseq.property.journal/title-format\",\"~:block/tx-id\",[\"^ \"],\"~i2\",\"~:logseq.kv/schema-version\",\"~i34\",\"~:logseq.task/status\",\"~:logseq.property.pdf/file-path\",[\"^ \",\"~:db/index\",true,\"~:db/valueType\",\"~:db.type/ref\",\"~:db/cardinality\",\"~:db.cardinality/one\",\"^5\",\"^>\"],\"~:logseq.property.table/sorting\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^D\"],\"~i3\",\"~:logseq.property/empty-placeholder\",\"~i35\",\"~:logseq.task/status.backlog\",\"~:logseq.property/public\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^H\"],\"~i4\",\"~:logseq.class/Root\",\"~i36\",\"~:logseq.task/status.todo\",\"~:logseq.task/priority.low\",[\"^ \",\"^5\",\"^L\"],\"~:file/content\",[\"^ \"],\"~:logseq.task/priority.high\",[\"^ \",\"^5\",\"^N\"],\"~i5\",\"~:logseq.property/built-in?\",\"~i37\",\"~:logseq.task/status.doing\",\"~:logseq.task/priority.urgent\",[\"^ \",\"^5\",\"^R\"],\"~:logseq.property/hl-color\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^S\"],\"~:block/alias\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"~:db.cardinality/many\",\"^5\",\"^T\"],\"~i6\",\"^T\",\"~i38\",\"~:logseq.task/status.in-review\",\"~:kv/value\",[\"^ \"],\"~i7\",\"~:block/tags\",\"~i39\",\"~:logseq.task/status.done\",\"~:logseq.property.linked-references/includes\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^U\",\"^5\",\"^10\"],\"~:block/link\",[\"^ \",\"^@\",\"^A\",\"^?\",true],\"~:logseq.property.view/type\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^12\"],\"~:logseq.property/heading\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^13\"],\"~i8\",\"~:logseq.property/parent\",\"~i40\",\"~:logseq.task/status.canceled\",\"~:block/uuid\",[\"^ \",\"~:db/unique\",\"~:db.unique/identity\"],\"~:logseq.property.table/hidden-columns\",[\"^ \",\"^?\",true,\"^B\",\"^U\",\"^5\",\"^1:\"],\"~i9\",\"~:logseq.property.class/properties\",\"~i41\",\"~:logseq.task/priority\",\"~:block/updated-at\",[\"^ \",\"^?\",true],\"~:asset/uuid\",[\"^ \",\"^18\",\"^19\"],\"~:logseq.property/query-sort-by\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^1@\"],\"~i10\",\"~:logseq.property.class/hide-from-node\",\"~i42\",\"^L\",\"~:logseq.property.view/type.list\",[\"^ \",\"^5\",\"^1D\"],\"~:logseq.task/priority.medium\",[\"^ \",\"^5\",\"^1E\"],\"~i11\",\"~:logseq.property/page-tags\",\"~:file/size\",[\"^ \"],\"~i43\",\"^1E\",\"~i75\",\"~:logseq.kv/graph-uuid\",\"~:block/refs\",[\"^ \",\"^@\",\"^A\",\"^B\",\"^U\"],\"~:logseq.class/Card\",[\"^ \",\"^5\",\"^1M\"],\"^1=\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^1=\"],\"~i12\",\"~:logseq.property/background-color\",\"~i44\",\"^N\",\"^Q\",[\"^ \",\"^5\",\"^Q\"],\"^;\",[\"^ \",\"^5\",\"^;\"],\"~:logseq.property.pdf/hl-page\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^1Q\"],\"~:logseq.property/hl-type\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^1R\"],\"~i13\",\"~:logseq.property/background-image\",\"~i45\",\"^R\",\"~:block/closed-value-property\",[\"^ \",\"^@\",\"^A\",\"^B\",\"^U\"],\"^W\",[\"^ \",\"^5\",\"^W\"],\"~i14\",\"^13\",\"~:file/last-modified-at\",[\"^ \"],\"~i46\",\"~:logseq.task/deadline\",\"^[\",[\"^ \",\"^5\",\"^[\"],\"^1;\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^U\",\"^5\",\"^1;\"],\"^16\",[\"^ \",\"^5\",\"^16\"],\"~i15\",\"~:logseq.property/created-from-property\",\"~i47\",\"~:logseq.property/icon\",\"~:block/created-at\",[\"^ \",\"^?\",true],\"^1G\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^U\",\"^5\",\"^1G\"],\"^K\",[\"^ \",\"^5\",\"^K\"],\"~:logseq.class/Task\",[\"^ \",\"^5\",\"^24\"],\"~:block/collapsed?\",[\"^ \"],\"~:logseq.property.tldraw/page\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^26\"],\"~i16\",\"~:logseq.property/query-table\",\"~:logseq.property/query-sort-desc\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^29\"],\"~i48\",\"^H\",\"~:property.value/content\",[\"^ \"],\"^O\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^O\"],\"~:block/schema\",[\"^ \"],\"~i17\",\"~:logseq.property/query-properties\",\"~i49\",\"~:logseq.property/exclude-from-graph-view\",\"^1B\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^1B\"],\"~:logseq.property.linked-references/excludes\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^U\",\"^5\",\"^2A\"],\"^2>\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^2>\"],\"~:logseq.property/ls-type\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^2B\"],\"~:logseq.property/view-for\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^2C\"],\"~i18\",\"^1@\",\"~i50\",\"~:logseq.property/description\",\"^1O\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^1O\"],\"~:block/journal-day\",[\"^ \",\"^?\",true],\"~i19\",\"^29\",\"^I\",[\"^ \",\"^5\",\"^I\"],\"~i51\",\"^12\",\"~:block/format\",[\"^ \"],\"^E\",[\"^ \",\"^5\",\"^E\"],\"~i20\",\"^2B\",\"~i52\",\"^4\",\"^1K\",[\"^ \",\"^5\",\"^1K\"],\"^Y\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^U\",\"^5\",\"^Y\"],\"~:block/title\",[\"^ \",\"^?\",true],\"^3\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^3\"],\"~:asset/meta\",[\"^ \"],\"^1Z\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^1Z\"],\"~i21\",\"^1R\",\"~i53\",\"^1D\",\"^20\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^20\"],\"^22\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^22\"],\"~i22\",\"^S\",\"~i54\",\"^D\",\"~i23\",\"^1Q\",\"~i55\",\"~:logseq.property.table/filters\",\"~:logseq.property/order-list-type\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^2V\"],\"^2@\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^2@\"],\"~i24\",\"~:logseq.property.pdf/hl-stamp\",\"~i56\",\"^1:\",\"^1T\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^1T\"],\"^5\",[\"^ \",\"^18\",\"^19\"],\"~:property/schema.classes\",[\"^ \",\"^@\",\"^A\",\"^B\",\"^U\"],\"^2F\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^2F\"],\"~:block/path-refs\",[\"^ \",\"^@\",\"^A\",\"^B\",\"^U\"],\"~:block/parent\",[\"^ \",\"^@\",\"^A\",\"^?\",true],\"~i25\",\"~:logseq.property.pdf/hl-value\",\"~i57\",\"~:logseq.property.table/ordered-columns\",\"~:block/type\",[\"^ \",\"^?\",true],\"~:logseq.class/Journal\",[\"^ \",\"^5\",\"^36\"],\"~i26\",\"~:logseq.property.pdf/file\",\"~i58\",\"^2C\",\"^32\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^32\"],\"^28\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^28\"],\"~:logseq.class/Query\",[\"^ \",\"^5\",\"^3:\"],\"~i27\",\"^>\",\"~i59\",\"~:logseq.property.asset/remote-metadata\",\"^3=\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^3=\"],\"^2X\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^2X\"],\"~:block/order\",[\"^ \",\"^?\",true],\"^=\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^=\"],\"~i28\",\"^2V\",\"~i60\",\"^3:\",\"~:block/page\",[\"^ \",\"^@\",\"^A\",\"^?\",true],\"~:block/name\",[\"^ \",\"^?\",true],\"^34\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^34\"],\"~:file/path\",[\"^ \",\"^18\",\"^19\"],\"~i29\",\"^10\",\"~i61\",\"^24\",\"^G\",[\"^ \",\"^5\",\"^G\"],\"^14\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^14\"],\"~i30\",\"^2A\",\"~i62\",\"^1M\",\"^38\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^38\"],\"^9\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^9\"],\"~i31\",\"^26\",\"~i63\",\"^36\",\"^7\",[\"^ \",\"^5\",\"^7\"],\"^2U\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^2U\"]],\"~:datoms\",[\"~#list\",[[\"~#datascript/Datom\",[1,\"^5\",\"^7\",536870913]],[\"^3L\",[1,\"^X\",\"db\",536870913]],[\"^3L\",[2,\"^5\",\"^;\",536870913]],[\"^3L\",[2,\"^X\",20,536870913]],[\"^3L\",[3,\"^5\",\"^E\",536870913]],[\"^3L\",[4,\"^23\",1726061232384,536870916]],[\"^3L\",[4,\"^2J\",\"~:markdown\",536870913]],[\"^3L\",[4,\"^3B\",\"root tag\",536870913]],[\"^3L\",[4,\"^2M\",\"Root tag\",536870913]],[\"^3L\",[4,\"^:\",536870916,536870917]],[\"^3L\",[4,\"^35\",\"class\",536870913]],[\"^3L\",[4,\"^1>\",1726061232384,536870916]],[\"^3L\",[4,\"^17\",\"~u00000002-2737-8382-7000-000000000000\",536870913]],[\"^3L\",[4,\"^5\",\"^I\",536870913]],[\"^3L\",[4,\"^O\",true,536870913]],[\"^3L\",[5,\"^23\",1726061232380,536870916]],[\"^3L\",[5,\"^2J\",\"^3M\",536870913]],[\"^3L\",[5,\"^3B\",\"built-in?\",536870913]],[\"^3L\",[5,\"^3>\",\"bEh\",536870916]],[\"^3L\",[5,\"^2<\",[\"^ \",\"~:type\",\"~:checkbox\",\"~:hide?\",true],536870913]],[\"^3L\",[5,\"^2M\",\"built-in?\",536870913]],[\"^3L\",[5,\"^:\",536870916,536870917]],[\"^3L\",[5,\"^35\",\"property\",536870913]],[\"^3L\",[5,\"^1>\",1726061232380,536870916]],[\"^3L\",[5,\"^17\",\"~u00000002-1125-9581-6000-000000000000\",536870913]],[\"^3L\",[5,\"^B\",\"^C\",536870913]],[\"^3L\",[5,\"^5\",\"^O\",536870913]],[\"^3L\",[5,\"^?\",true,536870913]],[\"^3L\",[5,\"^O\",true,536870913]],[\"^3L\",[6,\"^23\",1726061232380,536870916]],[\"^3L\",[6,\"^2J\",\"^3M\",536870913]],[\"^3L\",[6,\"^3B\",\"alias\",536870913]],[\"^3L\",[6,\"^3>\",\"bEi\",536870916]],[\"^3L\",[6,\"^2<\",[\"^ \",\"^3N\",\"~:page\",\"~:view-context\",\"^3Q\",\"~:public?\",true],536870913]],[\"^3L\",[6,\"^2M\",\"Alias\",536870913]],[\"^3L\",[6,\"^:\",536870916,536870917]],[\"^3L\",[6,\"^35\",\"property\",536870913]],[\"^3L\",[6,\"^1>\",1726061232380,536870916]],[\"^3L\",[6,\"^17\",\"~u00000002-2112-6446-9900-000000000000\",536870913]],[\"^3L\",[6,\"^B\",\"^U\",536870913]],[\"^3L\",[6,\"^5\",\"^T\",536870913]],[\"^3L\",[6,\"^?\",true,536870913]],[\"^3L\",[6,\"^@\",\"^A\",536870913]],[\"^3L\",[6,\"^O\",true,536870913]],[\"^3L\",[7,\"^23\",1726061232380,536870916]],[\"^3L\",[7,\"^2J\",\"^3M\",536870913]],[\"^3L\",[7,\"^3B\",\"tags\",536870913]],[\"^3L\",[7,\"^3>\",\"bEj\",536870916]],[\"^3L\",[7,\"^2<\",[\"^ \",\"^3N\",\"~:class\",\"^3S\",true],536870913]],[\"^3L\",[7,\"^2M\",\"Tags\",536870913]],[\"^3L\",[7,\"^:\",536870916,536870917]],[\"^3L\",[7,\"^35\",\"property\",536870913]],[\"^3L\",[7,\"^1>\",1726061232380,536870916]],[\"^3L\",[7,\"^17\",\"~u00000002-1814-9483-4000-000000000000\",536870913]],[\"^3L\",[7,\"^B\",\"^U\",536870913]],[\"^3L\",[7,\"^5\",\"^Y\",536870913]],[\"^3L\",[7,\"^?\",true,536870913]],[\"^3L\",[7,\"^@\",\"^A\",536870913]],[\"^3L\",[7,\"^O\",true,536870913]],[\"^3L\",[7,\"^2Z\",4,536870913]],[\"^3L\",[8,\"^23\",1726061232380,536870916]],[\"^3L\",[8,\"^2J\",\"^3M\",536870913]],[\"^3L\",[8,\"^3B\",\"parent\",536870913]],[\"^3L\",[8,\"^3>\",\"bEk\",536870916]],[\"^3L\",[8,\"^2<\",[\"^ \",\"^3N\",\"~:node\",\"^3S\",true,\"^3R\",\"^3Q\"],536870913]],[\"^3L\",[8,\"^2M\",\"Parent\",536870913]],[\"^3L\",[8,\"^:\",536870916,536870917]],[\"^3L\",[8,\"^35\",\"property\",536870913]],[\"^3L\",[8,\"^1>\",1726061232380,536870916]],[\"^3L\",[8,\"^17\",\"~u00000002-1779-8450-9000-000000000000\",536870913]],[\"^3L\",[8,\"^B\",\"^C\",536870913]],[\"^3L\",[8,\"^5\",\"^14\",536870913]],[\"^3L\",[8,\"^?\",true,536870913]],[\"^3L\",[8,\"^@\",\"^A\",536870913]],[\"^3L\",[8,\"^O\",true,536870913]],[\"^3L\",[9,\"^23\",1726061232380,536870916]],[\"^3L\",[9,\"^2J\",\"^3M\",536870913]],[\"^3L\",[9,\"^3B\",\"tag properties\",536870913]],[\"^3L\",[9,\"^3>\",\"bEl\",536870916]],[\"^3L\",[9,\"^2<\",[\"^ \",\"^3N\",\"~:property\",\"^3S\",true,\"^3R\",\"~:never\"],536870913]],[\"^3L\",[9,\"^2M\",\"Tag properties\",536870913]],[\"^3L\",[9,\"^:\",536870916,536870917]],[\"^3L\",[9,\"^35\",\"property\",536870913]],[\"^3L\",[9,\"^1>\",1726061232380,536870916]],[\"^3L\",[9,\"^17\",\"~u00000002-2123-7120-5000-000000000000\",536870913]],[\"^3L\",[9,\"^B\",\"^U\",536870913]],[\"^3L\",[9,\"^5\",\"^1;\",536870913]],[\"^3L\",[9,\"^?\",true,536870913]],[\"^3L\",[9,\"^@\",\"^A\",536870913]],[\"^3L\",[9,\"^O\",true,536870913]],[\"^3L\",[10,\"^23\",1726061232380,536870916]],[\"^3L\",[10,\"^2J\",\"^3M\",536870913]],[\"^3L\",[10,\"^3B\",\"hide from node\",536870913]],[\"^3L\",[10,\"^3>\",\"bEm\",536870916]],[\"^3L\",[10,\"^2<\",[\"^ \",\"^3N\",\"^3O\",\"^3S\",true,\"^3R\",\"^3T\"],536870913]],[\"^3L\",[10,\"^2M\",\"Hide from node\",536870913]],[\"^3L\",[10,\"^:\",536870916,536870917]],[\"^3L\",[10,\"^35\",\"property\",536870913]],[\"^3L\",[10,\"^1>\",1726061232380,536870916]],[\"^3L\",[10,\"^17\",\"~u00000002-2610-3727-0000-000000000000\",536870913]],[\"^3L\",[10,\"^B\",\"^C\",536870913]],[\"^3L\",[10,\"^5\",\"^1B\",536870913]],[\"^3L\",[10,\"^?\",true,536870913]],[\"^3L\",[10,\"^O\",true,536870913]],[\"^3L\",[11,\"^23\",1726061232381,536870916]],[\"^3L\",[11,\"^2J\",\"^3M\",536870913]],[\"^3L\",[11,\"^3B\",\"pagetags\",536870913]],[\"^3L\",[11,\"^3>\",\"bEn\",536870916]],[\"^3L\",[11,\"^2<\",[\"^ \",\"^3N\",\"^3Q\",\"^3S\",true,\"^3R\",\"^3Q\"],536870913]],[\"^3L\",[11,\"^2M\",\"pageTags\",536870913]],[\"^3L\",[11,\"^:\",536870916,536870917]],[\"^3L\",[11,\"^35\",\"property\",536870913]],[\"^3L\",[11,\"^1>\",1726061232381,536870916]],[\"^3L\",[11,\"^17\",\"~u00000002-2133-5311-8500-000000000000\",536870913]],[\"^3L\",[11,\"^B\",\"^U\",536870913]],[\"^3L\",[11,\"^5\",\"^1G\",536870913]],[\"^3L\",[11,\"^?\",true,536870913]],[\"^3L\",[11,\"^@\",\"^A\",536870913]],[\"^3L\",[11,\"^O\",true,536870913]],[\"^3L\",[12,\"^23\",1726061232381,536870916]],[\"^3L\",[12,\"^2J\",\"^3M\",536870913]],[\"^3L\",[12,\"^3B\",\"background-color\",536870913]],[\"^3L\",[12,\"^3>\",\"bEo\",536870916]],[\"^3L\",[12,\"^2<\",[\"^ \",\"^3N\",\"~:default\",\"^3P\",true],536870913]],[\"^3L\",[12,\"^2M\",\"background-color\",536870913]],[\"^3L\",[12,\"^:\",536870916,536870917]],[\"^3L\",[12,\"^35\",\"property\",536870913]],[\"^3L\",[12,\"^1>\",1726061232381,536870916]],[\"^3L\",[12,\"^17\",\"~u00000002-5191-2660-6000-000000000000\",536870913]],[\"^3L\",[12,\"^B\",\"^C\",536870913]],[\"^3L\",[12,\"^5\",\"^1O\",536870913]],[\"^3L\",[12,\"^?\",true,536870913]],[\"^3L\",[12,\"^@\",\"^A\",536870913]],[\"^3L\",[12,\"^O\",true,536870913]],[\"^3L\",[13,\"^23\",1726061232381,536870916]],[\"^3L\",[13,\"^2J\",\"^3M\",536870913]],[\"^3L\",[13,\"^3B\",\"background-image\",536870913]],[\"^3L\",[13,\"^3>\",\"bEp\",536870916]],[\"^3L\",[13,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3R\",\"~:block\",\"^3S\",true],536870913]],[\"^3L\",[13,\"^2M\",\"background-image\",536870913]],[\"^3L\",[13,\"^:\",536870916,536870917]],[\"^3L\",[13,\"^35\",\"property\",536870913]],[\"^3L\",[13,\"^1>\",1726061232381,536870916]],[\"^3L\",[13,\"^17\",\"~u00000002-2513-1712-8000-000000000000\",536870913]],[\"^3L\",[13,\"^B\",\"^C\",536870913]],[\"^3L\",[13,\"^5\",\"^1T\",536870913]],[\"^3L\",[13,\"^?\",true,536870913]],[\"^3L\",[13,\"^@\",\"^A\",536870913]],[\"^3L\",[13,\"^O\",true,536870913]],[\"^3L\",[14,\"^23\",1726061232381,536870916]],[\"^3L\",[14,\"^2J\",\"^3M\",536870913]],[\"^3L\",[14,\"^3B\",\"heading\",536870913]],[\"^3L\",[14,\"^3>\",\"bEq\",536870916]],[\"^3L\",[14,\"^2<\",[\"^ \",\"^3N\",\"~:any\",\"^3P\",true],536870913]],[\"^3L\",[14,\"^2M\",\"heading\",536870913]],[\"^3L\",[14,\"^:\",536870916,536870917]],[\"^3L\",[14,\"^35\",\"property\",536870913]],[\"^3L\",[14,\"^1>\",1726061232381,536870916]],[\"^3L\",[14,\"^17\",\"~u00000002-1858-7494-1500-000000000000\",536870913]],[\"^3L\",[14,\"^B\",\"^C\",536870913]],[\"^3L\",[14,\"^5\",\"^13\",536870913]],[\"^3L\",[14,\"^?\",true,536870913]],[\"^3L\",[14,\"^O\",true,536870913]],[\"^3L\",[15,\"^23\",1726061232381,536870916]],[\"^3L\",[15,\"^2J\",\"^3M\",536870913]],[\"^3L\",[15,\"^3B\",\"created-from-property\",536870913]],[\"^3L\",[15,\"^3>\",\"bEr\",536870916]],[\"^3L\",[15,\"^2<\",[\"^ \",\"^3N\",\"~:entity\",\"^3P\",true],536870913]],[\"^3L\",[15,\"^2M\",\"created-from-property\",536870913]],[\"^3L\",[15,\"^:\",536870916,536870917]],[\"^3L\",[15,\"^35\",\"property\",536870913]],[\"^3L\",[15,\"^1>\",1726061232381,536870916]],[\"^3L\",[15,\"^17\",\"~u00000002-8618-9226-7000-000000000000\",536870913]],[\"^3L\",[15,\"^B\",\"^C\",536870913]],[\"^3L\",[15,\"^5\",\"^20\",536870913]],[\"^3L\",[15,\"^?\",true,536870913]],[\"^3L\",[15,\"^@\",\"^A\",536870913]],[\"^3L\",[15,\"^O\",true,536870913]],[\"^3L\",[16,\"^23\",1726061232381,536870916]],[\"^3L\",[16,\"^2J\",\"^3M\",536870913]],[\"^3L\",[16,\"^3B\",\"query-table\",536870913]],[\"^3L\",[16,\"^3>\",\"bEs\",536870916]],[\"^3L\",[16,\"^2<\",[\"^ \",\"^3N\",\"^3O\",\"^3P\",true],536870913]],[\"^3L\",[16,\"^2M\",\"query-table\",536870913]],[\"^3L\",[16,\"^:\",536870916,536870917]],[\"^3L\",[16,\"^35\",\"property\",536870913]],[\"^3L\",[16,\"^1>\",1726061232381,536870916]],[\"^3L\",[16,\"^17\",\"~u00000002-1109-5556-5400-000000000000\",536870913]],[\"^3L\",[16,\"^B\",\"^C\",536870913]],[\"^3L\",[16,\"^5\",\"^28\",536870913]],[\"^3L\",[16,\"^?\",true,536870913]],[\"^3L\",[16,\"^O\",true,536870913]],[\"^3L\",[17,\"^23\",1726061232381,536870916]],[\"^3L\",[17,\"^2J\",\"^3M\",536870913]],[\"^3L\",[17,\"^3B\",\"query-properties\",536870913]],[\"^3L\",[17,\"^3>\",\"bEt\",536870916]],[\"^3L\",[17,\"^2<\",[\"^ \",\"^3N\",\"~:coll\",\"^3P\",true],536870913]],[\"^3L\",[17,\"^2M\",\"query-properties\",536870913]],[\"^3L\",[17,\"^:\",536870916,536870917]],[\"^3L\",[17,\"^35\",\"property\",536870913]],[\"^3L\",[17,\"^1>\",1726061232381,536870916]],[\"^3L\",[17,\"^17\",\"~u00000002-1976-9699-3500-000000000000\",536870913]],[\"^3L\",[17,\"^B\",\"^C\",536870913]],[\"^3L\",[17,\"^5\",\"^2>\",536870913]],[\"^3L\",[17,\"^?\",true,536870913]],[\"^3L\",[17,\"^O\",true,536870913]],[\"^3L\",[18,\"^23\",1726061232381,536870916]],[\"^3L\",[18,\"^2J\",\"^3M\",536870913]],[\"^3L\",[18,\"^3B\",\"query-sort-by\",536870913]],[\"^3L\",[18,\"^3>\",\"bEu\",536870916]],[\"^3L\",[18,\"^2<\",[\"^ \",\"^3N\",\"~:keyword\",\"^3P\",true],536870913]],[\"^3L\",[18,\"^2M\",\"query-sort-by\",536870913]],[\"^3L\",[18,\"^:\",536870916,536870917]],[\"^3L\",[18,\"^35\",\"property\",536870913]],[\"^3L\",[18,\"^1>\",1726061232381,536870916]],[\"^3L\",[18,\"^17\",\"~u00000002-1579-0446-1700-000000000000\",536870913]],[\"^3L\",[18,\"^B\",\"^C\",536870913]],[\"^3L\",[18,\"^5\",\"^1@\",536870913]],[\"^3L\",[18,\"^?\",true,536870913]],[\"^3L\",[18,\"^O\",true,536870913]],[\"^3L\",[19,\"^23\",1726061232381,536870916]],[\"^3L\",[19,\"^2J\",\"^3M\",536870913]],[\"^3L\",[19,\"^3B\",\"query-sort-desc\",536870913]],[\"^3L\",[19,\"^3>\",\"bEv\",536870916]],[\"^3L\",[19,\"^2<\",[\"^ \",\"^3N\",\"^3O\",\"^3P\",true],536870913]],[\"^3L\",[19,\"^2M\",\"query-sort-desc\",536870913]],[\"^3L\",[19,\"^:\",536870916,536870917]],[\"^3L\",[19,\"^35\",\"property\",536870913]],[\"^3L\",[19,\"^1>\",1726061232381,536870916]],[\"^3L\",[19,\"^17\",\"~u00000002-1147-3623-2000-000000000000\",536870913]],[\"^3L\",[19,\"^B\",\"^C\",536870913]],[\"^3L\",[19,\"^5\",\"^29\",536870913]],[\"^3L\",[19,\"^?\",true,536870913]],[\"^3L\",[19,\"^O\",true,536870913]],[\"^3L\",[20,\"^23\",1726061232381,536870916]],[\"^3L\",[20,\"^2J\",\"^3M\",536870913]],[\"^3L\",[20,\"^3B\",\"ls-type\",536870913]],[\"^3L\",[20,\"^3>\",\"bEw\",536870916]],[\"^3L\",[20,\"^2<\",[\"^ \",\"^3N\",\"^41\",\"^3P\",true],536870913]],[\"^3L\",[20,\"^2M\",\"ls-type\",536870913]],[\"^3L\",[20,\"^:\",536870916,536870917]],[\"^3L\",[20,\"^35\",\"property\",536870913]],[\"^3L\",[20,\"^1>\",1726061232381,536870916]],[\"^3L\",[20,\"^17\",\"~u00000002-3269-7934-5000-000000000000\",536870913]],[\"^3L\",[20,\"^B\",\"^C\",536870913]],[\"^3L\",[20,\"^5\",\"^2B\",536870913]],[\"^3L\",[20,\"^?\",true,536870913]],[\"^3L\",[20,\"^O\",true,536870913]],[\"^3L\",[21,\"^23\",1726061232381,536870916]],[\"^3L\",[21,\"^2J\",\"^3M\",536870913]],[\"^3L\",[21,\"^3B\",\"hl-type\",536870913]],[\"^3L\",[21,\"^3>\",\"bEx\",536870916]],[\"^3L\",[21,\"^2<\",[\"^ \",\"^3N\",\"^41\",\"^3P\",true],536870913]],[\"^3L\",[21,\"^2M\",\"hl-type\",536870913]],[\"^3L\",[21,\"^:\",536870916,536870917]],[\"^3L\",[21,\"^35\",\"property\",536870913]],[\"^3L\",[21,\"^1>\",1726061232381,536870916]],[\"^3L\",[21,\"^17\",\"~u00000002-2083-0223-8000-000000000000\",536870913]],[\"^3L\",[21,\"^B\",\"^C\",536870913]],[\"^3L\",[21,\"^5\",\"^1R\",536870913]],[\"^3L\",[21,\"^?\",true,536870913]],[\"^3L\",[21,\"^O\",true,536870913]],[\"^3L\",[22,\"^23\",1726061232381,536870916]],[\"^3L\",[22,\"^2J\",\"^3M\",536870913]],[\"^3L\",[22,\"^3B\",\"hl-color\",536870913]],[\"^3L\",[22,\"^3>\",\"bEy\",536870916]],[\"^3L\",[22,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3P\",true],536870913]],[\"^3L\",[22,\"^2M\",\"hl-color\",536870913]],[\"^3L\",[22,\"^:\",536870916,536870917]],[\"^3L\",[22,\"^35\",\"property\",536870913]],[\"^3L\",[22,\"^1>\",1726061232381,536870916]],[\"^3L\",[22,\"^17\",\"~u00000002-2137-2691-4700-000000000000\",536870913]],[\"^3L\",[22,\"^B\",\"^C\",536870913]],[\"^3L\",[22,\"^5\",\"^S\",536870913]],[\"^3L\",[22,\"^?\",true,536870913]],[\"^3L\",[22,\"^@\",\"^A\",536870913]],[\"^3L\",[22,\"^O\",true,536870913]],[\"^3L\",[23,\"^23\",1726061232382,536870916]],[\"^3L\",[23,\"^2J\",\"^3M\",536870913]],[\"^3L\",[23,\"^3B\",\"hl-page\",536870913]],[\"^3L\",[23,\"^3>\",\"bEz\",536870916]],[\"^3L\",[23,\"^2<\",[\"^ \",\"^3N\",\"~:number\",\"^3P\",true],536870913]],[\"^3L\",[23,\"^2M\",\"hl-page\",536870913]],[\"^3L\",[23,\"^:\",536870916,536870917]],[\"^3L\",[23,\"^35\",\"property\",536870913]],[\"^3L\",[23,\"^1>\",1726061232382,536870916]],[\"^3L\",[23,\"^17\",\"~u00000002-7532-8459-6000-000000000000\",536870913]],[\"^3L\",[23,\"^B\",\"^C\",536870913]],[\"^3L\",[23,\"^5\",\"^1Q\",536870913]],[\"^3L\",[23,\"^?\",true,536870913]],[\"^3L\",[23,\"^@\",\"^A\",536870913]],[\"^3L\",[23,\"^O\",true,536870913]],[\"^3L\",[24,\"^23\",1726061232382,536870916]],[\"^3L\",[24,\"^2J\",\"^3M\",536870913]],[\"^3L\",[24,\"^3B\",\"hl-stamp\",536870913]],[\"^3L\",[24,\"^3>\",\"bF0\",536870916]],[\"^3L\",[24,\"^2<\",[\"^ \",\"^3N\",\"^42\",\"^3P\",true],536870913]],[\"^3L\",[24,\"^2M\",\"hl-stamp\",536870913]],[\"^3L\",[24,\"^:\",536870916,536870917]],[\"^3L\",[24,\"^35\",\"property\",536870913]],[\"^3L\",[24,\"^1>\",1726061232382,536870916]],[\"^3L\",[24,\"^17\",\"~u00000002-1293-4649-2300-000000000000\",536870913]],[\"^3L\",[24,\"^B\",\"^C\",536870913]],[\"^3L\",[24,\"^5\",\"^2X\",536870913]],[\"^3L\",[24,\"^?\",true,536870913]],[\"^3L\",[24,\"^@\",\"^A\",536870913]],[\"^3L\",[24,\"^O\",true,536870913]],[\"^3L\",[25,\"^23\",1726061232382,536870916]],[\"^3L\",[25,\"^2J\",\"^3M\",536870913]],[\"^3L\",[25,\"^3B\",\"hl-value\",536870913]],[\"^3L\",[25,\"^3>\",\"bF1\",536870916]],[\"^3L\",[25,\"^2<\",[\"^ \",\"^3N\",\"~:map\",\"^3P\",true],536870913]],[\"^3L\",[25,\"^2M\",\"hl-value\",536870913]],[\"^3L\",[25,\"^:\",536870916,536870917]],[\"^3L\",[25,\"^35\",\"property\",536870913]],[\"^3L\",[25,\"^1>\",1726061232382,536870916]],[\"^3L\",[25,\"^17\",\"~u00000002-5458-2940-2000-000000000000\",536870913]],[\"^3L\",[25,\"^B\",\"^C\",536870913]],[\"^3L\",[25,\"^5\",\"^32\",536870913]],[\"^3L\",[25,\"^?\",true,536870913]],[\"^3L\",[25,\"^O\",true,536870913]],[\"^3L\",[26,\"^23\",1726061232382,536870916]],[\"^3L\",[26,\"^2J\",\"^3M\",536870913]],[\"^3L\",[26,\"^3B\",\"file\",536870913]],[\"^3L\",[26,\"^3>\",\"bF2\",536870916]],[\"^3L\",[26,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3P\",true,\"^3S\",true,\"^3R\",\"^3Q\"],536870913]],[\"^3L\",[26,\"^2M\",\"file\",536870913]],[\"^3L\",[26,\"^:\",536870916,536870917]],[\"^3L\",[26,\"^35\",\"property\",536870913]],[\"^3L\",[26,\"^1>\",1726061232382,536870916]],[\"^3L\",[26,\"^17\",\"~u00000002-1681-6464-3400-000000000000\",536870913]],[\"^3L\",[26,\"^B\",\"^C\",536870913]],[\"^3L\",[26,\"^5\",\"^38\",536870913]],[\"^3L\",[26,\"^?\",true,536870913]],[\"^3L\",[26,\"^@\",\"^A\",536870913]],[\"^3L\",[26,\"^O\",true,536870913]],[\"^3L\",[27,\"^23\",1726061232382,536870916]],[\"^3L\",[27,\"^2J\",\"^3M\",536870913]],[\"^3L\",[27,\"^3B\",\"file-path\",536870913]],[\"^3L\",[27,\"^3>\",\"bF3\",536870916]],[\"^3L\",[27,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3P\",true,\"^3S\",true,\"^3R\",\"^3Q\"],536870913]],[\"^3L\",[27,\"^2M\",\"file-path\",536870913]],[\"^3L\",[27,\"^:\",536870916,536870917]],[\"^3L\",[27,\"^35\",\"property\",536870913]],[\"^3L\",[27,\"^1>\",1726061232382,536870916]],[\"^3L\",[27,\"^17\",\"~u00000002-5663-3568-2000-000000000000\",536870913]],[\"^3L\",[27,\"^B\",\"^C\",536870913]],[\"^3L\",[27,\"^5\",\"^>\",536870913]],[\"^3L\",[27,\"^?\",true,536870913]],[\"^3L\",[27,\"^@\",\"^A\",536870913]],[\"^3L\",[27,\"^O\",true,536870913]],[\"^3L\",[28,\"^23\",1726061232382,536870916]],[\"^3L\",[28,\"^2J\",\"^3M\",536870913]],[\"^3L\",[28,\"^3B\",\"logseq.order-list-type\",536870913]],[\"^3L\",[28,\"^3>\",\"bF4\",536870916]],[\"^3L\",[28,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3P\",true],536870913]],[\"^3L\",[28,\"^2M\",\"logseq.order-list-type\",536870913]],[\"^3L\",[28,\"^:\",536870916,536870917]],[\"^3L\",[28,\"^35\",\"property\",536870913]],[\"^3L\",[28,\"^1>\",1726061232382,536870916]],[\"^3L\",[28,\"^17\",\"~u00000002-6078-1711-1000-000000000000\",536870913]],[\"^3L\",[28,\"^B\",\"^C\",536870913]],[\"^3L\",[28,\"^5\",\"^2V\",536870913]],[\"^3L\",[28,\"^?\",true,536870913]],[\"^3L\",[28,\"^@\",\"^A\",536870913]],[\"^3L\",[28,\"^O\",true,536870913]],[\"^3L\",[29,\"^23\",1726061232382,536870916]],[\"^3L\",[29,\"^2J\",\"^3M\",536870913]],[\"^3L\",[29,\"^3B\",\"includes\",536870913]],[\"^3L\",[29,\"^3>\",\"bF5\",536870916]],[\"^3L\",[29,\"^2<\",[\"^ \",\"^3N\",\"^3U\",\"^3P\",true],536870913]],[\"^3L\",[29,\"^2M\",\"includes\",536870913]],[\"^3L\",[29,\"^:\",536870916,536870917]],[\"^3L\",[29,\"^35\",\"property\",536870913]],[\"^3L\",[29,\"^1>\",1726061232382,536870916]],[\"^3L\",[29,\"^17\",\"~u00000002-1680-5777-0300-000000000000\",536870913]],[\"^3L\",[29,\"^B\",\"^U\",536870913]],[\"^3L\",[29,\"^5\",\"^10\",536870913]],[\"^3L\",[29,\"^?\",true,536870913]],[\"^3L\",[29,\"^@\",\"^A\",536870913]],[\"^3L\",[29,\"^O\",true,536870913]],[\"^3L\",[30,\"^23\",1726061232382,536870916]],[\"^3L\",[30,\"^2J\",\"^3M\",536870913]],[\"^3L\",[30,\"^3B\",\"excludes\",536870913]],[\"^3L\",[30,\"^3>\",\"bF6\",536870916]],[\"^3L\",[30,\"^2<\",[\"^ \",\"^3N\",\"^3U\",\"^3P\",true],536870913]],[\"^3L\",[30,\"^2M\",\"excludes\",536870913]],[\"^3L\",[30,\"^:\",536870916,536870917]],[\"^3L\",[30,\"^35\",\"property\",536870913]],[\"^3L\",[30,\"^1>\",1726061232382,536870916]],[\"^3L\",[30,\"^17\",\"~u00000002-2426-7588-9000-000000000000\",536870913]],[\"^3L\",[30,\"^B\",\"^U\",536870913]],[\"^3L\",[30,\"^5\",\"^2A\",536870913]],[\"^3L\",[30,\"^?\",true,536870913]],[\"^3L\",[30,\"^@\",\"^A\",536870913]],[\"^3L\",[30,\"^O\",true,536870913]],[\"^3L\",[31,\"^23\",1726061232382,536870916]],[\"^3L\",[31,\"^2J\",\"^3M\",536870913]],[\"^3L\",[31,\"^3B\",\"logseq.tldraw.page\",536870913]],[\"^3L\",[31,\"^3>\",\"bF7\",536870916]],[\"^3L\",[31,\"^2<\",[\"^ \",\"^3N\",\"^43\",\"^3P\",true],536870913]],[\"^3L\",[31,\"^2M\",\"logseq.tldraw.page\",536870913]],[\"^3L\",[31,\"^:\",536870916,536870917]],[\"^3L\",[31,\"^35\",\"property\",536870913]],[\"^3L\",[31,\"^1>\",1726061232382,536870916]],[\"^3L\",[31,\"^17\",\"~u00000002-3546-2145-7000-000000000000\",536870913]],[\"^3L\",[31,\"^B\",\"^C\",536870913]],[\"^3L\",[31,\"^5\",\"^26\",536870913]],[\"^3L\",[31,\"^?\",true,536870913]],[\"^3L\",[31,\"^O\",true,536870913]],[\"^3L\",[32,\"^23\",1726061232382,536870916]],[\"^3L\",[32,\"^2J\",\"^3M\",536870913]],[\"^3L\",[32,\"^3B\",\"logseq.tldraw.shape\",536870913]],[\"^3L\",[32,\"^3>\",\"bF8\",536870916]],[\"^3L\",[32,\"^2<\",[\"^ \",\"^3N\",\"^43\",\"^3P\",true],536870913]],[\"^3L\",[32,\"^2M\",\"logseq.tldraw.shape\",536870913]],[\"^3L\",[32,\"^:\",536870916,536870917]],[\"^3L\",[32,\"^35\",\"property\",536870913]],[\"^3L\",[32,\"^1>\",1726061232382,536870916]],[\"^3L\",[32,\"^17\",\"~u00000002-1313-2454-2000-000000000000\",536870913]],[\"^3L\",[32,\"^B\",\"^C\",536870913]],[\"^3L\",[32,\"^5\",\"^3\",536870913]],[\"^3L\",[32,\"^?\",true,536870913]],[\"^3L\",[32,\"^O\",true,536870913]],[\"^3L\",[33,\"^23\",1726061232382,536870916]],[\"^3L\",[33,\"^2J\",\"^3M\",536870913]],[\"^3L\",[33,\"^3B\",\"title format\",536870913]],[\"^3L\",[33,\"^3>\",\"bF9\",536870916]],[\"^3L\",[33,\"^2<\",[\"^ \",\"^3N\",\"~:string\",\"^3S\",false],536870913]],[\"^3L\",[33,\"^2M\",\"Title format\",536870913]],[\"^3L\",[33,\"^:\",536870916,536870917]],[\"^3L\",[33,\"^35\",\"property\",536870913]],[\"^3L\",[33,\"^1>\",1726061232382,536870916]],[\"^3L\",[33,\"^17\",\"~u00000002-1536-4979-5400-000000000000\",536870913]],[\"^3L\",[33,\"^B\",\"^C\",536870913]],[\"^3L\",[33,\"^5\",\"^9\",536870913]],[\"^3L\",[33,\"^?\",true,536870913]],[\"^3L\",[33,\"^O\",true,536870913]],[\"^3L\",[34,\"^23\",1726061232382,536870916]],[\"^3L\",[34,\"^2J\",\"^3M\",536870913]],[\"^3L\",[34,\"^3B\",\"status\",536870913]],[\"^3L\",[34,\"^3>\",\"bFA\",536870916]],[\"^3L\",[34,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3S\",true,\"~:position\",\"~:block-left\"],536870913]],[\"^3L\",[34,\"^2M\",\"Status\",536870913]],[\"^3L\",[34,\"^:\",536870919,536870920]],[\"^3L\",[34,\"^35\",\"property\",536870913]],[\"^3L\",[34,\"^1>\",1726061232382,536870916]],[\"^3L\",[34,\"^17\",\"~u00000002-1399-1718-0300-000000000000\",536870913]],[\"^3L\",[34,\"^B\",\"^C\",536870913]],[\"^3L\",[34,\"^5\",\"^=\",536870913]],[\"^3L\",[34,\"^?\",true,536870913]],[\"^3L\",[34,\"^@\",\"^A\",536870913]],[\"^3L\",[34,\"^O\",true,536870913]],[\"^3L\",[35,\"^1V\",34,536870913]],[\"^3L\",[35,\"^23\",1726061232382,536870916]],[\"^3L\",[35,\"^2J\",\"^3M\",536870913]],[\"^3L\",[35,\"^3>\",\"bFB\",536870916]],[\"^3L\",[35,\"^3A\",34,536870913]],[\"^3L\",[35,\"^30\",34,536870913]],[\"^3L\",[35,\"^2[\",34,536870920]],[\"^3L\",[35,\"^1L\",34,536870919]],[\"^3L\",[35,\"^2M\",\"Backlog\",536870913]],[\"^3L\",[35,\"^:\",536870919,536870920]],[\"^3L\",[35,\"^35\",\"closed value\",536870913]],[\"^3L\",[35,\"^1>\",1726061232382,536870916]],[\"^3L\",[35,\"^17\",\"~u00000002-1797-5174-0500-000000000000\",536870913]],[\"^3L\",[35,\"^5\",\"^G\",536870913]],[\"^3L\",[35,\"^O\",true,536870913]],[\"^3L\",[35,\"^20\",34,536870913]],[\"^3L\",[35,\"^22\",[\"^ \",\"^3N\",\"~:tabler-icon\",\"~:id\",\"Backlog\"],536870913]],[\"^3L\",[36,\"^1V\",34,536870913]],[\"^3L\",[36,\"^23\",1726061232382,536870916]],[\"^3L\",[36,\"^2J\",\"^3M\",536870913]],[\"^3L\",[36,\"^3>\",\"bFC\",536870916]],[\"^3L\",[36,\"^3A\",34,536870913]],[\"^3L\",[36,\"^30\",34,536870913]],[\"^3L\",[36,\"^2[\",34,536870920]],[\"^3L\",[36,\"^1L\",34,536870919]],[\"^3L\",[36,\"^2M\",\"Todo\",536870913]],[\"^3L\",[36,\"^:\",536870919,536870920]],[\"^3L\",[36,\"^35\",\"closed value\",536870913]],[\"^3L\",[36,\"^1>\",1726061232382,536870916]],[\"^3L\",[36,\"^17\",\"~u00000002-1776-1920-4900-000000000000\",536870913]],[\"^3L\",[36,\"^5\",\"^K\",536870913]],[\"^3L\",[36,\"^O\",true,536870913]],[\"^3L\",[36,\"^20\",34,536870913]],[\"^3L\",[36,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"Todo\"],536870913]],[\"^3L\",[37,\"^1V\",34,536870913]],[\"^3L\",[37,\"^23\",1726061232382,536870916]],[\"^3L\",[37,\"^2J\",\"^3M\",536870913]],[\"^3L\",[37,\"^3>\",\"bFD\",536870916]],[\"^3L\",[37,\"^3A\",34,536870913]],[\"^3L\",[37,\"^30\",34,536870913]],[\"^3L\",[37,\"^2[\",34,536870920]],[\"^3L\",[37,\"^1L\",34,536870919]],[\"^3L\",[37,\"^2M\",\"Doing\",536870913]],[\"^3L\",[37,\"^:\",536870919,536870920]],[\"^3L\",[37,\"^35\",\"closed value\",536870913]],[\"^3L\",[37,\"^1>\",1726061232382,536870916]],[\"^3L\",[37,\"^17\",\"~u00000002-5524-7947-6000-000000000000\",536870913]],[\"^3L\",[37,\"^5\",\"^Q\",536870913]],[\"^3L\",[37,\"^O\",true,536870913]],[\"^3L\",[37,\"^20\",34,536870913]],[\"^3L\",[37,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"InProgress50\"],536870913]],[\"^3L\",[38,\"^1V\",34,536870913]],[\"^3L\",[38,\"^23\",1726061232382,536870916]],[\"^3L\",[38,\"^2J\",\"^3M\",536870913]],[\"^3L\",[38,\"^3>\",\"bFE\",536870916]],[\"^3L\",[38,\"^3A\",34,536870913]],[\"^3L\",[38,\"^30\",34,536870913]],[\"^3L\",[38,\"^2[\",34,536870920]],[\"^3L\",[38,\"^1L\",34,536870919]],[\"^3L\",[38,\"^2M\",\"In Review\",536870913]],[\"^3L\",[38,\"^:\",536870919,536870920]],[\"^3L\",[38,\"^35\",\"closed value\",536870913]],[\"^3L\",[38,\"^1>\",1726061232382,536870916]],[\"^3L\",[38,\"^17\",\"~u00000002-3550-9421-0000-000000000000\",536870913]],[\"^3L\",[38,\"^5\",\"^W\",536870913]],[\"^3L\",[38,\"^O\",true,536870913]],[\"^3L\",[38,\"^20\",34,536870913]],[\"^3L\",[38,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"InReview\"],536870913]],[\"^3L\",[39,\"^1V\",34,536870913]],[\"^3L\",[39,\"^23\",1726061232382,536870916]],[\"^3L\",[39,\"^2J\",\"^3M\",536870913]],[\"^3L\",[39,\"^3>\",\"bFF\",536870916]],[\"^3L\",[39,\"^3A\",34,536870913]],[\"^3L\",[39,\"^30\",34,536870913]],[\"^3L\",[39,\"^2[\",34,536870920]],[\"^3L\",[39,\"^1L\",34,536870919]],[\"^3L\",[39,\"^2M\",\"Done\",536870913]],[\"^3L\",[39,\"^:\",536870919,536870920]],[\"^3L\",[39,\"^35\",\"closed value\",536870913]],[\"^3L\",[39,\"^1>\",1726061232382,536870916]],[\"^3L\",[39,\"^17\",\"~u00000002-1430-0577-4000-000000000000\",536870913]],[\"^3L\",[39,\"^5\",\"^[\",536870913]],[\"^3L\",[39,\"^O\",true,536870913]],[\"^3L\",[39,\"^20\",34,536870913]],[\"^3L\",[39,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"Done\"],536870913]],[\"^3L\",[40,\"^1V\",34,536870913]],[\"^3L\",[40,\"^23\",1726061232382,536870916]],[\"^3L\",[40,\"^2J\",\"^3M\",536870913]],[\"^3L\",[40,\"^3>\",\"bFG\",536870916]],[\"^3L\",[40,\"^3A\",34,536870913]],[\"^3L\",[40,\"^30\",34,536870913]],[\"^3L\",[40,\"^2[\",34,536870920]],[\"^3L\",[40,\"^1L\",34,536870919]],[\"^3L\",[40,\"^2M\",\"Canceled\",536870913]],[\"^3L\",[40,\"^:\",536870919,536870920]],[\"^3L\",[40,\"^35\",\"closed value\",536870913]],[\"^3L\",[40,\"^1>\",1726061232382,536870916]],[\"^3L\",[40,\"^17\",\"~u00000002-1217-7438-9000-000000000000\",536870913]],[\"^3L\",[40,\"^5\",\"^16\",536870913]],[\"^3L\",[40,\"^O\",true,536870913]],[\"^3L\",[40,\"^20\",34,536870913]],[\"^3L\",[40,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"Cancelled\"],536870913]],[\"^3L\",[41,\"^23\",1726061232382,536870916]],[\"^3L\",[41,\"^2J\",\"^3M\",536870913]],[\"^3L\",[41,\"^3B\",\"priority\",536870913]],[\"^3L\",[41,\"^3>\",\"bFH\",536870916]],[\"^3L\",[41,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3S\",true,\"^45\",\"^46\"],536870913]],[\"^3L\",[41,\"^2M\",\"Priority\",536870913]],[\"^3L\",[41,\"^:\",536870919,536870920]],[\"^3L\",[41,\"^35\",\"property\",536870913]],[\"^3L\",[41,\"^1>\",1726061232382,536870916]],[\"^3L\",[41,\"^17\",\"~u00000002-1714-7859-9500-000000000000\",536870913]],[\"^3L\",[41,\"^B\",\"^C\",536870913]],[\"^3L\",[41,\"^5\",\"^1=\",536870913]],[\"^3L\",[41,\"^?\",true,536870913]],[\"^3L\",[41,\"^@\",\"^A\",536870913]],[\"^3L\",[41,\"^O\",true,536870913]],[\"^3L\",[42,\"^1V\",41,536870913]],[\"^3L\",[42,\"^23\",1726061232382,536870916]],[\"^3L\",[42,\"^2J\",\"^3M\",536870913]],[\"^3L\",[42,\"^3>\",\"bFI\",536870916]],[\"^3L\",[42,\"^3A\",41,536870913]],[\"^3L\",[42,\"^30\",41,536870913]],[\"^3L\",[42,\"^2[\",41,536870920]],[\"^3L\",[42,\"^1L\",41,536870919]],[\"^3L\",[42,\"^2M\",\"Low\",536870913]],[\"^3L\",[42,\"^:\",536870919,536870920]],[\"^3L\",[42,\"^35\",\"closed value\",536870913]],[\"^3L\",[42,\"^1>\",1726061232382,536870916]],[\"^3L\",[42,\"^17\",\"~u00000002-8891-7452-4000-000000000000\",536870913]],[\"^3L\",[42,\"^5\",\"^L\",536870913]],[\"^3L\",[42,\"^O\",true,536870913]],[\"^3L\",[42,\"^20\",41,536870913]],[\"^3L\",[42,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"priorityLvlLow\"],536870913]],[\"^3L\",[43,\"^1V\",41,536870913]],[\"^3L\",[43,\"^23\",1726061232382,536870916]],[\"^3L\",[43,\"^2J\",\"^3M\",536870913]],[\"^3L\",[43,\"^3>\",\"bFJ\",536870916]],[\"^3L\",[43,\"^3A\",41,536870913]],[\"^3L\",[43,\"^30\",41,536870913]],[\"^3L\",[43,\"^2[\",41,536870920]],[\"^3L\",[43,\"^1L\",41,536870919]],[\"^3L\",[43,\"^2M\",\"Medium\",536870913]],[\"^3L\",[43,\"^:\",536870919,536870920]],[\"^3L\",[43,\"^35\",\"closed value\",536870913]],[\"^3L\",[43,\"^1>\",1726061232382,536870916]],[\"^3L\",[43,\"^17\",\"~u00000002-4650-7295-0000-000000000000\",536870913]],[\"^3L\",[43,\"^5\",\"^1E\",536870913]],[\"^3L\",[43,\"^O\",true,536870913]],[\"^3L\",[43,\"^20\",41,536870913]],[\"^3L\",[43,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"priorityLvlMedium\"],536870913]],[\"^3L\",[44,\"^1V\",41,536870913]],[\"^3L\",[44,\"^23\",1726061232382,536870916]],[\"^3L\",[44,\"^2J\",\"^3M\",536870913]],[\"^3L\",[44,\"^3>\",\"bFK\",536870916]],[\"^3L\",[44,\"^3A\",41,536870913]],[\"^3L\",[44,\"^30\",41,536870913]],[\"^3L\",[44,\"^2[\",41,536870920]],[\"^3L\",[44,\"^1L\",41,536870919]],[\"^3L\",[44,\"^2M\",\"High\",536870913]],[\"^3L\",[44,\"^:\",536870919,536870920]],[\"^3L\",[44,\"^35\",\"closed value\",536870913]],[\"^3L\",[44,\"^1>\",1726061232382,536870916]],[\"^3L\",[44,\"^17\",\"~u00000002-1281-2351-0000-000000000000\",536870913]],[\"^3L\",[44,\"^5\",\"^N\",536870913]],[\"^3L\",[44,\"^O\",true,536870913]],[\"^3L\",[44,\"^20\",41,536870913]],[\"^3L\",[44,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"priorityLvlHigh\"],536870913]],[\"^3L\",[45,\"^1V\",41,536870913]],[\"^3L\",[45,\"^23\",1726061232382,536870916]],[\"^3L\",[45,\"^2J\",\"^3M\",536870913]],[\"^3L\",[45,\"^3>\",\"bFL\",536870916]],[\"^3L\",[45,\"^3A\",41,536870913]],[\"^3L\",[45,\"^30\",41,536870913]],[\"^3L\",[45,\"^2[\",41,536870920]],[\"^3L\",[45,\"^1L\",41,536870919]],[\"^3L\",[45,\"^2M\",\"Urgent\",536870913]],[\"^3L\",[45,\"^:\",536870919,536870920]],[\"^3L\",[45,\"^35\",\"closed value\",536870913]],[\"^3L\",[45,\"^1>\",1726061232382,536870916]],[\"^3L\",[45,\"^17\",\"~u00000002-4458-8138-1000-000000000000\",536870913]],[\"^3L\",[45,\"^5\",\"^R\",536870913]],[\"^3L\",[45,\"^O\",true,536870913]],[\"^3L\",[45,\"^20\",41,536870913]],[\"^3L\",[45,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"priorityLvlUrgent\"],536870913]],[\"^3L\",[46,\"^23\",1726061232382,536870916]],[\"^3L\",[46,\"^2J\",\"^3M\",536870913]],[\"^3L\",[46,\"^3B\",\"deadline\",536870913]],[\"^3L\",[46,\"^3>\",\"bFM\",536870916]],[\"^3L\",[46,\"^2<\",[\"^ \",\"^3N\",\"~:date\",\"^3S\",true,\"^45\",\"~:block-below\"],536870913]],[\"^3L\",[46,\"^2M\",\"Deadline\",536870913]],[\"^3L\",[46,\"^:\",536870916,536870917]],[\"^3L\",[46,\"^35\",\"property\",536870913]],[\"^3L\",[46,\"^1>\",1726061232382,536870916]],[\"^3L\",[46,\"^17\",\"~u00000002-2149-5604-4000-000000000000\",536870913]],[\"^3L\",[46,\"^B\",\"^C\",536870913]],[\"^3L\",[46,\"^5\",\"^1Z\",536870913]],[\"^3L\",[46,\"^?\",true,536870913]],[\"^3L\",[46,\"^@\",\"^A\",536870913]],[\"^3L\",[46,\"^O\",true,536870913]],[\"^3L\",[47,\"^23\",1726061232382,536870916]],[\"^3L\",[47,\"^2J\",\"^3M\",536870913]],[\"^3L\",[47,\"^3B\",\"icon\",536870913]],[\"^3L\",[47,\"^3>\",\"bFN\",536870916]],[\"^3L\",[47,\"^2<\",[\"^ \",\"^3N\",\"^43\"],536870913]],[\"^3L\",[47,\"^2M\",\"Icon\",536870913]],[\"^3L\",[47,\"^:\",536870916,536870917]],[\"^3L\",[47,\"^35\",\"property\",536870913]],[\"^3L\",[47,\"^1>\",1726061232382,536870916]],[\"^3L\",[47,\"^17\",\"~u00000002-5891-2328-5000-000000000000\",536870913]],[\"^3L\",[47,\"^B\",\"^C\",536870913]],[\"^3L\",[47,\"^5\",\"^22\",536870913]],[\"^3L\",[47,\"^?\",true,536870913]],[\"^3L\",[47,\"^O\",true,536870913]],[\"^3L\",[48,\"^23\",1726061232382,536870916]],[\"^3L\",[48,\"^2J\",\"^3M\",536870913]],[\"^3L\",[48,\"^3B\",\"public\",536870913]],[\"^3L\",[48,\"^3>\",\"bFO\",536870916]],[\"^3L\",[48,\"^2<\",[\"^ \",\"^3N\",\"^3O\",\"^3P\",true,\"^3R\",\"^3Q\",\"^3S\",true],536870913]],[\"^3L\",[48,\"^2M\",\"public\",536870913]],[\"^3L\",[48,\"^:\",536870916,536870917]],[\"^3L\",[48,\"^35\",\"property\",536870913]],[\"^3L\",[48,\"^1>\",1726061232382,536870916]],[\"^3L\",[48,\"^17\",\"~u00000002-1705-3327-6500-000000000000\",536870913]],[\"^3L\",[48,\"^B\",\"^C\",536870913]],[\"^3L\",[48,\"^5\",\"^H\",536870913]],[\"^3L\",[48,\"^?\",true,536870913]],[\"^3L\",[48,\"^O\",true,536870913]],[\"^3L\",[49,\"^23\",1726061232382,536870916]],[\"^3L\",[49,\"^2J\",\"^3M\",536870913]],[\"^3L\",[49,\"^3B\",\"exclude-from-graph-view\",536870913]],[\"^3L\",[49,\"^3>\",\"bFP\",536870916]],[\"^3L\",[49,\"^2<\",[\"^ \",\"^3N\",\"^3O\",\"^3P\",true,\"^3R\",\"^3Q\",\"^3S\",true],536870913]],[\"^3L\",[49,\"^2M\",\"exclude-from-graph-view\",536870913]],[\"^3L\",[49,\"^:\",536870916,536870917]],[\"^3L\",[49,\"^35\",\"property\",536870913]],[\"^3L\",[49,\"^1>\",1726061232382,536870916]],[\"^3L\",[49,\"^17\",\"~u00000002-4524-3306-5000-000000000000\",536870913]],[\"^3L\",[49,\"^B\",\"^C\",536870913]],[\"^3L\",[49,\"^5\",\"^2@\",536870913]],[\"^3L\",[49,\"^?\",true,536870913]],[\"^3L\",[49,\"^O\",true,536870913]],[\"^3L\",[50,\"^23\",1726061232384,536870916]],[\"^3L\",[50,\"^2J\",\"^3M\",536870913]],[\"^3L\",[50,\"^3B\",\"description\",536870913]],[\"^3L\",[50,\"^3>\",\"bFQ\",536870916]],[\"^3L\",[50,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3S\",true],536870913]],[\"^3L\",[50,\"^2M\",\"Description\",536870913]],[\"^3L\",[50,\"^:\",536870916,536870917]],[\"^3L\",[50,\"^35\",\"property\",536870913]],[\"^3L\",[50,\"^1>\",1726061232384,536870916]],[\"^3L\",[50,\"^17\",\"~u00000002-3362-3620-0000-000000000000\",536870913]],[\"^3L\",[50,\"^B\",\"^C\",536870913]],[\"^3L\",[50,\"^5\",\"^2F\",536870913]],[\"^3L\",[50,\"^?\",true,536870913]],[\"^3L\",[50,\"^@\",\"^A\",536870913]],[\"^3L\",[50,\"^O\",true,536870913]],[\"^3L\",[51,\"^23\",1726061232384,536870916]],[\"^3L\",[51,\"^2J\",\"^3M\",536870913]],[\"^3L\",[51,\"^3B\",\"view type\",536870913]],[\"^3L\",[51,\"^3>\",\"bFR\",536870916]],[\"^3L\",[51,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3S\",false,\"^3P\",true],536870913]],[\"^3L\",[51,\"^2M\",\"View type\",536870913]],[\"^3L\",[51,\"^:\",536870919,536870920]],[\"^3L\",[51,\"^35\",\"property\",536870913]],[\"^3L\",[51,\"^1>\",1726061232384,536870916]],[\"^3L\",[51,\"^17\",\"~u00000002-2182-3760-7000-000000000000\",536870913]],[\"^3L\",[51,\"^B\",\"^C\",536870913]],[\"^3L\",[51,\"^5\",\"^12\",536870913]],[\"^3L\",[51,\"^?\",true,536870913]],[\"^3L\",[51,\"^@\",\"^A\",536870913]],[\"^3L\",[51,\"^O\",true,536870913]],[\"^3L\",[52,\"^1V\",51,536870913]],[\"^3L\",[52,\"^23\",1726061232384,536870916]],[\"^3L\",[52,\"^2J\",\"^3M\",536870913]],[\"^3L\",[52,\"^3>\",\"bFS\",536870916]],[\"^3L\",[52,\"^3A\",51,536870913]],[\"^3L\",[52,\"^30\",51,536870913]],[\"^3L\",[52,\"^2[\",51,536870920]],[\"^3L\",[52,\"^1L\",51,536870919]],[\"^3L\",[52,\"^2M\",\"Table View\",536870913]],[\"^3L\",[52,\"^:\",536870919,536870920]],[\"^3L\",[52,\"^35\",\"closed value\",536870913]],[\"^3L\",[52,\"^1>\",1726061232384,536870916]],[\"^3L\",[52,\"^17\",\"~u00000002-1942-5424-0000-000000000000\",536870913]],[\"^3L\",[52,\"^5\",\"^4\",536870913]],[\"^3L\",[52,\"^O\",true,536870913]],[\"^3L\",[52,\"^20\",51,536870913]],[\"^3L\",[53,\"^1V\",51,536870913]],[\"^3L\",[53,\"^23\",1726061232384,536870916]],[\"^3L\",[53,\"^2J\",\"^3M\",536870913]],[\"^3L\",[53,\"^3>\",\"bFT\",536870916]],[\"^3L\",[53,\"^3A\",51,536870913]],[\"^3L\",[53,\"^30\",51,536870913]],[\"^3L\",[53,\"^2[\",51,536870920]],[\"^3L\",[53,\"^1L\",51,536870919]],[\"^3L\",[53,\"^2M\",\"List View\",536870913]],[\"^3L\",[53,\"^:\",536870919,536870920]],[\"^3L\",[53,\"^35\",\"closed value\",536870913]],[\"^3L\",[53,\"^1>\",1726061232384,536870916]],[\"^3L\",[53,\"^17\",\"~u00000002-1164-8285-0200-000000000000\",536870913]],[\"^3L\",[53,\"^5\",\"^1D\",536870913]],[\"^3L\",[53,\"^O\",true,536870913]],[\"^3L\",[53,\"^20\",51,536870913]],[\"^3L\",[54,\"^23\",1726061232384,536870916]],[\"^3L\",[54,\"^2J\",\"^3M\",536870913]],[\"^3L\",[54,\"^3B\",\"sorting\",536870913]],[\"^3L\",[54,\"^3>\",\"bFU\",536870916]],[\"^3L\",[54,\"^2<\",[\"^ \",\"^3N\",\"^40\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[54,\"^2M\",\"sorting\",536870913]],[\"^3L\",[54,\"^:\",536870916,536870917]],[\"^3L\",[54,\"^35\",\"property\",536870913]],[\"^3L\",[54,\"^1>\",1726061232384,536870916]],[\"^3L\",[54,\"^17\",\"~u00000002-2081-0259-4000-000000000000\",536870913]],[\"^3L\",[54,\"^B\",\"^C\",536870913]],[\"^3L\",[54,\"^5\",\"^D\",536870913]],[\"^3L\",[54,\"^?\",true,536870913]],[\"^3L\",[54,\"^O\",true,536870913]],[\"^3L\",[55,\"^23\",1726061232384,536870916]],[\"^3L\",[55,\"^2J\",\"^3M\",536870913]],[\"^3L\",[55,\"^3B\",\"filters\",536870913]],[\"^3L\",[55,\"^3>\",\"bFV\",536870916]],[\"^3L\",[55,\"^2<\",[\"^ \",\"^3N\",\"^40\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[55,\"^2M\",\"filters\",536870913]],[\"^3L\",[55,\"^:\",536870916,536870917]],[\"^3L\",[55,\"^35\",\"property\",536870913]],[\"^3L\",[55,\"^1>\",1726061232384,536870916]],[\"^3L\",[55,\"^17\",\"~u00000002-1702-3936-3300-000000000000\",536870913]],[\"^3L\",[55,\"^B\",\"^C\",536870913]],[\"^3L\",[55,\"^5\",\"^2U\",536870913]],[\"^3L\",[55,\"^?\",true,536870913]],[\"^3L\",[55,\"^O\",true,536870913]],[\"^3L\",[56,\"^23\",1726061232384,536870916]],[\"^3L\",[56,\"^2J\",\"^3M\",536870913]],[\"^3L\",[56,\"^3B\",\"hidden-columns\",536870913]],[\"^3L\",[56,\"^3>\",\"bFW\",536870916]],[\"^3L\",[56,\"^2<\",[\"^ \",\"^3N\",\"^41\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[56,\"^2M\",\"hidden-columns\",536870913]],[\"^3L\",[56,\"^:\",536870916,536870917]],[\"^3L\",[56,\"^35\",\"property\",536870913]],[\"^3L\",[56,\"^1>\",1726061232384,536870916]],[\"^3L\",[56,\"^17\",\"~u00000002-9750-5719-2000-000000000000\",536870913]],[\"^3L\",[56,\"^B\",\"^U\",536870913]],[\"^3L\",[56,\"^5\",\"^1:\",536870913]],[\"^3L\",[56,\"^?\",true,536870913]],[\"^3L\",[56,\"^O\",true,536870913]],[\"^3L\",[57,\"^23\",1726061232384,536870916]],[\"^3L\",[57,\"^2J\",\"^3M\",536870913]],[\"^3L\",[57,\"^3B\",\"ordered-columns\",536870913]],[\"^3L\",[57,\"^3>\",\"bFX\",536870916]],[\"^3L\",[57,\"^2<\",[\"^ \",\"^3N\",\"^40\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[57,\"^2M\",\"ordered-columns\",536870913]],[\"^3L\",[57,\"^:\",536870916,536870917]],[\"^3L\",[57,\"^35\",\"property\",536870913]],[\"^3L\",[57,\"^1>\",1726061232384,536870916]],[\"^3L\",[57,\"^17\",\"~u00000002-1485-5871-0000-000000000000\",536870913]],[\"^3L\",[57,\"^B\",\"^C\",536870913]],[\"^3L\",[57,\"^5\",\"^34\",536870913]],[\"^3L\",[57,\"^?\",true,536870913]],[\"^3L\",[57,\"^O\",true,536870913]],[\"^3L\",[58,\"^23\",1726061232384,536870916]],[\"^3L\",[58,\"^2J\",\"^3M\",536870913]],[\"^3L\",[58,\"^3B\",\"view-for\",536870913]],[\"^3L\",[58,\"^3>\",\"bFY\",536870916]],[\"^3L\",[58,\"^2<\",[\"^ \",\"^3N\",\"^3U\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[58,\"^2M\",\"view-for\",536870913]],[\"^3L\",[58,\"^:\",536870916,536870917]],[\"^3L\",[58,\"^35\",\"property\",536870913]],[\"^3L\",[58,\"^1>\",1726061232384,536870916]],[\"^3L\",[58,\"^17\",\"~u00000002-3627-4319-0000-000000000000\",536870913]],[\"^3L\",[58,\"^B\",\"^C\",536870913]],[\"^3L\",[58,\"^5\",\"^2C\",536870913]],[\"^3L\",[58,\"^?\",true,536870913]],[\"^3L\",[58,\"^@\",\"^A\",536870913]],[\"^3L\",[58,\"^O\",true,536870913]],[\"^3L\",[59,\"^23\",1726061232384,536870916]],[\"^3L\",[59,\"^2J\",\"^3M\",536870913]],[\"^3L\",[59,\"^3B\",\"remote-metadata\",536870913]],[\"^3L\",[59,\"^3>\",\"bFZ\",536870916]],[\"^3L\",[59,\"^2<\",[\"^ \",\"^3N\",\"^43\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[59,\"^2M\",\"remote-metadata\",536870913]],[\"^3L\",[59,\"^:\",536870916,536870917]],[\"^3L\",[59,\"^35\",\"property\",536870913]],[\"^3L\",[59,\"^1>\",1726061232384,536870916]],[\"^3L\",[59,\"^17\",\"~u00000002-9907-5046-9000-000000000000\",536870913]],[\"^3L\",[59,\"^B\",\"^C\",536870913]],[\"^3L\",[59,\"^5\",\"^3=\",536870913]],[\"^3L\",[59,\"^?\",true,536870913]],[\"^3L\",[59,\"^O\",true,536870913]],[\"^3L\",[60,\"^23\",1726061232384,536870916]],[\"^3L\",[60,\"^2J\",\"^3M\",536870913]],[\"^3L\",[60,\"^3B\",\"query\",536870913]],[\"^3L\",[60,\"^2[\",4,536870920]],[\"^3L\",[60,\"^2[\",8,536870920]],[\"^3L\",[60,\"^1L\",4,536870919]],[\"^3L\",[60,\"^1L\",8,536870919]],[\"^3L\",[60,\"^2M\",\"Query\",536870913]],[\"^3L\",[60,\"^:\",536870919,536870920]],[\"^3L\",[60,\"^35\",\"class\",536870913]],[\"^3L\",[60,\"^1>\",1726061232384,536870916]],[\"^3L\",[60,\"^17\",\"~u00000002-2324-8016-6000-000000000000\",536870913]],[\"^3L\",[60,\"^5\",\"^3:\",536870913]],[\"^3L\",[60,\"^O\",true,536870913]],[\"^3L\",[60,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"search\"],536870913]],[\"^3L\",[60,\"^14\",4,536870913]],[\"^3L\",[61,\"^23\",1726061232384,536870916]],[\"^3L\",[61,\"^2J\",\"^3M\",536870913]],[\"^3L\",[61,\"^3B\",\"task\",536870913]],[\"^3L\",[61,\"^2[\",4,536870920]],[\"^3L\",[61,\"^2[\",8,536870920]],[\"^3L\",[61,\"^2[\",9,536870920]],[\"^3L\",[61,\"^2[\",34,536870920]],[\"^3L\",[61,\"^2[\",41,536870920]],[\"^3L\",[61,\"^2[\",46,536870920]],[\"^3L\",[61,\"^1L\",4,536870919]],[\"^3L\",[61,\"^1L\",8,536870919]],[\"^3L\",[61,\"^1L\",9,536870919]],[\"^3L\",[61,\"^1L\",34,536870919]],[\"^3L\",[61,\"^1L\",41,536870919]],[\"^3L\",[61,\"^1L\",46,536870919]],[\"^3L\",[61,\"^2M\",\"Task\",536870913]],[\"^3L\",[61,\"^:\",536870919,536870920]],[\"^3L\",[61,\"^35\",\"class\",536870913]],[\"^3L\",[61,\"^1>\",1726061232384,536870916]],[\"^3L\",[61,\"^17\",\"~u00000002-1282-1814-5700-000000000000\",536870913]],[\"^3L\",[61,\"^5\",\"^24\",536870913]],[\"^3L\",[61,\"^O\",true,536870913]],[\"^3L\",[61,\"^14\",4,536870913]],[\"^3L\",[61,\"^1;\",34,536870913]],[\"^3L\",[61,\"^1;\",41,536870913]],[\"^3L\",[61,\"^1;\",46,536870913]],[\"^3L\",[62,\"^23\",1726061232384,536870916]],[\"^3L\",[62,\"^2J\",\"^3M\",536870913]],[\"^3L\",[62,\"^3B\",\"card\",536870913]],[\"^3L\",[62,\"^2[\",4,536870920]],[\"^3L\",[62,\"^2[\",8,536870920]],[\"^3L\",[62,\"^1L\",4,536870919]],[\"^3L\",[62,\"^1L\",8,536870919]],[\"^3L\",[62,\"^2M\",\"Card\",536870913]],[\"^3L\",[62,\"^:\",536870919,536870920]],[\"^3L\",[62,\"^35\",\"class\",536870913]],[\"^3L\",[62,\"^1>\",1726061232384,536870916]],[\"^3L\",[62,\"^17\",\"~u00000002-1358-2811-0900-000000000000\",536870913]],[\"^3L\",[62,\"^5\",\"^1M\",536870913]],[\"^3L\",[62,\"^O\",true,536870913]],[\"^3L\",[62,\"^14\",4,536870913]],[\"^3L\",[63,\"^23\",1726061232384,536870916]],[\"^3L\",[63,\"^2J\",\"^3M\",536870913]],[\"^3L\",[63,\"^3B\",\"journal\",536870913]],[\"^3L\",[63,\"^2[\",4,536870920]],[\"^3L\",[63,\"^2[\",8,536870920]],[\"^3L\",[63,\"^1L\",4,536870919]],[\"^3L\",[63,\"^1L\",8,536870919]],[\"^3L\",[63,\"^2M\",\"Journal\",536870913]],[\"^3L\",[63,\"^:\",536870919,536870920]],[\"^3L\",[63,\"^35\",\"class\",536870913]],[\"^3L\",[63,\"^1>\",1726061232384,536870916]],[\"^3L\",[63,\"^17\",\"~u00000002-1979-7410-8100-000000000000\",536870913]],[\"^3L\",[63,\"^5\",\"^36\",536870913]],[\"^3L\",[63,\"^O\",true,536870913]],[\"^3L\",[63,\"^14\",4,536870913]],[\"^3L\",[63,\"^9\",\"MMM do, yyyy\",536870913]],[\"^3L\",[64,\"^17\",\"~u66e19b00-127a-4b8f-a3bc-26bd650d188b\",536870913]],[\"^3L\",[64,\"^M\",[\"^ \"],536870913]],[\"^3L\",[64,\"^6\",\"~m1726061312400\",536870913]],[\"^3L\",[64,\"^1X\",\"~m1726061312400\",536870913]],[\"^3L\",[64,\"^3C\",\"logseq/config.edn\",536870913]],[\"^3L\",[65,\"^17\",\"~u66e19b00-cc6a-4160-8170-01726bcee4e5\",536870913]],[\"^3L\",[65,\"^M\",\"\",536870913]],[\"^3L\",[65,\"^6\",\"~m1726061312400\",536870913]],[\"^3L\",[65,\"^1X\",\"~m1726061312400\",536870913]],[\"^3L\",[65,\"^3C\",\"logseq/custom.css\",536870913]],[\"^3L\",[66,\"^17\",\"~u66e19b00-4097-4a4a-9388-3506f9b87b57\",536870913]],[\"^3L\",[66,\"^M\",\"\",536870913]],[\"^3L\",[66,\"^6\",\"~m1726061312400\",536870913]],[\"^3L\",[66,\"^1X\",\"~m1726061312400\",536870913]],[\"^3L\",[66,\"^3C\",\"logseq/custom.js\",536870913]],[\"^3L\",[67,\"^23\",1726061312404,536870913]],[\"^3L\",[67,\"^2J\",\"^3M\",536870913]],[\"^3L\",[67,\"^3B\",\"contents\",536870913]],[\"^3L\",[67,\"^2M\",\"Contents\",536870913]],[\"^3L\",[67,\"^35\",\"page\",536870913]],[\"^3L\",[67,\"^1>\",1726061312404,536870913]],[\"^3L\",[67,\"^17\",\"~u66e19b00-30ea-42a0-b3f0-7b04b8ce64e3\",536870913]],[\"^3L\",[67,\"^O\",true,536870913]],[\"^3L\",[68,\"^23\",1726061312482,536870914]],[\"^3L\",[68,\"^2J\",\"^3M\",536870914]],[\"^3L\",[68,\"^3B\",\"$$$views\",536870914]],[\"^3L\",[68,\"^2M\",\"$$$views\",536870914]],[\"^3L\",[68,\"^:\",536870919,536870920]],[\"^3L\",[68,\"^35\",\"hidden\",536870914]],[\"^3L\",[68,\"^1>\",1726061312482,536870914]],[\"^3L\",[68,\"^17\",\"~u66e19b00-4302-4574-b7a9-d866ece76c59\",536870914]],[\"^3L\",[69,\"^23\",1726061312482,536870914]],[\"^3L\",[69,\"^2J\",\"^3M\",536870914]],[\"^3L\",[69,\"^3>\",\"bGX\",536870914]],[\"^3L\",[69,\"^3A\",68,536870914]],[\"^3L\",[69,\"^30\",68,536870914]],[\"^3L\",[69,\"^2[\",68,536870920]],[\"^3L\",[69,\"^1L\",68,536870919]],[\"^3L\",[69,\"^2M\",\"All Pages Default View\",536870914]],[\"^3L\",[69,\"^:\",536870919,536870920]],[\"^3L\",[69,\"^1>\",1726061312482,536870914]],[\"^3L\",[69,\"^17\",\"~u66e19b00-e0a4-4089-af95-0876672c54e6\",536870914]],[\"^3L\",[69,\"^2C\",68,536870914]],[\"^3L\",[70,\"^23\",1726061232560,536870916]],[\"^3L\",[70,\"^2J\",\"^3M\",536870916]],[\"^3L\",[70,\"^2G\",20240911,536870916]],[\"^3L\",[70,\"^3B\",\"sep 11th, 2024\",536870916]],[\"^3L\",[70,\"^2[\",7,536870920]],[\"^3L\",[70,\"^2[\",63,536870920]],[\"^3L\",[70,\"^1L\",7,536870919]],[\"^3L\",[70,\"^1L\",63,536870919]],[\"^3L\",[70,\"^Y\",63,536870916]],[\"^3L\",[70,\"^2M\",\"Sep 11th, 2024\",536870916]],[\"^3L\",[70,\"^:\",536870919,536870920]],[\"^3L\",[70,\"^35\",\"journal\",536870916]],[\"^3L\",[70,\"^1>\",1726061232560,536870916]],[\"^3L\",[70,\"^17\",\"~u00000001-2024-0911-0000-000000000000\",536870916]],[\"^3L\",[71,\"^23\",1726061232433,536870916]],[\"^3L\",[71,\"^2J\",\"^3M\",536870916]],[\"^3L\",[71,\"^3>\",\"bFa\",536870916]],[\"^3L\",[71,\"^3A\",72,536870916]],[\"^3L\",[71,\"^30\",72,536870916]],[\"^3L\",[71,\"^2[\",72,536870920]],[\"^3L\",[71,\"^1L\",72,536870919]],[\"^3L\",[71,\"^2M\",\"All Pages Default View\",536870916]],[\"^3L\",[71,\"^:\",536870919,536870920]],[\"^3L\",[71,\"^1>\",1726061232433,536870916]],[\"^3L\",[71,\"^17\",\"~u66e19ab0-2404-41b2-9320-56f947027826\",536870916]],[\"^3L\",[71,\"^2C\",72,536870916]],[\"^3L\",[72,\"^23\",1726061232433,536870916]],[\"^3L\",[72,\"^2J\",\"^3M\",536870916]],[\"^3L\",[72,\"^3B\",\"$$$views\",536870916]],[\"^3L\",[72,\"^2M\",\"$$$views\",536870916]],[\"^3L\",[72,\"^:\",536870919,536870920]],[\"^3L\",[72,\"^35\",\"hidden\",536870916]],[\"^3L\",[72,\"^1>\",1726061232433,536870916]],[\"^3L\",[72,\"^17\",\"~u66e19ab0-4bdf-4ef3-bbbe-acf6d9a7af1f\",536870916]],[\"^3L\",[73,\"^23\",1726061232561,536870916]],[\"^3L\",[73,\"^2J\",\"^3M\",536870916]],[\"^3L\",[73,\"^3>\",\"a0\",536870916]],[\"^3L\",[73,\"^3A\",70,536870916]],[\"^3L\",[73,\"^30\",70,536870916]],[\"^3L\",[73,\"^2M\",\"\",536870916]],[\"^3L\",[73,\"^:\",536870916,536870917]],[\"^3L\",[73,\"^1>\",1726061232561,536870916]],[\"^3L\",[73,\"^17\",\"~u66e19ab0-867a-4a68-a1c8-595db0c5693b\",536870916]],[\"^3L\",[74,\"^23\",1726061232385,536870916]],[\"^3L\",[74,\"^2J\",\"^3M\",536870916]],[\"^3L\",[74,\"^3B\",\"contents\",536870916]],[\"^3L\",[74,\"^2M\",\"Contents\",536870916]],[\"^3L\",[74,\"^:\",536870916,536870917]],[\"^3L\",[74,\"^35\",\"page\",536870916]],[\"^3L\",[74,\"^1>\",1726061232385,536870916]],[\"^3L\",[74,\"^17\",\"~u66e19ab0-d197-4e4f-83b0-0894bef1b6c4\",536870916]],[\"^3L\",[74,\"^O\",true,536870916]],[\"^3L\",[75,\"^:\",536870916,536870917]],[\"^3L\",[75,\"^5\",\"^1K\",536870916]],[\"^3L\",[75,\"^X\",\"f5df6b98-74ac-4d2e-9cd8-8f80bd2fb524\",536870916]]]]]]") + "[\"~#datascript/DB\",[\"^ \",\"~:schema\",[\"^ \",\"~i32\",\"~:logseq.property.tldraw/shape\",\"~:logseq.property.view/type.table\",[\"^ \",\"~:db/ident\",\"^4\"],\"~:file/created-at\",[\"^ \"],\"~i1\",\"~:logseq.kv/db-type\",\"~i33\",\"~:logseq.property.journal/title-format\",\"~:block/tx-id\",[\"^ \"],\"~i2\",\"~:logseq.kv/schema-version\",\"~i34\",\"~:logseq.task/status\",\"~:logseq.property.pdf/file-path\",[\"^ \",\"~:db/index\",true,\"~:db/valueType\",\"~:db.type/ref\",\"~:db/cardinality\",\"~:db.cardinality/one\",\"^5\",\"^>\"],\"~:logseq.property.table/sorting\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^D\"],\"~i3\",\"~:logseq.property/empty-placeholder\",\"~i35\",\"~:logseq.task/status.backlog\",\"~:logseq.property/public\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^H\"],\"~i4\",\"~:logseq.class/Root\",\"~i36\",\"~:logseq.task/status.todo\",\"~:logseq.task/priority.low\",[\"^ \",\"^5\",\"^L\"],\"~:file/content\",[\"^ \"],\"~:logseq.task/priority.high\",[\"^ \",\"^5\",\"^N\"],\"~i5\",\"~:logseq.property/built-in?\",\"~i37\",\"~:logseq.task/status.doing\",\"~:logseq.task/priority.urgent\",[\"^ \",\"^5\",\"^R\"],\"~:logseq.property/hl-color\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^S\"],\"~:block/alias\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"~:db.cardinality/many\",\"^5\",\"^T\"],\"~i6\",\"^T\",\"~i38\",\"~:logseq.task/status.in-review\",\"~:kv/value\",[\"^ \"],\"~i7\",\"~:block/tags\",\"~i39\",\"~:logseq.task/status.done\",\"~:logseq.property.linked-references/includes\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^U\",\"^5\",\"^10\"],\"~:block/link\",[\"^ \",\"^@\",\"^A\",\"^?\",true],\"~:logseq.property.view/type\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^12\"],\"~:logseq.property/heading\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^13\"],\"~i8\",\"~:logseq.property/parent\",\"~i40\",\"~:logseq.task/status.canceled\",\"~:block/uuid\",[\"^ \",\"~:db/unique\",\"~:db.unique/identity\"],\"~:logseq.property.table/hidden-columns\",[\"^ \",\"^?\",true,\"^B\",\"^U\",\"^5\",\"^1:\"],\"~i9\",\"~:logseq.property.class/properties\",\"~i41\",\"~:logseq.task/priority\",\"~:block/updated-at\",[\"^ \",\"^?\",true],\"~:asset/uuid\",[\"^ \",\"^18\",\"^19\"],\"~:logseq.property/query-sort-by\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^1@\"],\"~i10\",\"~:logseq.property.class/hide-from-node\",\"~i42\",\"^L\",\"~:logseq.property.view/type.list\",[\"^ \",\"^5\",\"^1D\"],\"~:logseq.task/priority.medium\",[\"^ \",\"^5\",\"^1E\"],\"~i11\",\"~:logseq.property/page-tags\",\"~:file/size\",[\"^ \"],\"~i43\",\"^1E\",\"~i75\",\"~:logseq.kv/graph-uuid\",\"~:block/refs\",[\"^ \",\"^@\",\"^A\",\"^B\",\"^U\"],\"~:logseq.class/Card\",[\"^ \",\"^5\",\"^1M\"],\"^1=\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^1=\"],\"~i12\",\"~:logseq.property/background-color\",\"~i44\",\"^N\",\"^Q\",[\"^ \",\"^5\",\"^Q\"],\"^;\",[\"^ \",\"^5\",\"^;\"],\"~:logseq.property.pdf/hl-page\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^1Q\"],\"~:logseq.property/hl-type\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^1R\"],\"~i13\",\"~:logseq.property/background-image\",\"~i45\",\"^R\",\"~:block/closed-value-property\",[\"^ \",\"^@\",\"^A\",\"^B\",\"^U\"],\"^W\",[\"^ \",\"^5\",\"^W\"],\"~i14\",\"^13\",\"~:file/last-modified-at\",[\"^ \"],\"~i46\",\"~:logseq.task/deadline\",\"^[\",[\"^ \",\"^5\",\"^[\"],\"^1;\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^U\",\"^5\",\"^1;\"],\"^16\",[\"^ \",\"^5\",\"^16\"],\"~i15\",\"~:logseq.property/created-from-property\",\"~i47\",\"~:logseq.property/icon\",\"~:block/created-at\",[\"^ \",\"^?\",true],\"^1G\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^U\",\"^5\",\"^1G\"],\"^K\",[\"^ \",\"^5\",\"^K\"],\"~:logseq.class/Task\",[\"^ \",\"^5\",\"^24\"],\"~:block/collapsed?\",[\"^ \"],\"~:logseq.property.tldraw/page\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^26\"],\"~i16\",\"~:logseq.property/query-table\",\"~:logseq.property/query-sort-desc\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^29\"],\"~i48\",\"^H\",\"~:property.value/content\",[\"^ \"],\"^O\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^O\"],\"~:block/schema\",[\"^ \"],\"~i17\",\"~:logseq.property/query-properties\",\"~i49\",\"~:logseq.property/exclude-from-graph-view\",\"^1B\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^1B\"],\"~:logseq.property.linked-references/excludes\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^U\",\"^5\",\"^2A\"],\"^2>\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^2>\"],\"~:logseq.property/ls-type\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^2B\"],\"~:logseq.property/view-for\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^2C\"],\"~i18\",\"^1@\",\"~i50\",\"~:logseq.property/description\",\"^1O\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^1O\"],\"~:block/journal-day\",[\"^ \",\"^?\",true],\"~i19\",\"^29\",\"^I\",[\"^ \",\"^5\",\"^I\"],\"~i51\",\"^12\",\"~:block/format\",[\"^ \"],\"^E\",[\"^ \",\"^5\",\"^E\"],\"~i20\",\"^2B\",\"~i52\",\"^4\",\"^1K\",[\"^ \",\"^5\",\"^1K\"],\"^Y\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^U\",\"^5\",\"^Y\"],\"~:block/title\",[\"^ \",\"^?\",true],\"^3\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^3\"],\"~:asset/meta\",[\"^ \"],\"^1Z\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^1Z\"],\"~i21\",\"^1R\",\"~i53\",\"^1D\",\"^20\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^20\"],\"^22\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^22\"],\"~i22\",\"^S\",\"~i54\",\"^D\",\"~i23\",\"^1Q\",\"~i55\",\"~:logseq.property.table/filters\",\"~:logseq.property/order-list-type\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^2V\"],\"^2@\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^2@\"],\"~i24\",\"~:logseq.property.pdf/hl-stamp\",\"~i56\",\"^1:\",\"^1T\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^1T\"],\"^5\",[\"^ \",\"^18\",\"^19\"],\"~:property/schema.classes\",[\"^ \",\"^@\",\"^A\",\"^B\",\"^U\"],\"^2F\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^2F\"],\"~:block/path-refs\",[\"^ \",\"^@\",\"^A\",\"^B\",\"^U\"],\"~:block/parent\",[\"^ \",\"^@\",\"^A\",\"^?\",true],\"~i25\",\"~:logseq.property.pdf/hl-value\",\"~i57\",\"~:logseq.property.table/ordered-columns\",\"~:block/type\",[\"^ \",\"^?\",true],\"~:logseq.class/Journal\",[\"^ \",\"^5\",\"^36\"],\"~i26\",\"~:logseq.property.pdf/file\",\"~i58\",\"^2C\",\"^32\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^32\"],\"^28\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^28\"],\"~:logseq.class/Query\",[\"^ \",\"^5\",\"^3:\"],\"~i27\",\"^>\",\"~i59\",\"~:logseq.property.asset/remote-metadata\",\"^3=\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^3=\"],\"^2X\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^2X\"],\"~:block/order\",[\"^ \",\"^?\",true],\"^=\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^=\"],\"~i28\",\"^2V\",\"~i60\",\"^3:\",\"~:block/page\",[\"^ \",\"^@\",\"^A\",\"^?\",true],\"~:block/name\",[\"^ \",\"^?\",true],\"^34\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^34\"],\"~:file/path\",[\"^ \",\"^18\",\"^19\"],\"~i29\",\"^10\",\"~i61\",\"^24\",\"^G\",[\"^ \",\"^5\",\"^G\"],\"^14\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^14\"],\"~i30\",\"^2A\",\"~i62\",\"^1M\",\"^38\",[\"^ \",\"^?\",true,\"^@\",\"^A\",\"^B\",\"^C\",\"^5\",\"^38\"],\"^9\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^9\"],\"~i31\",\"^26\",\"~i63\",\"^36\",\"^7\",[\"^ \",\"^5\",\"^7\"],\"^2U\",[\"^ \",\"^?\",true,\"^B\",\"^C\",\"^5\",\"^2U\"]],\"~:datoms\",[\"~#list\",[[\"~#datascript/Datom\",[1,\"^5\",\"^7\",536870913]],[\"^3L\",[1,\"^X\",\"db\",536870913]],[\"^3L\",[2,\"^5\",\"^;\",536870913]],[\"^3L\",[2,\"^X\",20,536870913]],[\"^3L\",[3,\"^5\",\"^E\",536870913]],[\"^3L\",[4,\"^23\",1726061232384,536870916]],[\"^3L\",[4,\"^2J\",\"~:markdown\",536870913]],[\"^3L\",[4,\"^3B\",\"root tag\",536870913]],[\"^3L\",[4,\"^2M\",\"Root Tag\",536870913]],[\"^3L\",[4,\"^:\",536870916,536870917]],[\"^3L\",[4,\"^35\",\"class\",536870913]],[\"^3L\",[4,\"^1>\",1726061232384,536870916]],[\"^3L\",[4,\"^17\",\"~u00000002-2737-8382-7000-000000000000\",536870913]],[\"^3L\",[4,\"^5\",\"^I\",536870913]],[\"^3L\",[4,\"^O\",true,536870913]],[\"^3L\",[5,\"^23\",1726061232380,536870916]],[\"^3L\",[5,\"^2J\",\"^3M\",536870913]],[\"^3L\",[5,\"^3B\",\"built-in?\",536870913]],[\"^3L\",[5,\"^3>\",\"bEh\",536870916]],[\"^3L\",[5,\"^2<\",[\"^ \",\"~:type\",\"~:checkbox\",\"~:hide?\",true],536870913]],[\"^3L\",[5,\"^2M\",\"built-in?\",536870913]],[\"^3L\",[5,\"^:\",536870916,536870917]],[\"^3L\",[5,\"^35\",\"property\",536870913]],[\"^3L\",[5,\"^1>\",1726061232380,536870916]],[\"^3L\",[5,\"^17\",\"~u00000002-1125-9581-6000-000000000000\",536870913]],[\"^3L\",[5,\"^B\",\"^C\",536870913]],[\"^3L\",[5,\"^5\",\"^O\",536870913]],[\"^3L\",[5,\"^?\",true,536870913]],[\"^3L\",[5,\"^O\",true,536870913]],[\"^3L\",[6,\"^23\",1726061232380,536870916]],[\"^3L\",[6,\"^2J\",\"^3M\",536870913]],[\"^3L\",[6,\"^3B\",\"alias\",536870913]],[\"^3L\",[6,\"^3>\",\"bEi\",536870916]],[\"^3L\",[6,\"^2<\",[\"^ \",\"^3N\",\"~:page\",\"~:view-context\",\"^3Q\",\"~:public?\",true],536870913]],[\"^3L\",[6,\"^2M\",\"Alias\",536870913]],[\"^3L\",[6,\"^:\",536870916,536870917]],[\"^3L\",[6,\"^35\",\"property\",536870913]],[\"^3L\",[6,\"^1>\",1726061232380,536870916]],[\"^3L\",[6,\"^17\",\"~u00000002-2112-6446-9900-000000000000\",536870913]],[\"^3L\",[6,\"^B\",\"^U\",536870913]],[\"^3L\",[6,\"^5\",\"^T\",536870913]],[\"^3L\",[6,\"^?\",true,536870913]],[\"^3L\",[6,\"^@\",\"^A\",536870913]],[\"^3L\",[6,\"^O\",true,536870913]],[\"^3L\",[7,\"^23\",1726061232380,536870916]],[\"^3L\",[7,\"^2J\",\"^3M\",536870913]],[\"^3L\",[7,\"^3B\",\"tags\",536870913]],[\"^3L\",[7,\"^3>\",\"bEj\",536870916]],[\"^3L\",[7,\"^2<\",[\"^ \",\"^3N\",\"~:class\",\"^3S\",true],536870913]],[\"^3L\",[7,\"^2M\",\"Tags\",536870913]],[\"^3L\",[7,\"^:\",536870916,536870917]],[\"^3L\",[7,\"^35\",\"property\",536870913]],[\"^3L\",[7,\"^1>\",1726061232380,536870916]],[\"^3L\",[7,\"^17\",\"~u00000002-1814-9483-4000-000000000000\",536870913]],[\"^3L\",[7,\"^B\",\"^U\",536870913]],[\"^3L\",[7,\"^5\",\"^Y\",536870913]],[\"^3L\",[7,\"^?\",true,536870913]],[\"^3L\",[7,\"^@\",\"^A\",536870913]],[\"^3L\",[7,\"^O\",true,536870913]],[\"^3L\",[7,\"^2Z\",4,536870913]],[\"^3L\",[8,\"^23\",1726061232380,536870916]],[\"^3L\",[8,\"^2J\",\"^3M\",536870913]],[\"^3L\",[8,\"^3B\",\"parent\",536870913]],[\"^3L\",[8,\"^3>\",\"bEk\",536870916]],[\"^3L\",[8,\"^2<\",[\"^ \",\"^3N\",\"~:node\",\"^3S\",true,\"^3R\",\"^3Q\"],536870913]],[\"^3L\",[8,\"^2M\",\"Parent\",536870913]],[\"^3L\",[8,\"^:\",536870916,536870917]],[\"^3L\",[8,\"^35\",\"property\",536870913]],[\"^3L\",[8,\"^1>\",1726061232380,536870916]],[\"^3L\",[8,\"^17\",\"~u00000002-1779-8450-9000-000000000000\",536870913]],[\"^3L\",[8,\"^B\",\"^C\",536870913]],[\"^3L\",[8,\"^5\",\"^14\",536870913]],[\"^3L\",[8,\"^?\",true,536870913]],[\"^3L\",[8,\"^@\",\"^A\",536870913]],[\"^3L\",[8,\"^O\",true,536870913]],[\"^3L\",[9,\"^23\",1726061232380,536870916]],[\"^3L\",[9,\"^2J\",\"^3M\",536870913]],[\"^3L\",[9,\"^3B\",\"tag properties\",536870913]],[\"^3L\",[9,\"^3>\",\"bEl\",536870916]],[\"^3L\",[9,\"^2<\",[\"^ \",\"^3N\",\"~:property\",\"^3S\",true,\"^3R\",\"~:never\"],536870913]],[\"^3L\",[9,\"^2M\",\"Tag properties\",536870913]],[\"^3L\",[9,\"^:\",536870916,536870917]],[\"^3L\",[9,\"^35\",\"property\",536870913]],[\"^3L\",[9,\"^1>\",1726061232380,536870916]],[\"^3L\",[9,\"^17\",\"~u00000002-2123-7120-5000-000000000000\",536870913]],[\"^3L\",[9,\"^B\",\"^U\",536870913]],[\"^3L\",[9,\"^5\",\"^1;\",536870913]],[\"^3L\",[9,\"^?\",true,536870913]],[\"^3L\",[9,\"^@\",\"^A\",536870913]],[\"^3L\",[9,\"^O\",true,536870913]],[\"^3L\",[10,\"^23\",1726061232380,536870916]],[\"^3L\",[10,\"^2J\",\"^3M\",536870913]],[\"^3L\",[10,\"^3B\",\"hide from node\",536870913]],[\"^3L\",[10,\"^3>\",\"bEm\",536870916]],[\"^3L\",[10,\"^2<\",[\"^ \",\"^3N\",\"^3O\",\"^3S\",true,\"^3R\",\"^3T\"],536870913]],[\"^3L\",[10,\"^2M\",\"Hide from node\",536870913]],[\"^3L\",[10,\"^:\",536870916,536870917]],[\"^3L\",[10,\"^35\",\"property\",536870913]],[\"^3L\",[10,\"^1>\",1726061232380,536870916]],[\"^3L\",[10,\"^17\",\"~u00000002-2610-3727-0000-000000000000\",536870913]],[\"^3L\",[10,\"^B\",\"^C\",536870913]],[\"^3L\",[10,\"^5\",\"^1B\",536870913]],[\"^3L\",[10,\"^?\",true,536870913]],[\"^3L\",[10,\"^O\",true,536870913]],[\"^3L\",[11,\"^23\",1726061232381,536870916]],[\"^3L\",[11,\"^2J\",\"^3M\",536870913]],[\"^3L\",[11,\"^3B\",\"pagetags\",536870913]],[\"^3L\",[11,\"^3>\",\"bEn\",536870916]],[\"^3L\",[11,\"^2<\",[\"^ \",\"^3N\",\"^3Q\",\"^3S\",true,\"^3R\",\"^3Q\"],536870913]],[\"^3L\",[11,\"^2M\",\"pageTags\",536870913]],[\"^3L\",[11,\"^:\",536870916,536870917]],[\"^3L\",[11,\"^35\",\"property\",536870913]],[\"^3L\",[11,\"^1>\",1726061232381,536870916]],[\"^3L\",[11,\"^17\",\"~u00000002-2133-5311-8500-000000000000\",536870913]],[\"^3L\",[11,\"^B\",\"^U\",536870913]],[\"^3L\",[11,\"^5\",\"^1G\",536870913]],[\"^3L\",[11,\"^?\",true,536870913]],[\"^3L\",[11,\"^@\",\"^A\",536870913]],[\"^3L\",[11,\"^O\",true,536870913]],[\"^3L\",[12,\"^23\",1726061232381,536870916]],[\"^3L\",[12,\"^2J\",\"^3M\",536870913]],[\"^3L\",[12,\"^3B\",\"background-color\",536870913]],[\"^3L\",[12,\"^3>\",\"bEo\",536870916]],[\"^3L\",[12,\"^2<\",[\"^ \",\"^3N\",\"~:default\",\"^3P\",true],536870913]],[\"^3L\",[12,\"^2M\",\"background-color\",536870913]],[\"^3L\",[12,\"^:\",536870916,536870917]],[\"^3L\",[12,\"^35\",\"property\",536870913]],[\"^3L\",[12,\"^1>\",1726061232381,536870916]],[\"^3L\",[12,\"^17\",\"~u00000002-5191-2660-6000-000000000000\",536870913]],[\"^3L\",[12,\"^B\",\"^C\",536870913]],[\"^3L\",[12,\"^5\",\"^1O\",536870913]],[\"^3L\",[12,\"^?\",true,536870913]],[\"^3L\",[12,\"^@\",\"^A\",536870913]],[\"^3L\",[12,\"^O\",true,536870913]],[\"^3L\",[13,\"^23\",1726061232381,536870916]],[\"^3L\",[13,\"^2J\",\"^3M\",536870913]],[\"^3L\",[13,\"^3B\",\"background-image\",536870913]],[\"^3L\",[13,\"^3>\",\"bEp\",536870916]],[\"^3L\",[13,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3R\",\"~:block\",\"^3S\",true],536870913]],[\"^3L\",[13,\"^2M\",\"background-image\",536870913]],[\"^3L\",[13,\"^:\",536870916,536870917]],[\"^3L\",[13,\"^35\",\"property\",536870913]],[\"^3L\",[13,\"^1>\",1726061232381,536870916]],[\"^3L\",[13,\"^17\",\"~u00000002-2513-1712-8000-000000000000\",536870913]],[\"^3L\",[13,\"^B\",\"^C\",536870913]],[\"^3L\",[13,\"^5\",\"^1T\",536870913]],[\"^3L\",[13,\"^?\",true,536870913]],[\"^3L\",[13,\"^@\",\"^A\",536870913]],[\"^3L\",[13,\"^O\",true,536870913]],[\"^3L\",[14,\"^23\",1726061232381,536870916]],[\"^3L\",[14,\"^2J\",\"^3M\",536870913]],[\"^3L\",[14,\"^3B\",\"heading\",536870913]],[\"^3L\",[14,\"^3>\",\"bEq\",536870916]],[\"^3L\",[14,\"^2<\",[\"^ \",\"^3N\",\"~:any\",\"^3P\",true],536870913]],[\"^3L\",[14,\"^2M\",\"heading\",536870913]],[\"^3L\",[14,\"^:\",536870916,536870917]],[\"^3L\",[14,\"^35\",\"property\",536870913]],[\"^3L\",[14,\"^1>\",1726061232381,536870916]],[\"^3L\",[14,\"^17\",\"~u00000002-1858-7494-1500-000000000000\",536870913]],[\"^3L\",[14,\"^B\",\"^C\",536870913]],[\"^3L\",[14,\"^5\",\"^13\",536870913]],[\"^3L\",[14,\"^?\",true,536870913]],[\"^3L\",[14,\"^O\",true,536870913]],[\"^3L\",[15,\"^23\",1726061232381,536870916]],[\"^3L\",[15,\"^2J\",\"^3M\",536870913]],[\"^3L\",[15,\"^3B\",\"created-from-property\",536870913]],[\"^3L\",[15,\"^3>\",\"bEr\",536870916]],[\"^3L\",[15,\"^2<\",[\"^ \",\"^3N\",\"~:entity\",\"^3P\",true],536870913]],[\"^3L\",[15,\"^2M\",\"created-from-property\",536870913]],[\"^3L\",[15,\"^:\",536870916,536870917]],[\"^3L\",[15,\"^35\",\"property\",536870913]],[\"^3L\",[15,\"^1>\",1726061232381,536870916]],[\"^3L\",[15,\"^17\",\"~u00000002-8618-9226-7000-000000000000\",536870913]],[\"^3L\",[15,\"^B\",\"^C\",536870913]],[\"^3L\",[15,\"^5\",\"^20\",536870913]],[\"^3L\",[15,\"^?\",true,536870913]],[\"^3L\",[15,\"^@\",\"^A\",536870913]],[\"^3L\",[15,\"^O\",true,536870913]],[\"^3L\",[16,\"^23\",1726061232381,536870916]],[\"^3L\",[16,\"^2J\",\"^3M\",536870913]],[\"^3L\",[16,\"^3B\",\"query-table\",536870913]],[\"^3L\",[16,\"^3>\",\"bEs\",536870916]],[\"^3L\",[16,\"^2<\",[\"^ \",\"^3N\",\"^3O\",\"^3P\",true],536870913]],[\"^3L\",[16,\"^2M\",\"query-table\",536870913]],[\"^3L\",[16,\"^:\",536870916,536870917]],[\"^3L\",[16,\"^35\",\"property\",536870913]],[\"^3L\",[16,\"^1>\",1726061232381,536870916]],[\"^3L\",[16,\"^17\",\"~u00000002-1109-5556-5400-000000000000\",536870913]],[\"^3L\",[16,\"^B\",\"^C\",536870913]],[\"^3L\",[16,\"^5\",\"^28\",536870913]],[\"^3L\",[16,\"^?\",true,536870913]],[\"^3L\",[16,\"^O\",true,536870913]],[\"^3L\",[17,\"^23\",1726061232381,536870916]],[\"^3L\",[17,\"^2J\",\"^3M\",536870913]],[\"^3L\",[17,\"^3B\",\"query-properties\",536870913]],[\"^3L\",[17,\"^3>\",\"bEt\",536870916]],[\"^3L\",[17,\"^2<\",[\"^ \",\"^3N\",\"~:coll\",\"^3P\",true],536870913]],[\"^3L\",[17,\"^2M\",\"query-properties\",536870913]],[\"^3L\",[17,\"^:\",536870916,536870917]],[\"^3L\",[17,\"^35\",\"property\",536870913]],[\"^3L\",[17,\"^1>\",1726061232381,536870916]],[\"^3L\",[17,\"^17\",\"~u00000002-1976-9699-3500-000000000000\",536870913]],[\"^3L\",[17,\"^B\",\"^C\",536870913]],[\"^3L\",[17,\"^5\",\"^2>\",536870913]],[\"^3L\",[17,\"^?\",true,536870913]],[\"^3L\",[17,\"^O\",true,536870913]],[\"^3L\",[18,\"^23\",1726061232381,536870916]],[\"^3L\",[18,\"^2J\",\"^3M\",536870913]],[\"^3L\",[18,\"^3B\",\"query-sort-by\",536870913]],[\"^3L\",[18,\"^3>\",\"bEu\",536870916]],[\"^3L\",[18,\"^2<\",[\"^ \",\"^3N\",\"~:keyword\",\"^3P\",true],536870913]],[\"^3L\",[18,\"^2M\",\"query-sort-by\",536870913]],[\"^3L\",[18,\"^:\",536870916,536870917]],[\"^3L\",[18,\"^35\",\"property\",536870913]],[\"^3L\",[18,\"^1>\",1726061232381,536870916]],[\"^3L\",[18,\"^17\",\"~u00000002-1579-0446-1700-000000000000\",536870913]],[\"^3L\",[18,\"^B\",\"^C\",536870913]],[\"^3L\",[18,\"^5\",\"^1@\",536870913]],[\"^3L\",[18,\"^?\",true,536870913]],[\"^3L\",[18,\"^O\",true,536870913]],[\"^3L\",[19,\"^23\",1726061232381,536870916]],[\"^3L\",[19,\"^2J\",\"^3M\",536870913]],[\"^3L\",[19,\"^3B\",\"query-sort-desc\",536870913]],[\"^3L\",[19,\"^3>\",\"bEv\",536870916]],[\"^3L\",[19,\"^2<\",[\"^ \",\"^3N\",\"^3O\",\"^3P\",true],536870913]],[\"^3L\",[19,\"^2M\",\"query-sort-desc\",536870913]],[\"^3L\",[19,\"^:\",536870916,536870917]],[\"^3L\",[19,\"^35\",\"property\",536870913]],[\"^3L\",[19,\"^1>\",1726061232381,536870916]],[\"^3L\",[19,\"^17\",\"~u00000002-1147-3623-2000-000000000000\",536870913]],[\"^3L\",[19,\"^B\",\"^C\",536870913]],[\"^3L\",[19,\"^5\",\"^29\",536870913]],[\"^3L\",[19,\"^?\",true,536870913]],[\"^3L\",[19,\"^O\",true,536870913]],[\"^3L\",[20,\"^23\",1726061232381,536870916]],[\"^3L\",[20,\"^2J\",\"^3M\",536870913]],[\"^3L\",[20,\"^3B\",\"ls-type\",536870913]],[\"^3L\",[20,\"^3>\",\"bEw\",536870916]],[\"^3L\",[20,\"^2<\",[\"^ \",\"^3N\",\"^41\",\"^3P\",true],536870913]],[\"^3L\",[20,\"^2M\",\"ls-type\",536870913]],[\"^3L\",[20,\"^:\",536870916,536870917]],[\"^3L\",[20,\"^35\",\"property\",536870913]],[\"^3L\",[20,\"^1>\",1726061232381,536870916]],[\"^3L\",[20,\"^17\",\"~u00000002-3269-7934-5000-000000000000\",536870913]],[\"^3L\",[20,\"^B\",\"^C\",536870913]],[\"^3L\",[20,\"^5\",\"^2B\",536870913]],[\"^3L\",[20,\"^?\",true,536870913]],[\"^3L\",[20,\"^O\",true,536870913]],[\"^3L\",[21,\"^23\",1726061232381,536870916]],[\"^3L\",[21,\"^2J\",\"^3M\",536870913]],[\"^3L\",[21,\"^3B\",\"hl-type\",536870913]],[\"^3L\",[21,\"^3>\",\"bEx\",536870916]],[\"^3L\",[21,\"^2<\",[\"^ \",\"^3N\",\"^41\",\"^3P\",true],536870913]],[\"^3L\",[21,\"^2M\",\"hl-type\",536870913]],[\"^3L\",[21,\"^:\",536870916,536870917]],[\"^3L\",[21,\"^35\",\"property\",536870913]],[\"^3L\",[21,\"^1>\",1726061232381,536870916]],[\"^3L\",[21,\"^17\",\"~u00000002-2083-0223-8000-000000000000\",536870913]],[\"^3L\",[21,\"^B\",\"^C\",536870913]],[\"^3L\",[21,\"^5\",\"^1R\",536870913]],[\"^3L\",[21,\"^?\",true,536870913]],[\"^3L\",[21,\"^O\",true,536870913]],[\"^3L\",[22,\"^23\",1726061232381,536870916]],[\"^3L\",[22,\"^2J\",\"^3M\",536870913]],[\"^3L\",[22,\"^3B\",\"hl-color\",536870913]],[\"^3L\",[22,\"^3>\",\"bEy\",536870916]],[\"^3L\",[22,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3P\",true],536870913]],[\"^3L\",[22,\"^2M\",\"hl-color\",536870913]],[\"^3L\",[22,\"^:\",536870916,536870917]],[\"^3L\",[22,\"^35\",\"property\",536870913]],[\"^3L\",[22,\"^1>\",1726061232381,536870916]],[\"^3L\",[22,\"^17\",\"~u00000002-2137-2691-4700-000000000000\",536870913]],[\"^3L\",[22,\"^B\",\"^C\",536870913]],[\"^3L\",[22,\"^5\",\"^S\",536870913]],[\"^3L\",[22,\"^?\",true,536870913]],[\"^3L\",[22,\"^@\",\"^A\",536870913]],[\"^3L\",[22,\"^O\",true,536870913]],[\"^3L\",[23,\"^23\",1726061232382,536870916]],[\"^3L\",[23,\"^2J\",\"^3M\",536870913]],[\"^3L\",[23,\"^3B\",\"hl-page\",536870913]],[\"^3L\",[23,\"^3>\",\"bEz\",536870916]],[\"^3L\",[23,\"^2<\",[\"^ \",\"^3N\",\"~:number\",\"^3P\",true],536870913]],[\"^3L\",[23,\"^2M\",\"hl-page\",536870913]],[\"^3L\",[23,\"^:\",536870916,536870917]],[\"^3L\",[23,\"^35\",\"property\",536870913]],[\"^3L\",[23,\"^1>\",1726061232382,536870916]],[\"^3L\",[23,\"^17\",\"~u00000002-7532-8459-6000-000000000000\",536870913]],[\"^3L\",[23,\"^B\",\"^C\",536870913]],[\"^3L\",[23,\"^5\",\"^1Q\",536870913]],[\"^3L\",[23,\"^?\",true,536870913]],[\"^3L\",[23,\"^@\",\"^A\",536870913]],[\"^3L\",[23,\"^O\",true,536870913]],[\"^3L\",[24,\"^23\",1726061232382,536870916]],[\"^3L\",[24,\"^2J\",\"^3M\",536870913]],[\"^3L\",[24,\"^3B\",\"hl-stamp\",536870913]],[\"^3L\",[24,\"^3>\",\"bF0\",536870916]],[\"^3L\",[24,\"^2<\",[\"^ \",\"^3N\",\"^42\",\"^3P\",true],536870913]],[\"^3L\",[24,\"^2M\",\"hl-stamp\",536870913]],[\"^3L\",[24,\"^:\",536870916,536870917]],[\"^3L\",[24,\"^35\",\"property\",536870913]],[\"^3L\",[24,\"^1>\",1726061232382,536870916]],[\"^3L\",[24,\"^17\",\"~u00000002-1293-4649-2300-000000000000\",536870913]],[\"^3L\",[24,\"^B\",\"^C\",536870913]],[\"^3L\",[24,\"^5\",\"^2X\",536870913]],[\"^3L\",[24,\"^?\",true,536870913]],[\"^3L\",[24,\"^@\",\"^A\",536870913]],[\"^3L\",[24,\"^O\",true,536870913]],[\"^3L\",[25,\"^23\",1726061232382,536870916]],[\"^3L\",[25,\"^2J\",\"^3M\",536870913]],[\"^3L\",[25,\"^3B\",\"hl-value\",536870913]],[\"^3L\",[25,\"^3>\",\"bF1\",536870916]],[\"^3L\",[25,\"^2<\",[\"^ \",\"^3N\",\"~:map\",\"^3P\",true],536870913]],[\"^3L\",[25,\"^2M\",\"hl-value\",536870913]],[\"^3L\",[25,\"^:\",536870916,536870917]],[\"^3L\",[25,\"^35\",\"property\",536870913]],[\"^3L\",[25,\"^1>\",1726061232382,536870916]],[\"^3L\",[25,\"^17\",\"~u00000002-5458-2940-2000-000000000000\",536870913]],[\"^3L\",[25,\"^B\",\"^C\",536870913]],[\"^3L\",[25,\"^5\",\"^32\",536870913]],[\"^3L\",[25,\"^?\",true,536870913]],[\"^3L\",[25,\"^O\",true,536870913]],[\"^3L\",[26,\"^23\",1726061232382,536870916]],[\"^3L\",[26,\"^2J\",\"^3M\",536870913]],[\"^3L\",[26,\"^3B\",\"file\",536870913]],[\"^3L\",[26,\"^3>\",\"bF2\",536870916]],[\"^3L\",[26,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3P\",true,\"^3S\",true,\"^3R\",\"^3Q\"],536870913]],[\"^3L\",[26,\"^2M\",\"file\",536870913]],[\"^3L\",[26,\"^:\",536870916,536870917]],[\"^3L\",[26,\"^35\",\"property\",536870913]],[\"^3L\",[26,\"^1>\",1726061232382,536870916]],[\"^3L\",[26,\"^17\",\"~u00000002-1681-6464-3400-000000000000\",536870913]],[\"^3L\",[26,\"^B\",\"^C\",536870913]],[\"^3L\",[26,\"^5\",\"^38\",536870913]],[\"^3L\",[26,\"^?\",true,536870913]],[\"^3L\",[26,\"^@\",\"^A\",536870913]],[\"^3L\",[26,\"^O\",true,536870913]],[\"^3L\",[27,\"^23\",1726061232382,536870916]],[\"^3L\",[27,\"^2J\",\"^3M\",536870913]],[\"^3L\",[27,\"^3B\",\"file-path\",536870913]],[\"^3L\",[27,\"^3>\",\"bF3\",536870916]],[\"^3L\",[27,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3P\",true,\"^3S\",true,\"^3R\",\"^3Q\"],536870913]],[\"^3L\",[27,\"^2M\",\"file-path\",536870913]],[\"^3L\",[27,\"^:\",536870916,536870917]],[\"^3L\",[27,\"^35\",\"property\",536870913]],[\"^3L\",[27,\"^1>\",1726061232382,536870916]],[\"^3L\",[27,\"^17\",\"~u00000002-5663-3568-2000-000000000000\",536870913]],[\"^3L\",[27,\"^B\",\"^C\",536870913]],[\"^3L\",[27,\"^5\",\"^>\",536870913]],[\"^3L\",[27,\"^?\",true,536870913]],[\"^3L\",[27,\"^@\",\"^A\",536870913]],[\"^3L\",[27,\"^O\",true,536870913]],[\"^3L\",[28,\"^23\",1726061232382,536870916]],[\"^3L\",[28,\"^2J\",\"^3M\",536870913]],[\"^3L\",[28,\"^3B\",\"logseq.order-list-type\",536870913]],[\"^3L\",[28,\"^3>\",\"bF4\",536870916]],[\"^3L\",[28,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3P\",true],536870913]],[\"^3L\",[28,\"^2M\",\"logseq.order-list-type\",536870913]],[\"^3L\",[28,\"^:\",536870916,536870917]],[\"^3L\",[28,\"^35\",\"property\",536870913]],[\"^3L\",[28,\"^1>\",1726061232382,536870916]],[\"^3L\",[28,\"^17\",\"~u00000002-6078-1711-1000-000000000000\",536870913]],[\"^3L\",[28,\"^B\",\"^C\",536870913]],[\"^3L\",[28,\"^5\",\"^2V\",536870913]],[\"^3L\",[28,\"^?\",true,536870913]],[\"^3L\",[28,\"^@\",\"^A\",536870913]],[\"^3L\",[28,\"^O\",true,536870913]],[\"^3L\",[29,\"^23\",1726061232382,536870916]],[\"^3L\",[29,\"^2J\",\"^3M\",536870913]],[\"^3L\",[29,\"^3B\",\"includes\",536870913]],[\"^3L\",[29,\"^3>\",\"bF5\",536870916]],[\"^3L\",[29,\"^2<\",[\"^ \",\"^3N\",\"^3U\",\"^3P\",true],536870913]],[\"^3L\",[29,\"^2M\",\"includes\",536870913]],[\"^3L\",[29,\"^:\",536870916,536870917]],[\"^3L\",[29,\"^35\",\"property\",536870913]],[\"^3L\",[29,\"^1>\",1726061232382,536870916]],[\"^3L\",[29,\"^17\",\"~u00000002-1680-5777-0300-000000000000\",536870913]],[\"^3L\",[29,\"^B\",\"^U\",536870913]],[\"^3L\",[29,\"^5\",\"^10\",536870913]],[\"^3L\",[29,\"^?\",true,536870913]],[\"^3L\",[29,\"^@\",\"^A\",536870913]],[\"^3L\",[29,\"^O\",true,536870913]],[\"^3L\",[30,\"^23\",1726061232382,536870916]],[\"^3L\",[30,\"^2J\",\"^3M\",536870913]],[\"^3L\",[30,\"^3B\",\"excludes\",536870913]],[\"^3L\",[30,\"^3>\",\"bF6\",536870916]],[\"^3L\",[30,\"^2<\",[\"^ \",\"^3N\",\"^3U\",\"^3P\",true],536870913]],[\"^3L\",[30,\"^2M\",\"excludes\",536870913]],[\"^3L\",[30,\"^:\",536870916,536870917]],[\"^3L\",[30,\"^35\",\"property\",536870913]],[\"^3L\",[30,\"^1>\",1726061232382,536870916]],[\"^3L\",[30,\"^17\",\"~u00000002-2426-7588-9000-000000000000\",536870913]],[\"^3L\",[30,\"^B\",\"^U\",536870913]],[\"^3L\",[30,\"^5\",\"^2A\",536870913]],[\"^3L\",[30,\"^?\",true,536870913]],[\"^3L\",[30,\"^@\",\"^A\",536870913]],[\"^3L\",[30,\"^O\",true,536870913]],[\"^3L\",[31,\"^23\",1726061232382,536870916]],[\"^3L\",[31,\"^2J\",\"^3M\",536870913]],[\"^3L\",[31,\"^3B\",\"logseq.tldraw.page\",536870913]],[\"^3L\",[31,\"^3>\",\"bF7\",536870916]],[\"^3L\",[31,\"^2<\",[\"^ \",\"^3N\",\"^43\",\"^3P\",true],536870913]],[\"^3L\",[31,\"^2M\",\"logseq.tldraw.page\",536870913]],[\"^3L\",[31,\"^:\",536870916,536870917]],[\"^3L\",[31,\"^35\",\"property\",536870913]],[\"^3L\",[31,\"^1>\",1726061232382,536870916]],[\"^3L\",[31,\"^17\",\"~u00000002-3546-2145-7000-000000000000\",536870913]],[\"^3L\",[31,\"^B\",\"^C\",536870913]],[\"^3L\",[31,\"^5\",\"^26\",536870913]],[\"^3L\",[31,\"^?\",true,536870913]],[\"^3L\",[31,\"^O\",true,536870913]],[\"^3L\",[32,\"^23\",1726061232382,536870916]],[\"^3L\",[32,\"^2J\",\"^3M\",536870913]],[\"^3L\",[32,\"^3B\",\"logseq.tldraw.shape\",536870913]],[\"^3L\",[32,\"^3>\",\"bF8\",536870916]],[\"^3L\",[32,\"^2<\",[\"^ \",\"^3N\",\"^43\",\"^3P\",true],536870913]],[\"^3L\",[32,\"^2M\",\"logseq.tldraw.shape\",536870913]],[\"^3L\",[32,\"^:\",536870916,536870917]],[\"^3L\",[32,\"^35\",\"property\",536870913]],[\"^3L\",[32,\"^1>\",1726061232382,536870916]],[\"^3L\",[32,\"^17\",\"~u00000002-1313-2454-2000-000000000000\",536870913]],[\"^3L\",[32,\"^B\",\"^C\",536870913]],[\"^3L\",[32,\"^5\",\"^3\",536870913]],[\"^3L\",[32,\"^?\",true,536870913]],[\"^3L\",[32,\"^O\",true,536870913]],[\"^3L\",[33,\"^23\",1726061232382,536870916]],[\"^3L\",[33,\"^2J\",\"^3M\",536870913]],[\"^3L\",[33,\"^3B\",\"title format\",536870913]],[\"^3L\",[33,\"^3>\",\"bF9\",536870916]],[\"^3L\",[33,\"^2<\",[\"^ \",\"^3N\",\"~:string\",\"^3S\",false],536870913]],[\"^3L\",[33,\"^2M\",\"Title format\",536870913]],[\"^3L\",[33,\"^:\",536870916,536870917]],[\"^3L\",[33,\"^35\",\"property\",536870913]],[\"^3L\",[33,\"^1>\",1726061232382,536870916]],[\"^3L\",[33,\"^17\",\"~u00000002-1536-4979-5400-000000000000\",536870913]],[\"^3L\",[33,\"^B\",\"^C\",536870913]],[\"^3L\",[33,\"^5\",\"^9\",536870913]],[\"^3L\",[33,\"^?\",true,536870913]],[\"^3L\",[33,\"^O\",true,536870913]],[\"^3L\",[34,\"^23\",1726061232382,536870916]],[\"^3L\",[34,\"^2J\",\"^3M\",536870913]],[\"^3L\",[34,\"^3B\",\"status\",536870913]],[\"^3L\",[34,\"^3>\",\"bFA\",536870916]],[\"^3L\",[34,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3S\",true,\"~:position\",\"~:block-left\"],536870913]],[\"^3L\",[34,\"^2M\",\"Status\",536870913]],[\"^3L\",[34,\"^:\",536870919,536870920]],[\"^3L\",[34,\"^35\",\"property\",536870913]],[\"^3L\",[34,\"^1>\",1726061232382,536870916]],[\"^3L\",[34,\"^17\",\"~u00000002-1399-1718-0300-000000000000\",536870913]],[\"^3L\",[34,\"^B\",\"^C\",536870913]],[\"^3L\",[34,\"^5\",\"^=\",536870913]],[\"^3L\",[34,\"^?\",true,536870913]],[\"^3L\",[34,\"^@\",\"^A\",536870913]],[\"^3L\",[34,\"^O\",true,536870913]],[\"^3L\",[35,\"^1V\",34,536870913]],[\"^3L\",[35,\"^23\",1726061232382,536870916]],[\"^3L\",[35,\"^2J\",\"^3M\",536870913]],[\"^3L\",[35,\"^3>\",\"bFB\",536870916]],[\"^3L\",[35,\"^3A\",34,536870913]],[\"^3L\",[35,\"^30\",34,536870913]],[\"^3L\",[35,\"^2[\",34,536870920]],[\"^3L\",[35,\"^1L\",34,536870919]],[\"^3L\",[35,\"^2M\",\"Backlog\",536870913]],[\"^3L\",[35,\"^:\",536870919,536870920]],[\"^3L\",[35,\"^35\",\"closed value\",536870913]],[\"^3L\",[35,\"^1>\",1726061232382,536870916]],[\"^3L\",[35,\"^17\",\"~u00000002-1797-5174-0500-000000000000\",536870913]],[\"^3L\",[35,\"^5\",\"^G\",536870913]],[\"^3L\",[35,\"^O\",true,536870913]],[\"^3L\",[35,\"^20\",34,536870913]],[\"^3L\",[35,\"^22\",[\"^ \",\"^3N\",\"~:tabler-icon\",\"~:id\",\"Backlog\"],536870913]],[\"^3L\",[36,\"^1V\",34,536870913]],[\"^3L\",[36,\"^23\",1726061232382,536870916]],[\"^3L\",[36,\"^2J\",\"^3M\",536870913]],[\"^3L\",[36,\"^3>\",\"bFC\",536870916]],[\"^3L\",[36,\"^3A\",34,536870913]],[\"^3L\",[36,\"^30\",34,536870913]],[\"^3L\",[36,\"^2[\",34,536870920]],[\"^3L\",[36,\"^1L\",34,536870919]],[\"^3L\",[36,\"^2M\",\"Todo\",536870913]],[\"^3L\",[36,\"^:\",536870919,536870920]],[\"^3L\",[36,\"^35\",\"closed value\",536870913]],[\"^3L\",[36,\"^1>\",1726061232382,536870916]],[\"^3L\",[36,\"^17\",\"~u00000002-1776-1920-4900-000000000000\",536870913]],[\"^3L\",[36,\"^5\",\"^K\",536870913]],[\"^3L\",[36,\"^O\",true,536870913]],[\"^3L\",[36,\"^20\",34,536870913]],[\"^3L\",[36,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"Todo\"],536870913]],[\"^3L\",[37,\"^1V\",34,536870913]],[\"^3L\",[37,\"^23\",1726061232382,536870916]],[\"^3L\",[37,\"^2J\",\"^3M\",536870913]],[\"^3L\",[37,\"^3>\",\"bFD\",536870916]],[\"^3L\",[37,\"^3A\",34,536870913]],[\"^3L\",[37,\"^30\",34,536870913]],[\"^3L\",[37,\"^2[\",34,536870920]],[\"^3L\",[37,\"^1L\",34,536870919]],[\"^3L\",[37,\"^2M\",\"Doing\",536870913]],[\"^3L\",[37,\"^:\",536870919,536870920]],[\"^3L\",[37,\"^35\",\"closed value\",536870913]],[\"^3L\",[37,\"^1>\",1726061232382,536870916]],[\"^3L\",[37,\"^17\",\"~u00000002-5524-7947-6000-000000000000\",536870913]],[\"^3L\",[37,\"^5\",\"^Q\",536870913]],[\"^3L\",[37,\"^O\",true,536870913]],[\"^3L\",[37,\"^20\",34,536870913]],[\"^3L\",[37,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"InProgress50\"],536870913]],[\"^3L\",[38,\"^1V\",34,536870913]],[\"^3L\",[38,\"^23\",1726061232382,536870916]],[\"^3L\",[38,\"^2J\",\"^3M\",536870913]],[\"^3L\",[38,\"^3>\",\"bFE\",536870916]],[\"^3L\",[38,\"^3A\",34,536870913]],[\"^3L\",[38,\"^30\",34,536870913]],[\"^3L\",[38,\"^2[\",34,536870920]],[\"^3L\",[38,\"^1L\",34,536870919]],[\"^3L\",[38,\"^2M\",\"In Review\",536870913]],[\"^3L\",[38,\"^:\",536870919,536870920]],[\"^3L\",[38,\"^35\",\"closed value\",536870913]],[\"^3L\",[38,\"^1>\",1726061232382,536870916]],[\"^3L\",[38,\"^17\",\"~u00000002-3550-9421-0000-000000000000\",536870913]],[\"^3L\",[38,\"^5\",\"^W\",536870913]],[\"^3L\",[38,\"^O\",true,536870913]],[\"^3L\",[38,\"^20\",34,536870913]],[\"^3L\",[38,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"InReview\"],536870913]],[\"^3L\",[39,\"^1V\",34,536870913]],[\"^3L\",[39,\"^23\",1726061232382,536870916]],[\"^3L\",[39,\"^2J\",\"^3M\",536870913]],[\"^3L\",[39,\"^3>\",\"bFF\",536870916]],[\"^3L\",[39,\"^3A\",34,536870913]],[\"^3L\",[39,\"^30\",34,536870913]],[\"^3L\",[39,\"^2[\",34,536870920]],[\"^3L\",[39,\"^1L\",34,536870919]],[\"^3L\",[39,\"^2M\",\"Done\",536870913]],[\"^3L\",[39,\"^:\",536870919,536870920]],[\"^3L\",[39,\"^35\",\"closed value\",536870913]],[\"^3L\",[39,\"^1>\",1726061232382,536870916]],[\"^3L\",[39,\"^17\",\"~u00000002-1430-0577-4000-000000000000\",536870913]],[\"^3L\",[39,\"^5\",\"^[\",536870913]],[\"^3L\",[39,\"^O\",true,536870913]],[\"^3L\",[39,\"^20\",34,536870913]],[\"^3L\",[39,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"Done\"],536870913]],[\"^3L\",[40,\"^1V\",34,536870913]],[\"^3L\",[40,\"^23\",1726061232382,536870916]],[\"^3L\",[40,\"^2J\",\"^3M\",536870913]],[\"^3L\",[40,\"^3>\",\"bFG\",536870916]],[\"^3L\",[40,\"^3A\",34,536870913]],[\"^3L\",[40,\"^30\",34,536870913]],[\"^3L\",[40,\"^2[\",34,536870920]],[\"^3L\",[40,\"^1L\",34,536870919]],[\"^3L\",[40,\"^2M\",\"Canceled\",536870913]],[\"^3L\",[40,\"^:\",536870919,536870920]],[\"^3L\",[40,\"^35\",\"closed value\",536870913]],[\"^3L\",[40,\"^1>\",1726061232382,536870916]],[\"^3L\",[40,\"^17\",\"~u00000002-1217-7438-9000-000000000000\",536870913]],[\"^3L\",[40,\"^5\",\"^16\",536870913]],[\"^3L\",[40,\"^O\",true,536870913]],[\"^3L\",[40,\"^20\",34,536870913]],[\"^3L\",[40,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"Cancelled\"],536870913]],[\"^3L\",[41,\"^23\",1726061232382,536870916]],[\"^3L\",[41,\"^2J\",\"^3M\",536870913]],[\"^3L\",[41,\"^3B\",\"priority\",536870913]],[\"^3L\",[41,\"^3>\",\"bFH\",536870916]],[\"^3L\",[41,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3S\",true,\"^45\",\"^46\"],536870913]],[\"^3L\",[41,\"^2M\",\"Priority\",536870913]],[\"^3L\",[41,\"^:\",536870919,536870920]],[\"^3L\",[41,\"^35\",\"property\",536870913]],[\"^3L\",[41,\"^1>\",1726061232382,536870916]],[\"^3L\",[41,\"^17\",\"~u00000002-1714-7859-9500-000000000000\",536870913]],[\"^3L\",[41,\"^B\",\"^C\",536870913]],[\"^3L\",[41,\"^5\",\"^1=\",536870913]],[\"^3L\",[41,\"^?\",true,536870913]],[\"^3L\",[41,\"^@\",\"^A\",536870913]],[\"^3L\",[41,\"^O\",true,536870913]],[\"^3L\",[42,\"^1V\",41,536870913]],[\"^3L\",[42,\"^23\",1726061232382,536870916]],[\"^3L\",[42,\"^2J\",\"^3M\",536870913]],[\"^3L\",[42,\"^3>\",\"bFI\",536870916]],[\"^3L\",[42,\"^3A\",41,536870913]],[\"^3L\",[42,\"^30\",41,536870913]],[\"^3L\",[42,\"^2[\",41,536870920]],[\"^3L\",[42,\"^1L\",41,536870919]],[\"^3L\",[42,\"^2M\",\"Low\",536870913]],[\"^3L\",[42,\"^:\",536870919,536870920]],[\"^3L\",[42,\"^35\",\"closed value\",536870913]],[\"^3L\",[42,\"^1>\",1726061232382,536870916]],[\"^3L\",[42,\"^17\",\"~u00000002-8891-7452-4000-000000000000\",536870913]],[\"^3L\",[42,\"^5\",\"^L\",536870913]],[\"^3L\",[42,\"^O\",true,536870913]],[\"^3L\",[42,\"^20\",41,536870913]],[\"^3L\",[42,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"priorityLvlLow\"],536870913]],[\"^3L\",[43,\"^1V\",41,536870913]],[\"^3L\",[43,\"^23\",1726061232382,536870916]],[\"^3L\",[43,\"^2J\",\"^3M\",536870913]],[\"^3L\",[43,\"^3>\",\"bFJ\",536870916]],[\"^3L\",[43,\"^3A\",41,536870913]],[\"^3L\",[43,\"^30\",41,536870913]],[\"^3L\",[43,\"^2[\",41,536870920]],[\"^3L\",[43,\"^1L\",41,536870919]],[\"^3L\",[43,\"^2M\",\"Medium\",536870913]],[\"^3L\",[43,\"^:\",536870919,536870920]],[\"^3L\",[43,\"^35\",\"closed value\",536870913]],[\"^3L\",[43,\"^1>\",1726061232382,536870916]],[\"^3L\",[43,\"^17\",\"~u00000002-4650-7295-0000-000000000000\",536870913]],[\"^3L\",[43,\"^5\",\"^1E\",536870913]],[\"^3L\",[43,\"^O\",true,536870913]],[\"^3L\",[43,\"^20\",41,536870913]],[\"^3L\",[43,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"priorityLvlMedium\"],536870913]],[\"^3L\",[44,\"^1V\",41,536870913]],[\"^3L\",[44,\"^23\",1726061232382,536870916]],[\"^3L\",[44,\"^2J\",\"^3M\",536870913]],[\"^3L\",[44,\"^3>\",\"bFK\",536870916]],[\"^3L\",[44,\"^3A\",41,536870913]],[\"^3L\",[44,\"^30\",41,536870913]],[\"^3L\",[44,\"^2[\",41,536870920]],[\"^3L\",[44,\"^1L\",41,536870919]],[\"^3L\",[44,\"^2M\",\"High\",536870913]],[\"^3L\",[44,\"^:\",536870919,536870920]],[\"^3L\",[44,\"^35\",\"closed value\",536870913]],[\"^3L\",[44,\"^1>\",1726061232382,536870916]],[\"^3L\",[44,\"^17\",\"~u00000002-1281-2351-0000-000000000000\",536870913]],[\"^3L\",[44,\"^5\",\"^N\",536870913]],[\"^3L\",[44,\"^O\",true,536870913]],[\"^3L\",[44,\"^20\",41,536870913]],[\"^3L\",[44,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"priorityLvlHigh\"],536870913]],[\"^3L\",[45,\"^1V\",41,536870913]],[\"^3L\",[45,\"^23\",1726061232382,536870916]],[\"^3L\",[45,\"^2J\",\"^3M\",536870913]],[\"^3L\",[45,\"^3>\",\"bFL\",536870916]],[\"^3L\",[45,\"^3A\",41,536870913]],[\"^3L\",[45,\"^30\",41,536870913]],[\"^3L\",[45,\"^2[\",41,536870920]],[\"^3L\",[45,\"^1L\",41,536870919]],[\"^3L\",[45,\"^2M\",\"Urgent\",536870913]],[\"^3L\",[45,\"^:\",536870919,536870920]],[\"^3L\",[45,\"^35\",\"closed value\",536870913]],[\"^3L\",[45,\"^1>\",1726061232382,536870916]],[\"^3L\",[45,\"^17\",\"~u00000002-4458-8138-1000-000000000000\",536870913]],[\"^3L\",[45,\"^5\",\"^R\",536870913]],[\"^3L\",[45,\"^O\",true,536870913]],[\"^3L\",[45,\"^20\",41,536870913]],[\"^3L\",[45,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"priorityLvlUrgent\"],536870913]],[\"^3L\",[46,\"^23\",1726061232382,536870916]],[\"^3L\",[46,\"^2J\",\"^3M\",536870913]],[\"^3L\",[46,\"^3B\",\"deadline\",536870913]],[\"^3L\",[46,\"^3>\",\"bFM\",536870916]],[\"^3L\",[46,\"^2<\",[\"^ \",\"^3N\",\"~:date\",\"^3S\",true,\"^45\",\"~:block-below\"],536870913]],[\"^3L\",[46,\"^2M\",\"Deadline\",536870913]],[\"^3L\",[46,\"^:\",536870916,536870917]],[\"^3L\",[46,\"^35\",\"property\",536870913]],[\"^3L\",[46,\"^1>\",1726061232382,536870916]],[\"^3L\",[46,\"^17\",\"~u00000002-2149-5604-4000-000000000000\",536870913]],[\"^3L\",[46,\"^B\",\"^C\",536870913]],[\"^3L\",[46,\"^5\",\"^1Z\",536870913]],[\"^3L\",[46,\"^?\",true,536870913]],[\"^3L\",[46,\"^@\",\"^A\",536870913]],[\"^3L\",[46,\"^O\",true,536870913]],[\"^3L\",[47,\"^23\",1726061232382,536870916]],[\"^3L\",[47,\"^2J\",\"^3M\",536870913]],[\"^3L\",[47,\"^3B\",\"icon\",536870913]],[\"^3L\",[47,\"^3>\",\"bFN\",536870916]],[\"^3L\",[47,\"^2<\",[\"^ \",\"^3N\",\"^43\"],536870913]],[\"^3L\",[47,\"^2M\",\"Icon\",536870913]],[\"^3L\",[47,\"^:\",536870916,536870917]],[\"^3L\",[47,\"^35\",\"property\",536870913]],[\"^3L\",[47,\"^1>\",1726061232382,536870916]],[\"^3L\",[47,\"^17\",\"~u00000002-5891-2328-5000-000000000000\",536870913]],[\"^3L\",[47,\"^B\",\"^C\",536870913]],[\"^3L\",[47,\"^5\",\"^22\",536870913]],[\"^3L\",[47,\"^?\",true,536870913]],[\"^3L\",[47,\"^O\",true,536870913]],[\"^3L\",[48,\"^23\",1726061232382,536870916]],[\"^3L\",[48,\"^2J\",\"^3M\",536870913]],[\"^3L\",[48,\"^3B\",\"public\",536870913]],[\"^3L\",[48,\"^3>\",\"bFO\",536870916]],[\"^3L\",[48,\"^2<\",[\"^ \",\"^3N\",\"^3O\",\"^3P\",true,\"^3R\",\"^3Q\",\"^3S\",true],536870913]],[\"^3L\",[48,\"^2M\",\"public\",536870913]],[\"^3L\",[48,\"^:\",536870916,536870917]],[\"^3L\",[48,\"^35\",\"property\",536870913]],[\"^3L\",[48,\"^1>\",1726061232382,536870916]],[\"^3L\",[48,\"^17\",\"~u00000002-1705-3327-6500-000000000000\",536870913]],[\"^3L\",[48,\"^B\",\"^C\",536870913]],[\"^3L\",[48,\"^5\",\"^H\",536870913]],[\"^3L\",[48,\"^?\",true,536870913]],[\"^3L\",[48,\"^O\",true,536870913]],[\"^3L\",[49,\"^23\",1726061232382,536870916]],[\"^3L\",[49,\"^2J\",\"^3M\",536870913]],[\"^3L\",[49,\"^3B\",\"exclude-from-graph-view\",536870913]],[\"^3L\",[49,\"^3>\",\"bFP\",536870916]],[\"^3L\",[49,\"^2<\",[\"^ \",\"^3N\",\"^3O\",\"^3P\",true,\"^3R\",\"^3Q\",\"^3S\",true],536870913]],[\"^3L\",[49,\"^2M\",\"exclude-from-graph-view\",536870913]],[\"^3L\",[49,\"^:\",536870916,536870917]],[\"^3L\",[49,\"^35\",\"property\",536870913]],[\"^3L\",[49,\"^1>\",1726061232382,536870916]],[\"^3L\",[49,\"^17\",\"~u00000002-4524-3306-5000-000000000000\",536870913]],[\"^3L\",[49,\"^B\",\"^C\",536870913]],[\"^3L\",[49,\"^5\",\"^2@\",536870913]],[\"^3L\",[49,\"^?\",true,536870913]],[\"^3L\",[49,\"^O\",true,536870913]],[\"^3L\",[50,\"^23\",1726061232384,536870916]],[\"^3L\",[50,\"^2J\",\"^3M\",536870913]],[\"^3L\",[50,\"^3B\",\"description\",536870913]],[\"^3L\",[50,\"^3>\",\"bFQ\",536870916]],[\"^3L\",[50,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3S\",true],536870913]],[\"^3L\",[50,\"^2M\",\"Description\",536870913]],[\"^3L\",[50,\"^:\",536870916,536870917]],[\"^3L\",[50,\"^35\",\"property\",536870913]],[\"^3L\",[50,\"^1>\",1726061232384,536870916]],[\"^3L\",[50,\"^17\",\"~u00000002-3362-3620-0000-000000000000\",536870913]],[\"^3L\",[50,\"^B\",\"^C\",536870913]],[\"^3L\",[50,\"^5\",\"^2F\",536870913]],[\"^3L\",[50,\"^?\",true,536870913]],[\"^3L\",[50,\"^@\",\"^A\",536870913]],[\"^3L\",[50,\"^O\",true,536870913]],[\"^3L\",[51,\"^23\",1726061232384,536870916]],[\"^3L\",[51,\"^2J\",\"^3M\",536870913]],[\"^3L\",[51,\"^3B\",\"view type\",536870913]],[\"^3L\",[51,\"^3>\",\"bFR\",536870916]],[\"^3L\",[51,\"^2<\",[\"^ \",\"^3N\",\"^3X\",\"^3S\",false,\"^3P\",true],536870913]],[\"^3L\",[51,\"^2M\",\"View type\",536870913]],[\"^3L\",[51,\"^:\",536870919,536870920]],[\"^3L\",[51,\"^35\",\"property\",536870913]],[\"^3L\",[51,\"^1>\",1726061232384,536870916]],[\"^3L\",[51,\"^17\",\"~u00000002-2182-3760-7000-000000000000\",536870913]],[\"^3L\",[51,\"^B\",\"^C\",536870913]],[\"^3L\",[51,\"^5\",\"^12\",536870913]],[\"^3L\",[51,\"^?\",true,536870913]],[\"^3L\",[51,\"^@\",\"^A\",536870913]],[\"^3L\",[51,\"^O\",true,536870913]],[\"^3L\",[52,\"^1V\",51,536870913]],[\"^3L\",[52,\"^23\",1726061232384,536870916]],[\"^3L\",[52,\"^2J\",\"^3M\",536870913]],[\"^3L\",[52,\"^3>\",\"bFS\",536870916]],[\"^3L\",[52,\"^3A\",51,536870913]],[\"^3L\",[52,\"^30\",51,536870913]],[\"^3L\",[52,\"^2[\",51,536870920]],[\"^3L\",[52,\"^1L\",51,536870919]],[\"^3L\",[52,\"^2M\",\"Table View\",536870913]],[\"^3L\",[52,\"^:\",536870919,536870920]],[\"^3L\",[52,\"^35\",\"closed value\",536870913]],[\"^3L\",[52,\"^1>\",1726061232384,536870916]],[\"^3L\",[52,\"^17\",\"~u00000002-1942-5424-0000-000000000000\",536870913]],[\"^3L\",[52,\"^5\",\"^4\",536870913]],[\"^3L\",[52,\"^O\",true,536870913]],[\"^3L\",[52,\"^20\",51,536870913]],[\"^3L\",[53,\"^1V\",51,536870913]],[\"^3L\",[53,\"^23\",1726061232384,536870916]],[\"^3L\",[53,\"^2J\",\"^3M\",536870913]],[\"^3L\",[53,\"^3>\",\"bFT\",536870916]],[\"^3L\",[53,\"^3A\",51,536870913]],[\"^3L\",[53,\"^30\",51,536870913]],[\"^3L\",[53,\"^2[\",51,536870920]],[\"^3L\",[53,\"^1L\",51,536870919]],[\"^3L\",[53,\"^2M\",\"List View\",536870913]],[\"^3L\",[53,\"^:\",536870919,536870920]],[\"^3L\",[53,\"^35\",\"closed value\",536870913]],[\"^3L\",[53,\"^1>\",1726061232384,536870916]],[\"^3L\",[53,\"^17\",\"~u00000002-1164-8285-0200-000000000000\",536870913]],[\"^3L\",[53,\"^5\",\"^1D\",536870913]],[\"^3L\",[53,\"^O\",true,536870913]],[\"^3L\",[53,\"^20\",51,536870913]],[\"^3L\",[54,\"^23\",1726061232384,536870916]],[\"^3L\",[54,\"^2J\",\"^3M\",536870913]],[\"^3L\",[54,\"^3B\",\"sorting\",536870913]],[\"^3L\",[54,\"^3>\",\"bFU\",536870916]],[\"^3L\",[54,\"^2<\",[\"^ \",\"^3N\",\"^40\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[54,\"^2M\",\"sorting\",536870913]],[\"^3L\",[54,\"^:\",536870916,536870917]],[\"^3L\",[54,\"^35\",\"property\",536870913]],[\"^3L\",[54,\"^1>\",1726061232384,536870916]],[\"^3L\",[54,\"^17\",\"~u00000002-2081-0259-4000-000000000000\",536870913]],[\"^3L\",[54,\"^B\",\"^C\",536870913]],[\"^3L\",[54,\"^5\",\"^D\",536870913]],[\"^3L\",[54,\"^?\",true,536870913]],[\"^3L\",[54,\"^O\",true,536870913]],[\"^3L\",[55,\"^23\",1726061232384,536870916]],[\"^3L\",[55,\"^2J\",\"^3M\",536870913]],[\"^3L\",[55,\"^3B\",\"filters\",536870913]],[\"^3L\",[55,\"^3>\",\"bFV\",536870916]],[\"^3L\",[55,\"^2<\",[\"^ \",\"^3N\",\"^40\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[55,\"^2M\",\"filters\",536870913]],[\"^3L\",[55,\"^:\",536870916,536870917]],[\"^3L\",[55,\"^35\",\"property\",536870913]],[\"^3L\",[55,\"^1>\",1726061232384,536870916]],[\"^3L\",[55,\"^17\",\"~u00000002-1702-3936-3300-000000000000\",536870913]],[\"^3L\",[55,\"^B\",\"^C\",536870913]],[\"^3L\",[55,\"^5\",\"^2U\",536870913]],[\"^3L\",[55,\"^?\",true,536870913]],[\"^3L\",[55,\"^O\",true,536870913]],[\"^3L\",[56,\"^23\",1726061232384,536870916]],[\"^3L\",[56,\"^2J\",\"^3M\",536870913]],[\"^3L\",[56,\"^3B\",\"hidden-columns\",536870913]],[\"^3L\",[56,\"^3>\",\"bFW\",536870916]],[\"^3L\",[56,\"^2<\",[\"^ \",\"^3N\",\"^41\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[56,\"^2M\",\"hidden-columns\",536870913]],[\"^3L\",[56,\"^:\",536870916,536870917]],[\"^3L\",[56,\"^35\",\"property\",536870913]],[\"^3L\",[56,\"^1>\",1726061232384,536870916]],[\"^3L\",[56,\"^17\",\"~u00000002-9750-5719-2000-000000000000\",536870913]],[\"^3L\",[56,\"^B\",\"^U\",536870913]],[\"^3L\",[56,\"^5\",\"^1:\",536870913]],[\"^3L\",[56,\"^?\",true,536870913]],[\"^3L\",[56,\"^O\",true,536870913]],[\"^3L\",[57,\"^23\",1726061232384,536870916]],[\"^3L\",[57,\"^2J\",\"^3M\",536870913]],[\"^3L\",[57,\"^3B\",\"ordered-columns\",536870913]],[\"^3L\",[57,\"^3>\",\"bFX\",536870916]],[\"^3L\",[57,\"^2<\",[\"^ \",\"^3N\",\"^40\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[57,\"^2M\",\"ordered-columns\",536870913]],[\"^3L\",[57,\"^:\",536870916,536870917]],[\"^3L\",[57,\"^35\",\"property\",536870913]],[\"^3L\",[57,\"^1>\",1726061232384,536870916]],[\"^3L\",[57,\"^17\",\"~u00000002-1485-5871-0000-000000000000\",536870913]],[\"^3L\",[57,\"^B\",\"^C\",536870913]],[\"^3L\",[57,\"^5\",\"^34\",536870913]],[\"^3L\",[57,\"^?\",true,536870913]],[\"^3L\",[57,\"^O\",true,536870913]],[\"^3L\",[58,\"^23\",1726061232384,536870916]],[\"^3L\",[58,\"^2J\",\"^3M\",536870913]],[\"^3L\",[58,\"^3B\",\"view-for\",536870913]],[\"^3L\",[58,\"^3>\",\"bFY\",536870916]],[\"^3L\",[58,\"^2<\",[\"^ \",\"^3N\",\"^3U\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[58,\"^2M\",\"view-for\",536870913]],[\"^3L\",[58,\"^:\",536870916,536870917]],[\"^3L\",[58,\"^35\",\"property\",536870913]],[\"^3L\",[58,\"^1>\",1726061232384,536870916]],[\"^3L\",[58,\"^17\",\"~u00000002-3627-4319-0000-000000000000\",536870913]],[\"^3L\",[58,\"^B\",\"^C\",536870913]],[\"^3L\",[58,\"^5\",\"^2C\",536870913]],[\"^3L\",[58,\"^?\",true,536870913]],[\"^3L\",[58,\"^@\",\"^A\",536870913]],[\"^3L\",[58,\"^O\",true,536870913]],[\"^3L\",[59,\"^23\",1726061232384,536870916]],[\"^3L\",[59,\"^2J\",\"^3M\",536870913]],[\"^3L\",[59,\"^3B\",\"remote-metadata\",536870913]],[\"^3L\",[59,\"^3>\",\"bFZ\",536870916]],[\"^3L\",[59,\"^2<\",[\"^ \",\"^3N\",\"^43\",\"^3P\",true,\"^3S\",false],536870913]],[\"^3L\",[59,\"^2M\",\"remote-metadata\",536870913]],[\"^3L\",[59,\"^:\",536870916,536870917]],[\"^3L\",[59,\"^35\",\"property\",536870913]],[\"^3L\",[59,\"^1>\",1726061232384,536870916]],[\"^3L\",[59,\"^17\",\"~u00000002-9907-5046-9000-000000000000\",536870913]],[\"^3L\",[59,\"^B\",\"^C\",536870913]],[\"^3L\",[59,\"^5\",\"^3=\",536870913]],[\"^3L\",[59,\"^?\",true,536870913]],[\"^3L\",[59,\"^O\",true,536870913]],[\"^3L\",[60,\"^23\",1726061232384,536870916]],[\"^3L\",[60,\"^2J\",\"^3M\",536870913]],[\"^3L\",[60,\"^3B\",\"query\",536870913]],[\"^3L\",[60,\"^2[\",4,536870920]],[\"^3L\",[60,\"^2[\",8,536870920]],[\"^3L\",[60,\"^1L\",4,536870919]],[\"^3L\",[60,\"^1L\",8,536870919]],[\"^3L\",[60,\"^2M\",\"Query\",536870913]],[\"^3L\",[60,\"^:\",536870919,536870920]],[\"^3L\",[60,\"^35\",\"class\",536870913]],[\"^3L\",[60,\"^1>\",1726061232384,536870916]],[\"^3L\",[60,\"^17\",\"~u00000002-2324-8016-6000-000000000000\",536870913]],[\"^3L\",[60,\"^5\",\"^3:\",536870913]],[\"^3L\",[60,\"^O\",true,536870913]],[\"^3L\",[60,\"^22\",[\"^ \",\"^3N\",\"^47\",\"^48\",\"search\"],536870913]],[\"^3L\",[60,\"^14\",4,536870913]],[\"^3L\",[61,\"^23\",1726061232384,536870916]],[\"^3L\",[61,\"^2J\",\"^3M\",536870913]],[\"^3L\",[61,\"^3B\",\"task\",536870913]],[\"^3L\",[61,\"^2[\",4,536870920]],[\"^3L\",[61,\"^2[\",8,536870920]],[\"^3L\",[61,\"^2[\",9,536870920]],[\"^3L\",[61,\"^2[\",34,536870920]],[\"^3L\",[61,\"^2[\",41,536870920]],[\"^3L\",[61,\"^2[\",46,536870920]],[\"^3L\",[61,\"^1L\",4,536870919]],[\"^3L\",[61,\"^1L\",8,536870919]],[\"^3L\",[61,\"^1L\",9,536870919]],[\"^3L\",[61,\"^1L\",34,536870919]],[\"^3L\",[61,\"^1L\",41,536870919]],[\"^3L\",[61,\"^1L\",46,536870919]],[\"^3L\",[61,\"^2M\",\"Task\",536870913]],[\"^3L\",[61,\"^:\",536870919,536870920]],[\"^3L\",[61,\"^35\",\"class\",536870913]],[\"^3L\",[61,\"^1>\",1726061232384,536870916]],[\"^3L\",[61,\"^17\",\"~u00000002-1282-1814-5700-000000000000\",536870913]],[\"^3L\",[61,\"^5\",\"^24\",536870913]],[\"^3L\",[61,\"^O\",true,536870913]],[\"^3L\",[61,\"^14\",4,536870913]],[\"^3L\",[61,\"^1;\",34,536870913]],[\"^3L\",[61,\"^1;\",41,536870913]],[\"^3L\",[61,\"^1;\",46,536870913]],[\"^3L\",[62,\"^23\",1726061232384,536870916]],[\"^3L\",[62,\"^2J\",\"^3M\",536870913]],[\"^3L\",[62,\"^3B\",\"card\",536870913]],[\"^3L\",[62,\"^2[\",4,536870920]],[\"^3L\",[62,\"^2[\",8,536870920]],[\"^3L\",[62,\"^1L\",4,536870919]],[\"^3L\",[62,\"^1L\",8,536870919]],[\"^3L\",[62,\"^2M\",\"Card\",536870913]],[\"^3L\",[62,\"^:\",536870919,536870920]],[\"^3L\",[62,\"^35\",\"class\",536870913]],[\"^3L\",[62,\"^1>\",1726061232384,536870916]],[\"^3L\",[62,\"^17\",\"~u00000002-1358-2811-0900-000000000000\",536870913]],[\"^3L\",[62,\"^5\",\"^1M\",536870913]],[\"^3L\",[62,\"^O\",true,536870913]],[\"^3L\",[62,\"^14\",4,536870913]],[\"^3L\",[63,\"^23\",1726061232384,536870916]],[\"^3L\",[63,\"^2J\",\"^3M\",536870913]],[\"^3L\",[63,\"^3B\",\"journal\",536870913]],[\"^3L\",[63,\"^2[\",4,536870920]],[\"^3L\",[63,\"^2[\",8,536870920]],[\"^3L\",[63,\"^1L\",4,536870919]],[\"^3L\",[63,\"^1L\",8,536870919]],[\"^3L\",[63,\"^2M\",\"Journal\",536870913]],[\"^3L\",[63,\"^:\",536870919,536870920]],[\"^3L\",[63,\"^35\",\"class\",536870913]],[\"^3L\",[63,\"^1>\",1726061232384,536870916]],[\"^3L\",[63,\"^17\",\"~u00000002-1979-7410-8100-000000000000\",536870913]],[\"^3L\",[63,\"^5\",\"^36\",536870913]],[\"^3L\",[63,\"^O\",true,536870913]],[\"^3L\",[63,\"^14\",4,536870913]],[\"^3L\",[63,\"^9\",\"MMM do, yyyy\",536870913]],[\"^3L\",[64,\"^17\",\"~u66e19b00-127a-4b8f-a3bc-26bd650d188b\",536870913]],[\"^3L\",[64,\"^M\",[\"^ \"],536870913]],[\"^3L\",[64,\"^6\",\"~m1726061312400\",536870913]],[\"^3L\",[64,\"^1X\",\"~m1726061312400\",536870913]],[\"^3L\",[64,\"^3C\",\"logseq/config.edn\",536870913]],[\"^3L\",[65,\"^17\",\"~u66e19b00-cc6a-4160-8170-01726bcee4e5\",536870913]],[\"^3L\",[65,\"^M\",\"\",536870913]],[\"^3L\",[65,\"^6\",\"~m1726061312400\",536870913]],[\"^3L\",[65,\"^1X\",\"~m1726061312400\",536870913]],[\"^3L\",[65,\"^3C\",\"logseq/custom.css\",536870913]],[\"^3L\",[66,\"^17\",\"~u66e19b00-4097-4a4a-9388-3506f9b87b57\",536870913]],[\"^3L\",[66,\"^M\",\"\",536870913]],[\"^3L\",[66,\"^6\",\"~m1726061312400\",536870913]],[\"^3L\",[66,\"^1X\",\"~m1726061312400\",536870913]],[\"^3L\",[66,\"^3C\",\"logseq/custom.js\",536870913]],[\"^3L\",[67,\"^23\",1726061312404,536870913]],[\"^3L\",[67,\"^2J\",\"^3M\",536870913]],[\"^3L\",[67,\"^3B\",\"contents\",536870913]],[\"^3L\",[67,\"^2M\",\"Contents\",536870913]],[\"^3L\",[67,\"^35\",\"page\",536870913]],[\"^3L\",[67,\"^1>\",1726061312404,536870913]],[\"^3L\",[67,\"^17\",\"~u66e19b00-30ea-42a0-b3f0-7b04b8ce64e3\",536870913]],[\"^3L\",[67,\"^O\",true,536870913]],[\"^3L\",[68,\"^23\",1726061312482,536870914]],[\"^3L\",[68,\"^2J\",\"^3M\",536870914]],[\"^3L\",[68,\"^3B\",\"$$$views\",536870914]],[\"^3L\",[68,\"^2M\",\"$$$views\",536870914]],[\"^3L\",[68,\"^:\",536870919,536870920]],[\"^3L\",[68,\"^35\",\"hidden\",536870914]],[\"^3L\",[68,\"^1>\",1726061312482,536870914]],[\"^3L\",[68,\"^17\",\"~u66e19b00-4302-4574-b7a9-d866ece76c59\",536870914]],[\"^3L\",[69,\"^23\",1726061312482,536870914]],[\"^3L\",[69,\"^2J\",\"^3M\",536870914]],[\"^3L\",[69,\"^3>\",\"bGX\",536870914]],[\"^3L\",[69,\"^3A\",68,536870914]],[\"^3L\",[69,\"^30\",68,536870914]],[\"^3L\",[69,\"^2[\",68,536870920]],[\"^3L\",[69,\"^1L\",68,536870919]],[\"^3L\",[69,\"^2M\",\"All Pages Default View\",536870914]],[\"^3L\",[69,\"^:\",536870919,536870920]],[\"^3L\",[69,\"^1>\",1726061312482,536870914]],[\"^3L\",[69,\"^17\",\"~u66e19b00-e0a4-4089-af95-0876672c54e6\",536870914]],[\"^3L\",[69,\"^2C\",68,536870914]],[\"^3L\",[70,\"^23\",1726061232560,536870916]],[\"^3L\",[70,\"^2J\",\"^3M\",536870916]],[\"^3L\",[70,\"^2G\",20240911,536870916]],[\"^3L\",[70,\"^3B\",\"sep 11th, 2024\",536870916]],[\"^3L\",[70,\"^2[\",7,536870920]],[\"^3L\",[70,\"^2[\",63,536870920]],[\"^3L\",[70,\"^1L\",7,536870919]],[\"^3L\",[70,\"^1L\",63,536870919]],[\"^3L\",[70,\"^Y\",63,536870916]],[\"^3L\",[70,\"^2M\",\"Sep 11th, 2024\",536870916]],[\"^3L\",[70,\"^:\",536870919,536870920]],[\"^3L\",[70,\"^35\",\"journal\",536870916]],[\"^3L\",[70,\"^1>\",1726061232560,536870916]],[\"^3L\",[70,\"^17\",\"~u00000001-2024-0911-0000-000000000000\",536870916]],[\"^3L\",[71,\"^23\",1726061232433,536870916]],[\"^3L\",[71,\"^2J\",\"^3M\",536870916]],[\"^3L\",[71,\"^3>\",\"bFa\",536870916]],[\"^3L\",[71,\"^3A\",72,536870916]],[\"^3L\",[71,\"^30\",72,536870916]],[\"^3L\",[71,\"^2[\",72,536870920]],[\"^3L\",[71,\"^1L\",72,536870919]],[\"^3L\",[71,\"^2M\",\"All Pages Default View\",536870916]],[\"^3L\",[71,\"^:\",536870919,536870920]],[\"^3L\",[71,\"^1>\",1726061232433,536870916]],[\"^3L\",[71,\"^17\",\"~u66e19ab0-2404-41b2-9320-56f947027826\",536870916]],[\"^3L\",[71,\"^2C\",72,536870916]],[\"^3L\",[72,\"^23\",1726061232433,536870916]],[\"^3L\",[72,\"^2J\",\"^3M\",536870916]],[\"^3L\",[72,\"^3B\",\"$$$views\",536870916]],[\"^3L\",[72,\"^2M\",\"$$$views\",536870916]],[\"^3L\",[72,\"^:\",536870919,536870920]],[\"^3L\",[72,\"^35\",\"hidden\",536870916]],[\"^3L\",[72,\"^1>\",1726061232433,536870916]],[\"^3L\",[72,\"^17\",\"~u66e19ab0-4bdf-4ef3-bbbe-acf6d9a7af1f\",536870916]],[\"^3L\",[73,\"^23\",1726061232561,536870916]],[\"^3L\",[73,\"^2J\",\"^3M\",536870916]],[\"^3L\",[73,\"^3>\",\"a0\",536870916]],[\"^3L\",[73,\"^3A\",70,536870916]],[\"^3L\",[73,\"^30\",70,536870916]],[\"^3L\",[73,\"^2M\",\"\",536870916]],[\"^3L\",[73,\"^:\",536870916,536870917]],[\"^3L\",[73,\"^1>\",1726061232561,536870916]],[\"^3L\",[73,\"^17\",\"~u66e19ab0-867a-4a68-a1c8-595db0c5693b\",536870916]],[\"^3L\",[74,\"^23\",1726061232385,536870916]],[\"^3L\",[74,\"^2J\",\"^3M\",536870916]],[\"^3L\",[74,\"^3B\",\"contents\",536870916]],[\"^3L\",[74,\"^2M\",\"Contents\",536870916]],[\"^3L\",[74,\"^:\",536870916,536870917]],[\"^3L\",[74,\"^35\",\"page\",536870916]],[\"^3L\",[74,\"^1>\",1726061232385,536870916]],[\"^3L\",[74,\"^17\",\"~u66e19ab0-d197-4e4f-83b0-0894bef1b6c4\",536870916]],[\"^3L\",[74,\"^O\",true,536870916]],[\"^3L\",[75,\"^:\",536870916,536870917]],[\"^3L\",[75,\"^5\",\"^1K\",536870916]],[\"^3L\",[75,\"^X\",\"f5df6b98-74ac-4d2e-9cd8-8f80bd2fb524\",536870916]]]]]]") (def example-db (dt/read-transit-str example-db-transit)) diff --git a/src/test/frontend/db/db_based_model_test.cljs b/src/test/frontend/db/db_based_model_test.cljs index f0e0a8c5aa..e364dea7ec 100644 --- a/src/test/frontend/db/db_based_model_test.cljs +++ b/src/test/frontend/db/db_based_model_test.cljs @@ -24,7 +24,7 @@ (let [opts {:redirect? false :create-first-block? false :class? true} _ (test-helper/create-page! "class1" opts) _ (test-helper/create-page! "class2" opts)] - (is (= ["Card" "Journal" "Query" "Root tag" "Task" "class1" "class2"] (sort (map :block/title (model/get-all-classes repo))))))) + (is (= ["Card" "Journal" "Query" "Root Tag" "Task" "class1" "class2"] (sort (map :block/title (model/get-all-classes repo))))))) (deftest ^:fix-me get-class-objects-test (let [opts {:redirect? false :create-first-block? false :class? true}