A messy experiment. There will be bugs.
Last active
December 23, 2015 01:59
-
-
Save dribnet/6564287 to your computer and use it in GitHub Desktop.
experimental async boids with controls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns boids | |
(:require-macros | |
[mrhyde.jso :refer [jso]] | |
[cljs.core.async.macros :refer [go alt!]] | |
[mrhyde.reader]) | |
(:require | |
[mrhyde.extend-js] | |
[cljs.core.async :as async | |
:refer [<!! close! alts! <! >! chan put! timeout]] | |
[strokes :refer [d3 timer]])) | |
(strokes/bootstrap) | |
(def width 960) | |
(def height 500) | |
(declare boids) | |
(declare add-boids) | |
(declare settings) | |
(def settings #jsr { | |
:randomness 4.0 | |
:neighborhood 80.0 | |
:momentum 1.0 | |
:avoidance 8.0 | |
:cohesion 1.0 | |
:consistency 0.4 | |
:jump 3.0 | |
:timeout 100 | |
:num-boids 20 | |
:dead-prop 0.25 | |
:renew #(do (reset! boids {}) (add-boids (int (:num-boids settings))))}) | |
(let [gui (dat.GUI.)] | |
(.close gui) | |
(.add gui settings "randomness" 0 10) | |
(.add gui settings "momentum" 0 10) | |
(.add gui settings "avoidance" 0 10) | |
(.add gui settings "cohesion" 0 10) | |
(.add gui settings "consistency" 0 10) | |
(.add gui settings "jump" 1 30) | |
(.add gui settings "timeout" 1 3000) | |
(.add gui settings "num-boids" 0 100) | |
(.add gui settings "dead-prop" 0 1) | |
(.add gui settings "neighborhood" 1 200) | |
(.add gui settings "renew")) | |
(defn rand-range [low high] | |
(+ low (rand (- high low)))) | |
(defn newboid [] | |
{:id (str (gensym "boid-")) | |
:loc [(rand-int width) (rand-int height)] | |
:lastd (mapv #(rand-range -1 1) (range 2)) | |
:dead (< (rand) (:dead-prop settings))}) | |
(defn gen-boids [n] | |
(into {} (map #(vector (:id %) %) | |
(vec (take n (repeatedly newboid)))))) | |
(def boids (atom {})) | |
(def colorfn (strokes/category20c)) | |
(def svg (-> d3 (.select "body") (.append "svg") | |
(.attr {:width width :height height}))) | |
(defn orientation [b] | |
(let [[dx dy] (:lastd b)] | |
(if (and (zero? dx) (zero? dy)) | |
0 | |
(Math/atan2 dy dx)))) | |
(defn angle-to-svg [a] | |
(/ (* 180 a) Math/PI)) | |
(defn boid-transform [b] | |
(let [[x y] (:loc b)] | |
(str "translate(" x "," y ") " | |
"rotate (" (-> b orientation angle-to-svg) ")"))) | |
(defn draw-boids [] | |
(let [shapes (-> svg (.selectAll "polygon") (.data (vec (vals @boids)) :id))] | |
; ENTER - create new elments as needed | |
(-> shapes (.enter) | |
(.append "polygon") | |
(.attr "points" "20,0 0,10 -10,0 0,-10") | |
(.style { | |
; :what #(.log js/console (:id %)) | |
:fill #(if (:dead %1) "black" (colorfn %2)) | |
:fill-opacity 1e-6}) | |
(.transition) | |
(.duration 750) | |
(.style {:fill-opacity 1})) | |
; Update new and old | |
(-> shapes | |
(.attr {:transform boid-transform})) | |
; EXIT - remove old elements as needed. | |
(-> shapes (.exit) (.remove)))) | |
; exit transition not working | |
; (-> shapes (.exit) | |
; (.transition) | |
; (.duration 750) | |
; (.style {:fill-opacity 1e-6}) | |
; (.remove)) | |
; ; return true if there was an exit | |
; (> (-> shapes (.exit) .-length) 1))) | |
(defn momentum [b] | |
(:lastd b)) | |
(defn randomness [b] | |
(let [s 0.05 | |
x (rand-range -1.0 1.0) | |
y (rand-range -1.0 1.0) | |
l (Math/sqrt (+ (* x x) (* y y)))] | |
[(/ (* s x) l) (/ (* s y) l)])) | |
(defn avoidance [b nbrs] | |
(let [pos (:loc b) | |
dxys (mapv #(mapv - pos (:loc %)) nbrs) | |
lensquared (mapv (fn [[x y]] (+ (* x x) (* y y))) dxys) | |
xys (mapv (fn [[dx dy] l] | |
(let [denom (+ (* l l) 1)] [(/ dx denom) (/ dy denom)])) | |
dxys lensquared) | |
v (reduce #(mapv + % %2) [0 0] xys) | |
ct (if (empty? nbrs) 1 (count nbrs))] | |
(mapv #(/ (* 9000 %) ct) v))) | |
(defn cohesion [b nbrs] | |
(let [pos (:loc b) | |
dxys (mapv #(mapv - pos (:loc %)) nbrs) | |
v (reduce #(mapv + % %2) [0 0] dxys) | |
ct (if (empty? nbrs) 1 (count nbrs))] | |
(mapv #(/ (/ % -100) ct) v))) | |
(defn consistency [b nbrs] | |
(let [pos (:loc b) | |
dxys (mapv momentum nbrs) | |
v (reduce #(mapv + % %2) [0 0] dxys) | |
ct (if (empty? nbrs) 1 (count nbrs))] | |
(mapv #(/ % ct) v))) | |
(defn wrap [[x y]] | |
[(mod x width) (mod y height)]) | |
(defn is-near? [pos r b] | |
(let [dv (mapv - pos (:loc b)) | |
md (reduce + (mapv Math/abs dv))] | |
; are we already outside the bounding box (or coincident) | |
(if (or (> md r) (zero? md)) | |
false | |
(let [[x y] dv | |
l (Math/sqrt (+ (* x x) (* y y)))] | |
(< l r))))) | |
(defn neighbors-of [b] | |
(filter (partial is-near? (:loc b) (:neighborhood settings)) | |
(vals (dissoc @boids (:id b))))) | |
(defn update-one-boid [b] | |
(if (:dead b) | |
b | |
(let [loc (:loc b) | |
neighbors (neighbors-of b) | |
live-neighbors (remove :dead neighbors) | |
ran (mapv #(* % (:randomness settings)) (randomness b)) | |
mom (mapv #(* % (:momentum settings)) (momentum b)) | |
avd (mapv #(* % (:avoidance settings)) (avoidance b neighbors)) | |
coh (mapv #(* % (:cohesion settings)) (cohesion b live-neighbors)) | |
con (mapv #(* % (:consistency settings)) (consistency b live-neighbors)) | |
[dx dy] (mapv + ran mom avd coh con) | |
dis (Math/sqrt (+ (* dx dx) (* dy dy))) | |
jump (:jump settings) | |
nowd (if (> dis 0) | |
(map #(* (/ % dis) jump) [dx dy]) | |
[0 0]) | |
lastd (mapv #(+ (* 0.7 %) (* 0.3 %2)) (momentum b) nowd) | |
loc (mapv + loc lastd)] | |
(merge b {:loc (wrap loc) :lastd lastd})))) | |
(defn run-one-boid [id] | |
(let [tout (rand-range 1 (:timeout settings))] | |
(go (while (get @boids id) | |
(<! (timeout tout)) | |
(swap! boids #(update-in % [id] update-one-boid)))))) | |
(defn update-all-boids [m] | |
(into {} (for [[k v] m] [k (update-one-boid v)]))) | |
(defn add-boids [n] | |
(let [m (gen-boids n)] | |
(swap! boids #(merge % m)) | |
(doseq [k (keys m)] | |
(run-one-boid k)))) | |
(add-boids (int (:num-boids settings))) | |
(go (while true | |
(<! (timeout 1)) | |
(let [ct (count @boids) | |
target (int (:num-boids settings))] | |
(cond | |
(> ct target) | |
(swap! boids #(into {} (take target %))) | |
(< ct target) | |
(add-boids (- target ct)))))) | |
(doseq [k (keys @boids)] | |
(run-one-boid k)) | |
(timer (fn [] | |
; (update-boids) | |
(draw-boids) | |
; (if (draw-boids) | |
; (-> d3 .-timer .flush)) | |
; ((:flush timer))) | |
false)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var COMPILED = !0, goog = goog || {}; | |
goog.global = this; | |
goog.DEBUG = !0; | |
goog.LOCALE = "en"; | |
goog.TRUSTED_SITE = !0; | |
goog.provide = function(a) { | |
if(!COMPILED) { | |
if(goog.isProvided_(a)) { | |
throw Error('Namespace "' + a + '" already declared.'); | |
} | |
delete goog.implicitNamespaces_[a]; | |
for(var b = a;(b = b.substring(0, b.lastIndexOf("."))) && !goog.getObjectByName(b);) { | |
goog.implicitNamespaces_[b] = !0 | |
} | |
} | |
goog.exportPath_(a) | |
}; | |
goog.setTestOnly = function(a) { | |
if(COMPILED && !goog.DEBUG) { | |
throw a = a || "", Error("Importing test-only code into non-debug environment" + a ? ": " + a : "."); | |
} | |
}; | |
COMPILED || (goog.isProvided_ = function(a) { | |
return!goog.implicitNamespaces_[a] && !!goog.getObjectByName(a) | |
}, goog.implicitNamespaces_ = {}); | |
goog.exportPath_ = function(a, b, c) { | |
a = a.split("."); | |
c = c || goog.global; | |
a[0] in c || !c.execScript || c.execScript("var " + a[0]); | |
for(var d;a.length && (d = a.shift());) { | |
!a.length && goog.isDef(b) ? c[d] = b : c = c[d] ? c[d] : c[d] = {} | |
} | |
}; | |
goog.getObjectByName = function(a, b) { | |
for(var c = a.split("."), d = b || goog.global, e;e = c.shift();) { | |
if(goog.isDefAndNotNull(d[e])) { | |
d = d[e] | |
}else { | |
return null | |
} | |
} | |
return d | |
}; | |
goog.globalize = function(a, b) { | |
var c = b || goog.global, d; | |
for(d in a) { | |
c[d] = a[d] | |
} | |
}; | |
goog.addDependency = function(a, b, c) { | |
if(!COMPILED) { | |
var d; | |
a = a.replace(/\\/g, "/"); | |
for(var e = goog.dependencies_, f = 0;d = b[f];f++) { | |
e.nameToPath[d] = a, a in e.pathToNames || (e.pathToNames[a] = {}), e.pathToNames[a][d] = !0 | |
} | |
for(d = 0;b = c[d];d++) { | |
a in e.requires || (e.requires[a] = {}), e.requires[a][b] = !0 | |
} | |
} | |
}; | |
goog.ENABLE_DEBUG_LOADER = !0; | |
goog.require = function(a) { | |
if(!COMPILED && !goog.isProvided_(a)) { | |
if(goog.ENABLE_DEBUG_LOADER) { | |
var b = goog.getPathFromDeps_(a); | |
if(b) { | |
goog.included_[b] = !0; | |
goog.writeScripts_(); | |
return | |
} | |
} | |
a = "goog.require could not find: " + a; | |
goog.global.console && goog.global.console.error(a); | |
throw Error(a); | |
} | |
}; | |
goog.basePath = ""; | |
goog.nullFunction = function() { | |
}; | |
goog.identityFunction = function(a, b) { | |
return a | |
}; | |
goog.abstractMethod = function() { | |
throw Error("unimplemented abstract method"); | |
}; | |
goog.addSingletonGetter = function(a) { | |
a.getInstance = function() { | |
if(a.instance_) { | |
return a.instance_ | |
} | |
goog.DEBUG && (goog.instantiatedSingletons_[goog.instantiatedSingletons_.length] = a); | |
return a.instance_ = new a | |
} | |
}; | |
goog.instantiatedSingletons_ = []; | |
!COMPILED && goog.ENABLE_DEBUG_LOADER && (goog.included_ = {}, goog.dependencies_ = {pathToNames:{}, nameToPath:{}, requires:{}, visited:{}, written:{}}, goog.inHtmlDocument_ = function() { | |
var a = goog.global.document; | |
return"undefined" != typeof a && "write" in a | |
}, goog.findBasePath_ = function() { | |
if(goog.global.CLOSURE_BASE_PATH) { | |
goog.basePath = goog.global.CLOSURE_BASE_PATH | |
}else { | |
if(goog.inHtmlDocument_()) { | |
for(var a = goog.global.document.getElementsByTagName("script"), b = a.length - 1;0 <= b;--b) { | |
var c = a[b].src, d = c.lastIndexOf("?"), d = -1 == d ? c.length : d; | |
if("base.js" == c.substr(d - 7, 7)) { | |
goog.basePath = c.substr(0, d - 7); | |
break | |
} | |
} | |
} | |
} | |
}, goog.importScript_ = function(a) { | |
var b = goog.global.CLOSURE_IMPORT_SCRIPT || goog.writeScriptTag_; | |
!goog.dependencies_.written[a] && b(a) && (goog.dependencies_.written[a] = !0) | |
}, goog.writeScriptTag_ = function(a) { | |
if(goog.inHtmlDocument_()) { | |
var b = goog.global.document; | |
if("complete" == b.readyState) { | |
if(/\bdeps.js$/.test(a)) { | |
return!1 | |
} | |
throw Error('Cannot write "' + a + '" after document load'); | |
} | |
b.write('\x3cscript type\x3d"text/javascript" src\x3d"' + a + '"\x3e\x3c/script\x3e'); | |
return!0 | |
} | |
return!1 | |
}, goog.writeScripts_ = function() { | |
function a(e) { | |
if(!(e in d.written)) { | |
if(!(e in d.visited) && (d.visited[e] = !0, e in d.requires)) { | |
for(var g in d.requires[e]) { | |
if(!goog.isProvided_(g)) { | |
if(g in d.nameToPath) { | |
a(d.nameToPath[g]) | |
}else { | |
throw Error("Undefined nameToPath for " + g); | |
} | |
} | |
} | |
} | |
e in c || (c[e] = !0, b.push(e)) | |
} | |
} | |
var b = [], c = {}, d = goog.dependencies_, e; | |
for(e in goog.included_) { | |
d.written[e] || a(e) | |
} | |
for(e = 0;e < b.length;e++) { | |
if(b[e]) { | |
goog.importScript_(goog.basePath + b[e]) | |
}else { | |
throw Error("Undefined script input"); | |
} | |
} | |
}, goog.getPathFromDeps_ = function(a) { | |
return a in goog.dependencies_.nameToPath ? goog.dependencies_.nameToPath[a] : null | |
}, goog.findBasePath_(), goog.global.CLOSURE_NO_DEPS || goog.importScript_(goog.basePath + "deps.js")); | |
goog.typeOf = function(a) { | |
var b = typeof a; | |
if("object" == b) { | |
if(a) { | |
if(a instanceof Array) { | |
return"array" | |
} | |
if(a instanceof Object) { | |
return b | |
} | |
var c = Object.prototype.toString.call(a); | |
if("[object Window]" == c) { | |
return"object" | |
} | |
if("[object Array]" == c || "number" == typeof a.length && "undefined" != typeof a.splice && "undefined" != typeof a.propertyIsEnumerable && !a.propertyIsEnumerable("splice")) { | |
return"array" | |
} | |
if("[object Function]" == c || "undefined" != typeof a.call && "undefined" != typeof a.propertyIsEnumerable && !a.propertyIsEnumerable("call")) { | |
return"function" | |
} | |
}else { | |
return"null" | |
} | |
}else { | |
if("function" == b && "undefined" == typeof a.call) { | |
return"object" | |
} | |
} | |
return b | |
}; | |
goog.isDef = function(a) { | |
return void 0 !== a | |
}; | |
goog.isNull = function(a) { | |
return null === a | |
}; | |
goog.isDefAndNotNull = function(a) { | |
return null != a | |
}; | |
goog.isArray = function(a) { | |
return"array" == goog.typeOf(a) | |
}; | |
goog.isArrayLike = function(a) { | |
var b = goog.typeOf(a); | |
return"array" == b || "object" == b && "number" == typeof a.length | |
}; | |
goog.isDateLike = function(a) { | |
return goog.isObject(a) && "function" == typeof a.getFullYear | |
}; | |
goog.isString = function(a) { | |
return"string" == typeof a | |
}; | |
goog.isBoolean = function(a) { | |
return"boolean" == typeof a | |
}; | |
goog.isNumber = function(a) { | |
return"number" == typeof a | |
}; | |
goog.isFunction = function(a) { | |
return"function" == goog.typeOf(a) | |
}; | |
goog.isObject = function(a) { | |
var b = typeof a; | |
return"object" == b && null != a || "function" == b | |
}; | |
goog.getUid = function(a) { | |
return a[goog.UID_PROPERTY_] || (a[goog.UID_PROPERTY_] = ++goog.uidCounter_) | |
}; | |
goog.removeUid = function(a) { | |
"removeAttribute" in a && a.removeAttribute(goog.UID_PROPERTY_); | |
try { | |
delete a[goog.UID_PROPERTY_] | |
}catch(b) { | |
} | |
}; | |
goog.UID_PROPERTY_ = "closure_uid_" + (1E9 * Math.random() >>> 0); | |
goog.uidCounter_ = 0; | |
goog.getHashCode = goog.getUid; | |
goog.removeHashCode = goog.removeUid; | |
goog.cloneObject = function(a) { | |
var b = goog.typeOf(a); | |
if("object" == b || "array" == b) { | |
if(a.clone) { | |
return a.clone() | |
} | |
var b = "array" == b ? [] : {}, c; | |
for(c in a) { | |
b[c] = goog.cloneObject(a[c]) | |
} | |
return b | |
} | |
return a | |
}; | |
goog.bindNative_ = function(a, b, c) { | |
return a.call.apply(a.bind, arguments) | |
}; | |
goog.bindJs_ = function(a, b, c) { | |
if(!a) { | |
throw Error(); | |
} | |
if(2 < arguments.length) { | |
var d = Array.prototype.slice.call(arguments, 2); | |
return function() { | |
var c = Array.prototype.slice.call(arguments); | |
Array.prototype.unshift.apply(c, d); | |
return a.apply(b, c) | |
} | |
} | |
return function() { | |
return a.apply(b, arguments) | |
} | |
}; | |
goog.bind = function(a, b, c) { | |
Function.prototype.bind && -1 != Function.prototype.bind.toString().indexOf("native code") ? goog.bind = goog.bindNative_ : goog.bind = goog.bindJs_; | |
return goog.bind.apply(null, arguments) | |
}; | |
goog.partial = function(a, b) { | |
var c = Array.prototype.slice.call(arguments, 1); | |
return function() { | |
var b = Array.prototype.slice.call(arguments); | |
b.unshift.apply(b, c); | |
return a.apply(this, b) | |
} | |
}; | |
goog.mixin = function(a, b) { | |
for(var c in b) { | |
a[c] = b[c] | |
} | |
}; | |
goog.now = goog.TRUSTED_SITE && Date.now || function() { | |
return+new Date | |
}; | |
goog.globalEval = function(a) { | |
if(goog.global.execScript) { | |
goog.global.execScript(a, "JavaScript") | |
}else { | |
if(goog.global.eval) { | |
if(null == goog.evalWorksForGlobals_ && (goog.global.eval("var _et_ \x3d 1;"), "undefined" != typeof goog.global._et_ ? (delete goog.global._et_, goog.evalWorksForGlobals_ = !0) : goog.evalWorksForGlobals_ = !1), goog.evalWorksForGlobals_) { | |
goog.global.eval(a) | |
}else { | |
var b = goog.global.document, c = b.createElement("script"); | |
c.type = "text/javascript"; | |
c.defer = !1; | |
c.appendChild(b.createTextNode(a)); | |
b.body.appendChild(c); | |
b.body.removeChild(c) | |
} | |
}else { | |
throw Error("goog.globalEval not available"); | |
} | |
} | |
}; | |
goog.evalWorksForGlobals_ = null; | |
goog.getCssName = function(a, b) { | |
var c = function(a) { | |
return goog.cssNameMapping_[a] || a | |
}, d = function(a) { | |
a = a.split("-"); | |
for(var b = [], d = 0;d < a.length;d++) { | |
b.push(c(a[d])) | |
} | |
return b.join("-") | |
}, d = goog.cssNameMapping_ ? "BY_WHOLE" == goog.cssNameMappingStyle_ ? c : d : function(a) { | |
return a | |
}; | |
return b ? a + "-" + d(b) : d(a) | |
}; | |
goog.setCssNameMapping = function(a, b) { | |
goog.cssNameMapping_ = a; | |
goog.cssNameMappingStyle_ = b | |
}; | |
!COMPILED && goog.global.CLOSURE_CSS_NAME_MAPPING && (goog.cssNameMapping_ = goog.global.CLOSURE_CSS_NAME_MAPPING); | |
goog.getMsg = function(a, b) { | |
var c = b || {}, d; | |
for(d in c) { | |
var e = ("" + c[d]).replace(/\$/g, "$$$$"); | |
a = a.replace(RegExp("\\{\\$" + d + "\\}", "gi"), e) | |
} | |
return a | |
}; | |
goog.getMsgWithFallback = function(a, b) { | |
return a | |
}; | |
goog.exportSymbol = function(a, b, c) { | |
goog.exportPath_(a, b, c) | |
}; | |
goog.exportProperty = function(a, b, c) { | |
a[b] = c | |
}; | |
goog.inherits = function(a, b) { | |
function c() { | |
} | |
c.prototype = b.prototype; | |
a.superClass_ = b.prototype; | |
a.prototype = new c; | |
a.prototype.constructor = a | |
}; | |
goog.base = function(a, b, c) { | |
var d = arguments.callee.caller; | |
if(d.superClass_) { | |
return d.superClass_.constructor.apply(a, Array.prototype.slice.call(arguments, 1)) | |
} | |
for(var e = Array.prototype.slice.call(arguments, 2), f = !1, g = a.constructor;g;g = g.superClass_ && g.superClass_.constructor) { | |
if(g.prototype[b] === d) { | |
f = !0 | |
}else { | |
if(f) { | |
return g.prototype[b].apply(a, e) | |
} | |
} | |
} | |
if(a[b] === d) { | |
return a.constructor.prototype[b].apply(a, e) | |
} | |
throw Error("goog.base called from a method of one name to a method of a different name"); | |
}; | |
goog.scope = function(a) { | |
a.call(goog.global) | |
}; | |
goog.string = {}; | |
goog.string.Unicode = {NBSP:"\u00a0"}; | |
goog.string.startsWith = function(a, b) { | |
return 0 == a.lastIndexOf(b, 0) | |
}; | |
goog.string.endsWith = function(a, b) { | |
var c = a.length - b.length; | |
return 0 <= c && a.indexOf(b, c) == c | |
}; | |
goog.string.caseInsensitiveStartsWith = function(a, b) { | |
return 0 == goog.string.caseInsensitiveCompare(b, a.substr(0, b.length)) | |
}; | |
goog.string.caseInsensitiveEndsWith = function(a, b) { | |
return 0 == goog.string.caseInsensitiveCompare(b, a.substr(a.length - b.length, b.length)) | |
}; | |
goog.string.subs = function(a, b) { | |
for(var c = 1;c < arguments.length;c++) { | |
var d = String(arguments[c]).replace(/\$/g, "$$$$"); | |
a = a.replace(/\%s/, d) | |
} | |
return a | |
}; | |
goog.string.collapseWhitespace = function(a) { | |
return a.replace(/[\s\xa0]+/g, " ").replace(/^\s+|\s+$/g, "") | |
}; | |
goog.string.isEmpty = function(a) { | |
return/^[\s\xa0]*$/.test(a) | |
}; | |
goog.string.isEmptySafe = function(a) { | |
return goog.string.isEmpty(goog.string.makeSafe(a)) | |
}; | |
goog.string.isBreakingWhitespace = function(a) { | |
return!/[^\t\n\r ]/.test(a) | |
}; | |
goog.string.isAlpha = function(a) { | |
return!/[^a-zA-Z]/.test(a) | |
}; | |
goog.string.isNumeric = function(a) { | |
return!/[^0-9]/.test(a) | |
}; | |
goog.string.isAlphaNumeric = function(a) { | |
return!/[^a-zA-Z0-9]/.test(a) | |
}; | |
goog.string.isSpace = function(a) { | |
return" " == a | |
}; | |
goog.string.isUnicodeChar = function(a) { | |
return 1 == a.length && " " <= a && "~" >= a || "\u0080" <= a && "\ufffd" >= a | |
}; | |
goog.string.stripNewlines = function(a) { | |
return a.replace(/(\r\n|\r|\n)+/g, " ") | |
}; | |
goog.string.canonicalizeNewlines = function(a) { | |
return a.replace(/(\r\n|\r|\n)/g, "\n") | |
}; | |
goog.string.normalizeWhitespace = function(a) { | |
return a.replace(/\xa0|\s/g, " ") | |
}; | |
goog.string.normalizeSpaces = function(a) { | |
return a.replace(/\xa0|[ \t]+/g, " ") | |
}; | |
goog.string.collapseBreakingSpaces = function(a) { | |
return a.replace(/[\t\r\n ]+/g, " ").replace(/^[\t\r\n ]+|[\t\r\n ]+$/g, "") | |
}; | |
goog.string.trim = function(a) { | |
return a.replace(/^[\s\xa0]+|[\s\xa0]+$/g, "") | |
}; | |
goog.string.trimLeft = function(a) { | |
return a.replace(/^[\s\xa0]+/, "") | |
}; | |
goog.string.trimRight = function(a) { | |
return a.replace(/[\s\xa0]+$/, "") | |
}; | |
goog.string.caseInsensitiveCompare = function(a, b) { | |
var c = String(a).toLowerCase(), d = String(b).toLowerCase(); | |
return c < d ? -1 : c == d ? 0 : 1 | |
}; | |
goog.string.numerateCompareRegExp_ = /(\.\d+)|(\d+)|(\D+)/g; | |
goog.string.numerateCompare = function(a, b) { | |
if(a == b) { | |
return 0 | |
} | |
if(!a) { | |
return-1 | |
} | |
if(!b) { | |
return 1 | |
} | |
for(var c = a.toLowerCase().match(goog.string.numerateCompareRegExp_), d = b.toLowerCase().match(goog.string.numerateCompareRegExp_), e = Math.min(c.length, d.length), f = 0;f < e;f++) { | |
var g = c[f], h = d[f]; | |
if(g != h) { | |
return c = parseInt(g, 10), !isNaN(c) && (d = parseInt(h, 10), !isNaN(d) && c - d) ? c - d : g < h ? -1 : 1 | |
} | |
} | |
return c.length != d.length ? c.length - d.length : a < b ? -1 : 1 | |
}; | |
goog.string.urlEncode = function(a) { | |
return encodeURIComponent(String(a)) | |
}; | |
goog.string.urlDecode = function(a) { | |
return decodeURIComponent(a.replace(/\+/g, " ")) | |
}; | |
goog.string.newLineToBr = function(a, b) { | |
return a.replace(/(\r\n|\r|\n)/g, b ? "\x3cbr /\x3e" : "\x3cbr\x3e") | |
}; | |
goog.string.htmlEscape = function(a, b) { | |
if(b) { | |
return a.replace(goog.string.amperRe_, "\x26amp;").replace(goog.string.ltRe_, "\x26lt;").replace(goog.string.gtRe_, "\x26gt;").replace(goog.string.quotRe_, "\x26quot;") | |
} | |
if(!goog.string.allRe_.test(a)) { | |
return a | |
} | |
-1 != a.indexOf("\x26") && (a = a.replace(goog.string.amperRe_, "\x26amp;")); | |
-1 != a.indexOf("\x3c") && (a = a.replace(goog.string.ltRe_, "\x26lt;")); | |
-1 != a.indexOf("\x3e") && (a = a.replace(goog.string.gtRe_, "\x26gt;")); | |
-1 != a.indexOf('"') && (a = a.replace(goog.string.quotRe_, "\x26quot;")); | |
return a | |
}; | |
goog.string.amperRe_ = /&/g; | |
goog.string.ltRe_ = /</g; | |
goog.string.gtRe_ = />/g; | |
goog.string.quotRe_ = /\"/g; | |
goog.string.allRe_ = /[&<>\"]/; | |
goog.string.unescapeEntities = function(a) { | |
return goog.string.contains(a, "\x26") ? "document" in goog.global ? goog.string.unescapeEntitiesUsingDom_(a) : goog.string.unescapePureXmlEntities_(a) : a | |
}; | |
goog.string.unescapeEntitiesUsingDom_ = function(a) { | |
var b = {"\x26amp;":"\x26", "\x26lt;":"\x3c", "\x26gt;":"\x3e", "\x26quot;":'"'}, c = document.createElement("div"); | |
return a.replace(goog.string.HTML_ENTITY_PATTERN_, function(a, e) { | |
var f = b[a]; | |
if(f) { | |
return f | |
} | |
if("#" == e.charAt(0)) { | |
var g = Number("0" + e.substr(1)); | |
isNaN(g) || (f = String.fromCharCode(g)) | |
} | |
f || (c.innerHTML = a + " ", f = c.firstChild.nodeValue.slice(0, -1)); | |
return b[a] = f | |
}) | |
}; | |
goog.string.unescapePureXmlEntities_ = function(a) { | |
return a.replace(/&([^;]+);/g, function(a, c) { | |
switch(c) { | |
case "amp": | |
return"\x26"; | |
case "lt": | |
return"\x3c"; | |
case "gt": | |
return"\x3e"; | |
case "quot": | |
return'"'; | |
default: | |
if("#" == c.charAt(0)) { | |
var d = Number("0" + c.substr(1)); | |
if(!isNaN(d)) { | |
return String.fromCharCode(d) | |
} | |
} | |
return a | |
} | |
}) | |
}; | |
goog.string.HTML_ENTITY_PATTERN_ = /&([^;\s<&]+);?/g; | |
goog.string.whitespaceEscape = function(a, b) { | |
return goog.string.newLineToBr(a.replace(/ /g, " \x26#160;"), b) | |
}; | |
goog.string.stripQuotes = function(a, b) { | |
for(var c = b.length, d = 0;d < c;d++) { | |
var e = 1 == c ? b : b.charAt(d); | |
if(a.charAt(0) == e && a.charAt(a.length - 1) == e) { | |
return a.substring(1, a.length - 1) | |
} | |
} | |
return a | |
}; | |
goog.string.truncate = function(a, b, c) { | |
c && (a = goog.string.unescapeEntities(a)); | |
a.length > b && (a = a.substring(0, b - 3) + "..."); | |
c && (a = goog.string.htmlEscape(a)); | |
return a | |
}; | |
goog.string.truncateMiddle = function(a, b, c, d) { | |
c && (a = goog.string.unescapeEntities(a)); | |
if(d && a.length > b) { | |
d > b && (d = b); | |
var e = a.length - d; | |
a = a.substring(0, b - d) + "..." + a.substring(e) | |
}else { | |
a.length > b && (d = Math.floor(b / 2), e = a.length - d, a = a.substring(0, d + b % 2) + "..." + a.substring(e)) | |
} | |
c && (a = goog.string.htmlEscape(a)); | |
return a | |
}; | |
goog.string.specialEscapeChars_ = {"\x00":"\\0", "\b":"\\b", "\f":"\\f", "\n":"\\n", "\r":"\\r", "\t":"\\t", "\x0B":"\\x0B", '"':'\\"', "\\":"\\\\"}; | |
goog.string.jsEscapeCache_ = {"'":"\\'"}; | |
goog.string.quote = function(a) { | |
a = String(a); | |
if(a.quote) { | |
return a.quote() | |
} | |
for(var b = ['"'], c = 0;c < a.length;c++) { | |
var d = a.charAt(c), e = d.charCodeAt(0); | |
b[c + 1] = goog.string.specialEscapeChars_[d] || (31 < e && 127 > e ? d : goog.string.escapeChar(d)) | |
} | |
b.push('"'); | |
return b.join("") | |
}; | |
goog.string.escapeString = function(a) { | |
for(var b = [], c = 0;c < a.length;c++) { | |
b[c] = goog.string.escapeChar(a.charAt(c)) | |
} | |
return b.join("") | |
}; | |
goog.string.escapeChar = function(a) { | |
if(a in goog.string.jsEscapeCache_) { | |
return goog.string.jsEscapeCache_[a] | |
} | |
if(a in goog.string.specialEscapeChars_) { | |
return goog.string.jsEscapeCache_[a] = goog.string.specialEscapeChars_[a] | |
} | |
var b = a, c = a.charCodeAt(0); | |
if(31 < c && 127 > c) { | |
b = a | |
}else { | |
if(256 > c) { | |
if(b = "\\x", 16 > c || 256 < c) { | |
b += "0" | |
} | |
}else { | |
b = "\\u", 4096 > c && (b += "0") | |
} | |
b += c.toString(16).toUpperCase() | |
} | |
return goog.string.jsEscapeCache_[a] = b | |
}; | |
goog.string.toMap = function(a) { | |
for(var b = {}, c = 0;c < a.length;c++) { | |
b[a.charAt(c)] = !0 | |
} | |
return b | |
}; | |
goog.string.contains = function(a, b) { | |
return-1 != a.indexOf(b) | |
}; | |
goog.string.countOf = function(a, b) { | |
return a && b ? a.split(b).length - 1 : 0 | |
}; | |
goog.string.removeAt = function(a, b, c) { | |
var d = a; | |
0 <= b && (b < a.length && 0 < c) && (d = a.substr(0, b) + a.substr(b + c, a.length - b - c)); | |
return d | |
}; | |
goog.string.remove = function(a, b) { | |
var c = RegExp(goog.string.regExpEscape(b), ""); | |
return a.replace(c, "") | |
}; | |
goog.string.removeAll = function(a, b) { | |
var c = RegExp(goog.string.regExpEscape(b), "g"); | |
return a.replace(c, "") | |
}; | |
goog.string.regExpEscape = function(a) { | |
return String(a).replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g, "\\$1").replace(/\x08/g, "\\x08") | |
}; | |
goog.string.repeat = function(a, b) { | |
return Array(b + 1).join(a) | |
}; | |
goog.string.padNumber = function(a, b, c) { | |
a = goog.isDef(c) ? a.toFixed(c) : String(a); | |
c = a.indexOf("."); | |
-1 == c && (c = a.length); | |
return goog.string.repeat("0", Math.max(0, b - c)) + a | |
}; | |
goog.string.makeSafe = function(a) { | |
return null == a ? "" : String(a) | |
}; | |
goog.string.buildString = function(a) { | |
return Array.prototype.join.call(arguments, "") | |
}; | |
goog.string.getRandomString = function() { | |
return Math.floor(2147483648 * Math.random()).toString(36) + Math.abs(Math.floor(2147483648 * Math.random()) ^ goog.now()).toString(36) | |
}; | |
goog.string.compareVersions = function(a, b) { | |
for(var c = 0, d = goog.string.trim(String(a)).split("."), e = goog.string.trim(String(b)).split("."), f = Math.max(d.length, e.length), g = 0;0 == c && g < f;g++) { | |
var h = d[g] || "", k = e[g] || "", l = RegExp("(\\d*)(\\D*)", "g"), m = RegExp("(\\d*)(\\D*)", "g"); | |
do { | |
var n = l.exec(h) || ["", "", ""], p = m.exec(k) || ["", "", ""]; | |
if(0 == n[0].length && 0 == p[0].length) { | |
break | |
} | |
var c = 0 == n[1].length ? 0 : parseInt(n[1], 10), q = 0 == p[1].length ? 0 : parseInt(p[1], 10), c = goog.string.compareElements_(c, q) || goog.string.compareElements_(0 == n[2].length, 0 == p[2].length) || goog.string.compareElements_(n[2], p[2]) | |
}while(0 == c) | |
} | |
return c | |
}; | |
goog.string.compareElements_ = function(a, b) { | |
return a < b ? -1 : a > b ? 1 : 0 | |
}; | |
goog.string.HASHCODE_MAX_ = 4294967296; | |
goog.string.hashCode = function(a) { | |
for(var b = 0, c = 0;c < a.length;++c) { | |
b = 31 * b + a.charCodeAt(c), b %= goog.string.HASHCODE_MAX_ | |
} | |
return b | |
}; | |
goog.string.uniqueStringCounter_ = 2147483648 * Math.random() | 0; | |
goog.string.createUniqueString = function() { | |
return"goog_" + goog.string.uniqueStringCounter_++ | |
}; | |
goog.string.toNumber = function(a) { | |
var b = Number(a); | |
return 0 == b && goog.string.isEmpty(a) ? NaN : b | |
}; | |
goog.string.toCamelCase = function(a) { | |
return String(a).replace(/\-([a-z])/g, function(a, c) { | |
return c.toUpperCase() | |
}) | |
}; | |
goog.string.toSelectorCase = function(a) { | |
return String(a).replace(/([A-Z])/g, "-$1").toLowerCase() | |
}; | |
goog.string.toTitleCase = function(a, b) { | |
var c = goog.isString(b) ? goog.string.regExpEscape(b) : "\\s"; | |
return a.replace(RegExp("(^" + (c ? "|[" + c + "]+" : "") + ")([a-z])", "g"), function(a, b, c) { | |
return b + c.toUpperCase() | |
}) | |
}; | |
goog.string.parseInt = function(a) { | |
isFinite(a) && (a = String(a)); | |
return goog.isString(a) ? /^\s*-?0x/i.test(a) ? parseInt(a, 16) : parseInt(a, 10) : NaN | |
}; | |
goog.debug = {}; | |
goog.debug.Error = function(a) { | |
Error.captureStackTrace ? Error.captureStackTrace(this, goog.debug.Error) : this.stack = Error().stack || ""; | |
a && (this.message = String(a)) | |
}; | |
goog.inherits(goog.debug.Error, Error); | |
goog.debug.Error.prototype.name = "CustomError"; | |
goog.asserts = {}; | |
goog.asserts.ENABLE_ASSERTS = goog.DEBUG; | |
goog.asserts.AssertionError = function(a, b) { | |
b.unshift(a); | |
goog.debug.Error.call(this, goog.string.subs.apply(null, b)); | |
b.shift(); | |
this.messagePattern = a | |
}; | |
goog.inherits(goog.asserts.AssertionError, goog.debug.Error); | |
goog.asserts.AssertionError.prototype.name = "AssertionError"; | |
goog.asserts.doAssertFailure_ = function(a, b, c, d) { | |
var e = "Assertion failed"; | |
if(c) { | |
var e = e + (": " + c), f = d | |
}else { | |
a && (e += ": " + a, f = b) | |
} | |
throw new goog.asserts.AssertionError("" + e, f || []); | |
}; | |
goog.asserts.assert = function(a, b, c) { | |
goog.asserts.ENABLE_ASSERTS && !a && goog.asserts.doAssertFailure_("", null, b, Array.prototype.slice.call(arguments, 2)); | |
return a | |
}; | |
goog.asserts.fail = function(a, b) { | |
if(goog.asserts.ENABLE_ASSERTS) { | |
throw new goog.asserts.AssertionError("Failure" + (a ? ": " + a : ""), Array.prototype.slice.call(arguments, 1)); | |
} | |
}; | |
goog.asserts.assertNumber = function(a, b, c) { | |
goog.asserts.ENABLE_ASSERTS && !goog.isNumber(a) && goog.asserts.doAssertFailure_("Expected number but got %s: %s.", [goog.typeOf(a), a], b, Array.prototype.slice.call(arguments, 2)); | |
return a | |
}; | |
goog.asserts.assertString = function(a, b, c) { | |
goog.asserts.ENABLE_ASSERTS && !goog.isString(a) && goog.asserts.doAssertFailure_("Expected string but got %s: %s.", [goog.typeOf(a), a], b, Array.prototype.slice.call(arguments, 2)); | |
return a | |
}; | |
goog.asserts.assertFunction = function(a, b, c) { | |
goog.asserts.ENABLE_ASSERTS && !goog.isFunction(a) && goog.asserts.doAssertFailure_("Expected function but got %s: %s.", [goog.typeOf(a), a], b, Array.prototype.slice.call(arguments, 2)); | |
return a | |
}; | |
goog.asserts.assertObject = function(a, b, c) { | |
goog.asserts.ENABLE_ASSERTS && !goog.isObject(a) && goog.asserts.doAssertFailure_("Expected object but got %s: %s.", [goog.typeOf(a), a], b, Array.prototype.slice.call(arguments, 2)); | |
return a | |
}; | |
goog.asserts.assertArray = function(a, b, c) { | |
goog.asserts.ENABLE_ASSERTS && !goog.isArray(a) && goog.asserts.doAssertFailure_("Expected array but got %s: %s.", [goog.typeOf(a), a], b, Array.prototype.slice.call(arguments, 2)); | |
return a | |
}; | |
goog.asserts.assertBoolean = function(a, b, c) { | |
goog.asserts.ENABLE_ASSERTS && !goog.isBoolean(a) && goog.asserts.doAssertFailure_("Expected boolean but got %s: %s.", [goog.typeOf(a), a], b, Array.prototype.slice.call(arguments, 2)); | |
return a | |
}; | |
goog.asserts.assertInstanceof = function(a, b, c, d) { | |
!goog.asserts.ENABLE_ASSERTS || a instanceof b || goog.asserts.doAssertFailure_("instanceof check failed.", null, c, Array.prototype.slice.call(arguments, 3)); | |
return a | |
}; | |
goog.array = {}; | |
goog.NATIVE_ARRAY_PROTOTYPES = goog.TRUSTED_SITE; | |
goog.array.peek = function(a) { | |
return a[a.length - 1] | |
}; | |
goog.array.ARRAY_PROTOTYPE_ = Array.prototype; | |
goog.array.indexOf = goog.NATIVE_ARRAY_PROTOTYPES && goog.array.ARRAY_PROTOTYPE_.indexOf ? function(a, b, c) { | |
goog.asserts.assert(null != a.length); | |
return goog.array.ARRAY_PROTOTYPE_.indexOf.call(a, b, c) | |
} : function(a, b, c) { | |
c = null == c ? 0 : 0 > c ? Math.max(0, a.length + c) : c; | |
if(goog.isString(a)) { | |
return goog.isString(b) && 1 == b.length ? a.indexOf(b, c) : -1 | |
} | |
for(;c < a.length;c++) { | |
if(c in a && a[c] === b) { | |
return c | |
} | |
} | |
return-1 | |
}; | |
goog.array.lastIndexOf = goog.NATIVE_ARRAY_PROTOTYPES && goog.array.ARRAY_PROTOTYPE_.lastIndexOf ? function(a, b, c) { | |
goog.asserts.assert(null != a.length); | |
return goog.array.ARRAY_PROTOTYPE_.lastIndexOf.call(a, b, null == c ? a.length - 1 : c) | |
} : function(a, b, c) { | |
c = null == c ? a.length - 1 : c; | |
0 > c && (c = Math.max(0, a.length + c)); | |
if(goog.isString(a)) { | |
return goog.isString(b) && 1 == b.length ? a.lastIndexOf(b, c) : -1 | |
} | |
for(;0 <= c;c--) { | |
if(c in a && a[c] === b) { | |
return c | |
} | |
} | |
return-1 | |
}; | |
goog.array.forEach = goog.NATIVE_ARRAY_PROTOTYPES && goog.array.ARRAY_PROTOTYPE_.forEach ? function(a, b, c) { | |
goog.asserts.assert(null != a.length); | |
goog.array.ARRAY_PROTOTYPE_.forEach.call(a, b, c) | |
} : function(a, b, c) { | |
for(var d = a.length, e = goog.isString(a) ? a.split("") : a, f = 0;f < d;f++) { | |
f in e && b.call(c, e[f], f, a) | |
} | |
}; | |
goog.array.forEachRight = function(a, b, c) { | |
for(var d = a.length, e = goog.isString(a) ? a.split("") : a, d = d - 1;0 <= d;--d) { | |
d in e && b.call(c, e[d], d, a) | |
} | |
}; | |
goog.array.filter = goog.NATIVE_ARRAY_PROTOTYPES && goog.array.ARRAY_PROTOTYPE_.filter ? function(a, b, c) { | |
goog.asserts.assert(null != a.length); | |
return goog.array.ARRAY_PROTOTYPE_.filter.call(a, b, c) | |
} : function(a, b, c) { | |
for(var d = a.length, e = [], f = 0, g = goog.isString(a) ? a.split("") : a, h = 0;h < d;h++) { | |
if(h in g) { | |
var k = g[h]; | |
b.call(c, k, h, a) && (e[f++] = k) | |
} | |
} | |
return e | |
}; | |
goog.array.map = goog.NATIVE_ARRAY_PROTOTYPES && goog.array.ARRAY_PROTOTYPE_.map ? function(a, b, c) { | |
goog.asserts.assert(null != a.length); | |
return goog.array.ARRAY_PROTOTYPE_.map.call(a, b, c) | |
} : function(a, b, c) { | |
for(var d = a.length, e = Array(d), f = goog.isString(a) ? a.split("") : a, g = 0;g < d;g++) { | |
g in f && (e[g] = b.call(c, f[g], g, a)) | |
} | |
return e | |
}; | |
goog.array.reduce = function(a, b, c, d) { | |
if(a.reduce) { | |
return d ? a.reduce(goog.bind(b, d), c) : a.reduce(b, c) | |
} | |
var e = c; | |
goog.array.forEach(a, function(c, g) { | |
e = b.call(d, e, c, g, a) | |
}); | |
return e | |
}; | |
goog.array.reduceRight = function(a, b, c, d) { | |
if(a.reduceRight) { | |
return d ? a.reduceRight(goog.bind(b, d), c) : a.reduceRight(b, c) | |
} | |
var e = c; | |
goog.array.forEachRight(a, function(c, g) { | |
e = b.call(d, e, c, g, a) | |
}); | |
return e | |
}; | |
goog.array.some = goog.NATIVE_ARRAY_PROTOTYPES && goog.array.ARRAY_PROTOTYPE_.some ? function(a, b, c) { | |
goog.asserts.assert(null != a.length); | |
return goog.array.ARRAY_PROTOTYPE_.some.call(a, b, c) | |
} : function(a, b, c) { | |
for(var d = a.length, e = goog.isString(a) ? a.split("") : a, f = 0;f < d;f++) { | |
if(f in e && b.call(c, e[f], f, a)) { | |
return!0 | |
} | |
} | |
return!1 | |
}; | |
goog.array.every = goog.NATIVE_ARRAY_PROTOTYPES && goog.array.ARRAY_PROTOTYPE_.every ? function(a, b, c) { | |
goog.asserts.assert(null != a.length); | |
return goog.array.ARRAY_PROTOTYPE_.every.call(a, b, c) | |
} : function(a, b, c) { | |
for(var d = a.length, e = goog.isString(a) ? a.split("") : a, f = 0;f < d;f++) { | |
if(f in e && !b.call(c, e[f], f, a)) { | |
return!1 | |
} | |
} | |
return!0 | |
}; | |
goog.array.count = function(a, b, c) { | |
var d = 0; | |
goog.array.forEach(a, function(a, f, g) { | |
b.call(c, a, f, g) && ++d | |
}, c); | |
return d | |
}; | |
goog.array.find = function(a, b, c) { | |
b = goog.array.findIndex(a, b, c); | |
return 0 > b ? null : goog.isString(a) ? a.charAt(b) : a[b] | |
}; | |
goog.array.findIndex = function(a, b, c) { | |
for(var d = a.length, e = goog.isString(a) ? a.split("") : a, f = 0;f < d;f++) { | |
if(f in e && b.call(c, e[f], f, a)) { | |
return f | |
} | |
} | |
return-1 | |
}; | |
goog.array.findRight = function(a, b, c) { | |
b = goog.array.findIndexRight(a, b, c); | |
return 0 > b ? null : goog.isString(a) ? a.charAt(b) : a[b] | |
}; | |
goog.array.findIndexRight = function(a, b, c) { | |
for(var d = a.length, e = goog.isString(a) ? a.split("") : a, d = d - 1;0 <= d;d--) { | |
if(d in e && b.call(c, e[d], d, a)) { | |
return d | |
} | |
} | |
return-1 | |
}; | |
goog.array.contains = function(a, b) { | |
return 0 <= goog.array.indexOf(a, b) | |
}; | |
goog.array.isEmpty = function(a) { | |
return 0 == a.length | |
}; | |
goog.array.clear = function(a) { | |
if(!goog.isArray(a)) { | |
for(var b = a.length - 1;0 <= b;b--) { | |
delete a[b] | |
} | |
} | |
a.length = 0 | |
}; | |
goog.array.insert = function(a, b) { | |
goog.array.contains(a, b) || a.push(b) | |
}; | |
goog.array.insertAt = function(a, b, c) { | |
goog.array.splice(a, c, 0, b) | |
}; | |
goog.array.insertArrayAt = function(a, b, c) { | |
goog.partial(goog.array.splice, a, c, 0).apply(null, b) | |
}; | |
goog.array.insertBefore = function(a, b, c) { | |
var d; | |
2 == arguments.length || 0 > (d = goog.array.indexOf(a, c)) ? a.push(b) : goog.array.insertAt(a, b, d) | |
}; | |
goog.array.remove = function(a, b) { | |
var c = goog.array.indexOf(a, b), d; | |
(d = 0 <= c) && goog.array.removeAt(a, c); | |
return d | |
}; | |
goog.array.removeAt = function(a, b) { | |
goog.asserts.assert(null != a.length); | |
return 1 == goog.array.ARRAY_PROTOTYPE_.splice.call(a, b, 1).length | |
}; | |
goog.array.removeIf = function(a, b, c) { | |
b = goog.array.findIndex(a, b, c); | |
return 0 <= b ? (goog.array.removeAt(a, b), !0) : !1 | |
}; | |
goog.array.concat = function(a) { | |
return goog.array.ARRAY_PROTOTYPE_.concat.apply(goog.array.ARRAY_PROTOTYPE_, arguments) | |
}; | |
goog.array.toArray = function(a) { | |
var b = a.length; | |
if(0 < b) { | |
for(var c = Array(b), d = 0;d < b;d++) { | |
c[d] = a[d] | |
} | |
return c | |
} | |
return[] | |
}; | |
goog.array.clone = goog.array.toArray; | |
goog.array.extend = function(a, b) { | |
for(var c = 1;c < arguments.length;c++) { | |
var d = arguments[c], e; | |
if(goog.isArray(d) || (e = goog.isArrayLike(d)) && Object.prototype.hasOwnProperty.call(d, "callee")) { | |
a.push.apply(a, d) | |
}else { | |
if(e) { | |
for(var f = a.length, g = d.length, h = 0;h < g;h++) { | |
a[f + h] = d[h] | |
} | |
}else { | |
a.push(d) | |
} | |
} | |
} | |
}; | |
goog.array.splice = function(a, b, c, d) { | |
goog.asserts.assert(null != a.length); | |
return goog.array.ARRAY_PROTOTYPE_.splice.apply(a, goog.array.slice(arguments, 1)) | |
}; | |
goog.array.slice = function(a, b, c) { | |
goog.asserts.assert(null != a.length); | |
return 2 >= arguments.length ? goog.array.ARRAY_PROTOTYPE_.slice.call(a, b) : goog.array.ARRAY_PROTOTYPE_.slice.call(a, b, c) | |
}; | |
goog.array.removeDuplicates = function(a, b) { | |
for(var c = b || a, d = {}, e = 0, f = 0;f < a.length;) { | |
var g = a[f++], h = goog.isObject(g) ? "o" + goog.getUid(g) : (typeof g).charAt(0) + g; | |
Object.prototype.hasOwnProperty.call(d, h) || (d[h] = !0, c[e++] = g) | |
} | |
c.length = e | |
}; | |
goog.array.binarySearch = function(a, b, c) { | |
return goog.array.binarySearch_(a, c || goog.array.defaultCompare, !1, b) | |
}; | |
goog.array.binarySelect = function(a, b, c) { | |
return goog.array.binarySearch_(a, b, !0, void 0, c) | |
}; | |
goog.array.binarySearch_ = function(a, b, c, d, e) { | |
for(var f = 0, g = a.length, h;f < g;) { | |
var k = f + g >> 1, l; | |
l = c ? b.call(e, a[k], k, a) : b(d, a[k]); | |
0 < l ? f = k + 1 : (g = k, h = !l) | |
} | |
return h ? f : ~f | |
}; | |
goog.array.sort = function(a, b) { | |
goog.asserts.assert(null != a.length); | |
goog.array.ARRAY_PROTOTYPE_.sort.call(a, b || goog.array.defaultCompare) | |
}; | |
goog.array.stableSort = function(a, b) { | |
for(var c = 0;c < a.length;c++) { | |
a[c] = {index:c, value:a[c]} | |
} | |
var d = b || goog.array.defaultCompare; | |
goog.array.sort(a, function(a, b) { | |
return d(a.value, b.value) || a.index - b.index | |
}); | |
for(c = 0;c < a.length;c++) { | |
a[c] = a[c].value | |
} | |
}; | |
goog.array.sortObjectsByKey = function(a, b, c) { | |
var d = c || goog.array.defaultCompare; | |
goog.array.sort(a, function(a, c) { | |
return d(a[b], c[b]) | |
}) | |
}; | |
goog.array.isSorted = function(a, b, c) { | |
b = b || goog.array.defaultCompare; | |
for(var d = 1;d < a.length;d++) { | |
var e = b(a[d - 1], a[d]); | |
if(0 < e || 0 == e && c) { | |
return!1 | |
} | |
} | |
return!0 | |
}; | |
goog.array.equals = function(a, b, c) { | |
if(!goog.isArrayLike(a) || !goog.isArrayLike(b) || a.length != b.length) { | |
return!1 | |
} | |
var d = a.length; | |
c = c || goog.array.defaultCompareEquality; | |
for(var e = 0;e < d;e++) { | |
if(!c(a[e], b[e])) { | |
return!1 | |
} | |
} | |
return!0 | |
}; | |
goog.array.compare = function(a, b, c) { | |
return goog.array.equals(a, b, c) | |
}; | |
goog.array.compare3 = function(a, b, c) { | |
c = c || goog.array.defaultCompare; | |
for(var d = Math.min(a.length, b.length), e = 0;e < d;e++) { | |
var f = c(a[e], b[e]); | |
if(0 != f) { | |
return f | |
} | |
} | |
return goog.array.defaultCompare(a.length, b.length) | |
}; | |
goog.array.defaultCompare = function(a, b) { | |
return a > b ? 1 : a < b ? -1 : 0 | |
}; | |
goog.array.defaultCompareEquality = function(a, b) { | |
return a === b | |
}; | |
goog.array.binaryInsert = function(a, b, c) { | |
c = goog.array.binarySearch(a, b, c); | |
return 0 > c ? (goog.array.insertAt(a, b, -(c + 1)), !0) : !1 | |
}; | |
goog.array.binaryRemove = function(a, b, c) { | |
b = goog.array.binarySearch(a, b, c); | |
return 0 <= b ? goog.array.removeAt(a, b) : !1 | |
}; | |
goog.array.bucket = function(a, b) { | |
for(var c = {}, d = 0;d < a.length;d++) { | |
var e = a[d], f = b(e, d, a); | |
goog.isDef(f) && (c[f] || (c[f] = [])).push(e) | |
} | |
return c | |
}; | |
goog.array.toObject = function(a, b, c) { | |
var d = {}; | |
goog.array.forEach(a, function(e, f) { | |
d[b.call(c, e, f, a)] = e | |
}); | |
return d | |
}; | |
goog.array.range = function(a, b, c) { | |
var d = [], e = 0, f = a; | |
c = c || 1; | |
void 0 !== b && (e = a, f = b); | |
if(0 > c * (f - e)) { | |
return[] | |
} | |
if(0 < c) { | |
for(a = e;a < f;a += c) { | |
d.push(a) | |
} | |
}else { | |
for(a = e;a > f;a += c) { | |
d.push(a) | |
} | |
} | |
return d | |
}; | |
goog.array.repeat = function(a, b) { | |
for(var c = [], d = 0;d < b;d++) { | |
c[d] = a | |
} | |
return c | |
}; | |
goog.array.flatten = function(a) { | |
for(var b = [], c = 0;c < arguments.length;c++) { | |
var d = arguments[c]; | |
goog.isArray(d) ? b.push.apply(b, goog.array.flatten.apply(null, d)) : b.push(d) | |
} | |
return b | |
}; | |
goog.array.rotate = function(a, b) { | |
goog.asserts.assert(null != a.length); | |
a.length && (b %= a.length, 0 < b ? goog.array.ARRAY_PROTOTYPE_.unshift.apply(a, a.splice(-b, b)) : 0 > b && goog.array.ARRAY_PROTOTYPE_.push.apply(a, a.splice(0, -b))); | |
return a | |
}; | |
goog.array.zip = function(a) { | |
if(!arguments.length) { | |
return[] | |
} | |
for(var b = [], c = 0;;c++) { | |
for(var d = [], e = 0;e < arguments.length;e++) { | |
var f = arguments[e]; | |
if(c >= f.length) { | |
return b | |
} | |
d.push(f[c]) | |
} | |
b.push(d) | |
} | |
}; | |
goog.array.shuffle = function(a, b) { | |
for(var c = b || Math.random, d = a.length - 1;0 < d;d--) { | |
var e = Math.floor(c() * (d + 1)), f = a[d]; | |
a[d] = a[e]; | |
a[e] = f | |
} | |
}; | |
goog.object = {}; | |
goog.object.forEach = function(a, b, c) { | |
for(var d in a) { | |
b.call(c, a[d], d, a) | |
} | |
}; | |
goog.object.filter = function(a, b, c) { | |
var d = {}, e; | |
for(e in a) { | |
b.call(c, a[e], e, a) && (d[e] = a[e]) | |
} | |
return d | |
}; | |
goog.object.map = function(a, b, c) { | |
var d = {}, e; | |
for(e in a) { | |
d[e] = b.call(c, a[e], e, a) | |
} | |
return d | |
}; | |
goog.object.some = function(a, b, c) { | |
for(var d in a) { | |
if(b.call(c, a[d], d, a)) { | |
return!0 | |
} | |
} | |
return!1 | |
}; | |
goog.object.every = function(a, b, c) { | |
for(var d in a) { | |
if(!b.call(c, a[d], d, a)) { | |
return!1 | |
} | |
} | |
return!0 | |
}; | |
goog.object.getCount = function(a) { | |
var b = 0, c; | |
for(c in a) { | |
b++ | |
} | |
return b | |
}; | |
goog.object.getAnyKey = function(a) { | |
for(var b in a) { | |
return b | |
} | |
}; | |
goog.object.getAnyValue = function(a) { | |
for(var b in a) { | |
return a[b] | |
} | |
}; | |
goog.object.contains = function(a, b) { | |
return goog.object.containsValue(a, b) | |
}; | |
goog.object.getValues = function(a) { | |
var b = [], c = 0, d; | |
for(d in a) { | |
b[c++] = a[d] | |
} | |
return b | |
}; | |
goog.object.getKeys = function(a) { | |
var b = [], c = 0, d; | |
for(d in a) { | |
b[c++] = d | |
} | |
return b | |
}; | |
goog.object.getValueByKeys = function(a, b) { | |
for(var c = goog.isArrayLike(b), d = c ? b : arguments, c = c ? 0 : 1;c < d.length && (a = a[d[c]], goog.isDef(a));c++) { | |
} | |
return a | |
}; | |
goog.object.containsKey = function(a, b) { | |
return b in a | |
}; | |
goog.object.containsValue = function(a, b) { | |
for(var c in a) { | |
if(a[c] == b) { | |
return!0 | |
} | |
} | |
return!1 | |
}; | |
goog.object.findKey = function(a, b, c) { | |
for(var d in a) { | |
if(b.call(c, a[d], d, a)) { | |
return d | |
} | |
} | |
}; | |
goog.object.findValue = function(a, b, c) { | |
return(b = goog.object.findKey(a, b, c)) && a[b] | |
}; | |
goog.object.isEmpty = function(a) { | |
for(var b in a) { | |
return!1 | |
} | |
return!0 | |
}; | |
goog.object.clear = function(a) { | |
for(var b in a) { | |
delete a[b] | |
} | |
}; | |
goog.object.remove = function(a, b) { | |
var c; | |
(c = b in a) && delete a[b]; | |
return c | |
}; | |
goog.object.add = function(a, b, c) { | |
if(b in a) { | |
throw Error('The object already contains the key "' + b + '"'); | |
} | |
goog.object.set(a, b, c) | |
}; | |
goog.object.get = function(a, b, c) { | |
return b in a ? a[b] : c | |
}; | |
goog.object.set = function(a, b, c) { | |
a[b] = c | |
}; | |
goog.object.setIfUndefined = function(a, b, c) { | |
return b in a ? a[b] : a[b] = c | |
}; | |
goog.object.clone = function(a) { | |
var b = {}, c; | |
for(c in a) { | |
b[c] = a[c] | |
} | |
return b | |
}; | |
goog.object.unsafeClone = function(a) { | |
var b = goog.typeOf(a); | |
if("object" == b || "array" == b) { | |
if(a.clone) { | |
return a.clone() | |
} | |
var b = "array" == b ? [] : {}, c; | |
for(c in a) { | |
b[c] = goog.object.unsafeClone(a[c]) | |
} | |
return b | |
} | |
return a | |
}; | |
goog.object.transpose = function(a) { | |
var b = {}, c; | |
for(c in a) { | |
b[a[c]] = c | |
} | |
return b | |
}; | |
goog.object.PROTOTYPE_FIELDS_ = "constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" "); | |
goog.object.extend = function(a, b) { | |
for(var c, d, e = 1;e < arguments.length;e++) { | |
d = arguments[e]; | |
for(c in d) { | |
a[c] = d[c] | |
} | |
for(var f = 0;f < goog.object.PROTOTYPE_FIELDS_.length;f++) { | |
c = goog.object.PROTOTYPE_FIELDS_[f], Object.prototype.hasOwnProperty.call(d, c) && (a[c] = d[c]) | |
} | |
} | |
}; | |
goog.object.create = function(a) { | |
var b = arguments.length; | |
if(1 == b && goog.isArray(arguments[0])) { | |
return goog.object.create.apply(null, arguments[0]) | |
} | |
if(b % 2) { | |
throw Error("Uneven number of arguments"); | |
} | |
for(var c = {}, d = 0;d < b;d += 2) { | |
c[arguments[d]] = arguments[d + 1] | |
} | |
return c | |
}; | |
goog.object.createSet = function(a) { | |
var b = arguments.length; | |
if(1 == b && goog.isArray(arguments[0])) { | |
return goog.object.createSet.apply(null, arguments[0]) | |
} | |
for(var c = {}, d = 0;d < b;d++) { | |
c[arguments[d]] = !0 | |
} | |
return c | |
}; | |
goog.object.createImmutableView = function(a) { | |
var b = a; | |
Object.isFrozen && !Object.isFrozen(a) && (b = Object.create(a), Object.freeze(b)); | |
return b | |
}; | |
goog.object.isImmutableView = function(a) { | |
return!!Object.isFrozen && Object.isFrozen(a) | |
}; | |
goog.string.format = function(a, b) { | |
var c = Array.prototype.slice.call(arguments), d = c.shift(); | |
if("undefined" == typeof d) { | |
throw Error("[goog.string.format] Template required"); | |
} | |
return d.replace(/%([0\-\ \+]*)(\d+)?(\.(\d+))?([%sfdiu])/g, function(a, b, d, h, k, l, m, n) { | |
if("%" == l) { | |
return"%" | |
} | |
var p = c.shift(); | |
if("undefined" == typeof p) { | |
throw Error("[goog.string.format] Not enough arguments"); | |
} | |
arguments[0] = p; | |
return goog.string.format.demuxes_[l].apply(null, arguments) | |
}) | |
}; | |
goog.string.format.demuxes_ = {}; | |
goog.string.format.demuxes_.s = function(a, b, c, d, e, f, g, h) { | |
return isNaN(c) || "" == c || a.length >= c ? a : a = -1 < b.indexOf("-", 0) ? a + goog.string.repeat(" ", c - a.length) : goog.string.repeat(" ", c - a.length) + a | |
}; | |
goog.string.format.demuxes_.f = function(a, b, c, d, e, f, g, h) { | |
d = a.toString(); | |
isNaN(e) || "" == e || (d = a.toFixed(e)); | |
f = 0 > a ? "-" : 0 <= b.indexOf("+") ? "+" : 0 <= b.indexOf(" ") ? " " : ""; | |
0 <= a && (d = f + d); | |
if(isNaN(c) || d.length >= c) { | |
return d | |
} | |
d = isNaN(e) ? Math.abs(a).toString() : Math.abs(a).toFixed(e); | |
a = c - d.length - f.length; | |
0 <= b.indexOf("-", 0) ? d = f + d + goog.string.repeat(" ", a) : (b = 0 <= b.indexOf("0", 0) ? "0" : " ", d = f + goog.string.repeat(b, a) + d); | |
return d | |
}; | |
goog.string.format.demuxes_.d = function(a, b, c, d, e, f, g, h) { | |
return goog.string.format.demuxes_.f(parseInt(a, 10), b, c, d, 0, f, g, h) | |
}; | |
goog.string.format.demuxes_.i = goog.string.format.demuxes_.d; | |
goog.string.format.demuxes_.u = goog.string.format.demuxes_.d; | |
goog.string.StringBuffer = function(a, b) { | |
null != a && this.append.apply(this, arguments) | |
}; | |
goog.string.StringBuffer.prototype.buffer_ = ""; | |
goog.string.StringBuffer.prototype.set = function(a) { | |
this.buffer_ = "" + a | |
}; | |
goog.string.StringBuffer.prototype.append = function(a, b, c) { | |
this.buffer_ += a; | |
if(null != b) { | |
for(var d = 1;d < arguments.length;d++) { | |
this.buffer_ += arguments[d] | |
} | |
} | |
return this | |
}; | |
goog.string.StringBuffer.prototype.clear = function() { | |
this.buffer_ = "" | |
}; | |
goog.string.StringBuffer.prototype.getLength = function() { | |
return this.buffer_.length | |
}; | |
goog.string.StringBuffer.prototype.toString = function() { | |
return this.buffer_ | |
}; | |
var cljs = {core:{}}; | |
cljs.core._STAR_unchecked_if_STAR_ = !1; | |
cljs.core._STAR_print_fn_STAR_ = function(a) { | |
throw Error("No *print-fn* fn set for evaluation environment"); | |
}; | |
cljs.core.set_print_fn_BANG_ = function(a) { | |
return cljs.core._STAR_print_fn_STAR_ = a | |
}; | |
goog.exportSymbol("cljs.core.set_print_fn_BANG_", cljs.core.set_print_fn_BANG_); | |
cljs.core._STAR_flush_on_newline_STAR_ = !0; | |
cljs.core._STAR_print_readably_STAR_ = !0; | |
cljs.core._STAR_print_meta_STAR_ = !1; | |
cljs.core._STAR_print_dup_STAR_ = !1; | |
cljs.core.pr_opts = function() { | |
return cljs.core.PersistentArrayMap.fromArray(["\ufdd0:flush-on-newline", cljs.core._STAR_flush_on_newline_STAR_, "\ufdd0:readably", cljs.core._STAR_print_readably_STAR_, "\ufdd0:meta", cljs.core._STAR_print_meta_STAR_, "\ufdd0:dup", cljs.core._STAR_print_dup_STAR_], !0) | |
}; | |
cljs.core.truth_ = function(a) { | |
return null != a && !1 !== a | |
}; | |
cljs.core.not_native = null; | |
cljs.core.identical_QMARK_ = function(a, b) { | |
return a === b | |
}; | |
cljs.core.nil_QMARK_ = function(a) { | |
return null == a | |
}; | |
cljs.core.array_QMARK_ = function(a) { | |
return a instanceof Array | |
}; | |
cljs.core.number_QMARK_ = function(a) { | |
return"number" === typeof a | |
}; | |
cljs.core.not = function(a) { | |
return cljs.core.truth_(a) ? !1 : !0 | |
}; | |
cljs.core.string_QMARK_ = function(a) { | |
var b = goog.isString(a); | |
return b ? "\ufdd0" !== a.charAt(0) : b | |
}; | |
cljs.core.type_satisfies_ = function(a, b) { | |
return a[goog.typeOf(null == b ? null : b)] ? !0 : a._ ? !0 : !1 | |
}; | |
cljs.core.is_proto_ = function(a) { | |
return a.constructor.prototype === a | |
}; | |
cljs.core._STAR_main_cli_fn_STAR_ = null; | |
cljs.core.type = function(a) { | |
return null == a ? null : a.constructor | |
}; | |
cljs.core.missing_protocol = function(a, b) { | |
var c = cljs.core.type.call(null, b), c = cljs.core.truth_(cljs.core.truth_(c) ? c.cljs$lang$type : c) ? c.cljs$lang$ctorStr : goog.typeOf(b); | |
return Error(["No protocol method ", a, " defined for type ", c, ": ", b].join("")) | |
}; | |
cljs.core.aclone = function(a) { | |
return a.slice() | |
}; | |
cljs.core.array = function(a) { | |
return Array.prototype.slice.call(arguments) | |
}; | |
cljs.core.make_array = function() { | |
var a = null, b = function(b, d) { | |
return a.call(null, d) | |
}, a = function(a, d) { | |
switch(arguments.length) { | |
case 1: | |
return Array(a); | |
case 2: | |
return b.call(this, a, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return Array(a) | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
return a | |
}(); | |
cljs.core.aget = function() { | |
var a = null, b = function() { | |
var b = function(b, c, d) { | |
return cljs.core.apply.call(null, a, a.call(null, b, c), d) | |
}, d = function(a, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, d, h) | |
}; | |
d.cljs$lang$maxFixedArity = 2; | |
d.cljs$lang$applyTo = function(a) { | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(d, g, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = b; | |
return d | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 2: | |
return a[d]; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a[b] | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.aset = function() { | |
var a = null, b = function() { | |
var b = function(b, c, d, h) { | |
return cljs.core.apply.call(null, a, b[c], d, h) | |
}, d = function(a, d, g, h) { | |
var k = null; | |
3 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return b.call(this, a, d, g, k) | |
}; | |
d.cljs$lang$maxFixedArity = 3; | |
d.cljs$lang$applyTo = function(a) { | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var h = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(d, g, h, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = b; | |
return d | |
}(), a = function(a, d, e, f) { | |
switch(arguments.length) { | |
case 3: | |
return a[d] = e; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, e, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$3 = function(a, b, e) { | |
return a[b] = e | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.alength = function(a) { | |
return a.length | |
}; | |
cljs.core.into_array = function() { | |
var a = null, b = function(b) { | |
return a.call(null, null, b) | |
}, c = function(a, b) { | |
return cljs.core.reduce.call(null, function(a, b) { | |
a.push(b); | |
return a | |
}, [], b) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.Fn = {}; | |
cljs.core.IFn = {}; | |
cljs.core._invoke = function() { | |
var a = null, b = function(a) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$1 : a) { | |
return a.cljs$core$IFn$_invoke$arity$1(a) | |
} | |
var b; | |
b = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._invoke._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return b.call(null, a) | |
}, c = function(a, b) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$2 : a) { | |
return a.cljs$core$IFn$_invoke$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._invoke._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return c.call(null, a, b) | |
}, d = function(a, b, c) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$3 : a) { | |
return a.cljs$core$IFn$_invoke$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._invoke._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return d.call(null, a, b, c) | |
}, e = function(a, b, c, d) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$4 : a) { | |
return a.cljs$core$IFn$_invoke$arity$4(a, b, c, d) | |
} | |
var e; | |
e = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!e && (e = cljs.core._invoke._, !e)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return e.call(null, a, b, c, d) | |
}, f = function(a, b, c, d, e) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$5 : a) { | |
return a.cljs$core$IFn$_invoke$arity$5(a, b, c, d, e) | |
} | |
var f; | |
f = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!f && (f = cljs.core._invoke._, !f)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return f.call(null, a, b, c, d, e) | |
}, g = function(a, b, c, d, e, f) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$6 : a) { | |
return a.cljs$core$IFn$_invoke$arity$6(a, b, c, d, e, f) | |
} | |
var g; | |
g = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!g && (g = cljs.core._invoke._, !g)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return g.call(null, a, b, c, d, e, f) | |
}, h = function(a, b, c, d, e, f, g) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$7 : a) { | |
return a.cljs$core$IFn$_invoke$arity$7(a, b, c, d, e, f, g) | |
} | |
var h; | |
h = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!h && (h = cljs.core._invoke._, !h)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return h.call(null, a, b, c, d, e, f, g) | |
}, k = function(a, b, c, d, e, f, g, h) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$8 : a) { | |
return a.cljs$core$IFn$_invoke$arity$8(a, b, c, d, e, f, g, h) | |
} | |
var k; | |
k = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!k && (k = cljs.core._invoke._, !k)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return k.call(null, a, b, c, d, e, f, g, h) | |
}, l = function(a, b, c, d, e, f, g, h, k) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$9 : a) { | |
return a.cljs$core$IFn$_invoke$arity$9(a, b, c, d, e, f, g, h, k) | |
} | |
var l; | |
l = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!l && (l = cljs.core._invoke._, !l)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return l.call(null, a, b, c, d, e, f, g, h, k) | |
}, m = function(a, b, c, d, e, f, g, h, k, l) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$10 : a) { | |
return a.cljs$core$IFn$_invoke$arity$10(a, b, c, d, e, f, g, h, k, l) | |
} | |
var m; | |
m = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!m && (m = cljs.core._invoke._, !m)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return m.call(null, a, b, c, d, e, f, g, h, k, l) | |
}, n = function(a, b, c, d, e, f, g, h, k, l, m) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$11 : a) { | |
return a.cljs$core$IFn$_invoke$arity$11(a, b, c, d, e, f, g, h, k, l, m) | |
} | |
var n; | |
n = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!n && (n = cljs.core._invoke._, !n)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return n.call(null, a, b, c, d, e, f, g, h, k, l, m) | |
}, p = function(a, b, c, d, e, f, g, h, k, l, m, n) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$12 : a) { | |
return a.cljs$core$IFn$_invoke$arity$12(a, b, c, d, e, f, g, h, k, l, m, n) | |
} | |
var p; | |
p = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!p && (p = cljs.core._invoke._, !p)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return p.call(null, a, b, c, d, e, f, g, h, k, l, m, n) | |
}, q = function(a, b, c, d, e, f, g, h, k, l, m, n, p) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$13 : a) { | |
return a.cljs$core$IFn$_invoke$arity$13(a, b, c, d, e, f, g, h, k, l, m, n, p) | |
} | |
var q; | |
q = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!q && (q = cljs.core._invoke._, !q)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return q.call(null, a, b, c, d, e, f, g, h, k, l, m, n, p) | |
}, r = function(a, b, c, d, e, f, g, h, k, l, m, n, p, q) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$14 : a) { | |
return a.cljs$core$IFn$_invoke$arity$14(a, b, c, d, e, f, g, h, k, l, m, n, p, q) | |
} | |
var r; | |
r = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!r && (r = cljs.core._invoke._, !r)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return r.call(null, a, b, c, d, e, f, g, h, k, l, m, n, p, q) | |
}, s = function(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$15 : a) { | |
return a.cljs$core$IFn$_invoke$arity$15(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r) | |
} | |
var s; | |
s = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!s && (s = cljs.core._invoke._, !s)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return s.call(null, a, b, c, d, e, f, g, h, k, l, m, n, p, q, r) | |
}, t = function(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$16 : a) { | |
return a.cljs$core$IFn$_invoke$arity$16(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s) | |
} | |
var t; | |
t = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!t && (t = cljs.core._invoke._, !t)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return t.call(null, a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s) | |
}, v = function(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$17 : a) { | |
return a.cljs$core$IFn$_invoke$arity$17(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t) | |
} | |
var u; | |
u = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!u && (u = cljs.core._invoke._, !u)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return u.call(null, a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t) | |
}, u = function(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$18 : a) { | |
return a.cljs$core$IFn$_invoke$arity$18(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u) | |
} | |
var w; | |
w = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!w && (w = cljs.core._invoke._, !w)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return w.call(null, a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u) | |
}, w = function(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u, w) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$19 : a) { | |
return a.cljs$core$IFn$_invoke$arity$19(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u, w) | |
} | |
var v; | |
v = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!v && (v = cljs.core._invoke._, !v)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return v.call(null, a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u, w) | |
}, B = function(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u, w, v) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$20 : a) { | |
return a.cljs$core$IFn$_invoke$arity$20(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u, w, v) | |
} | |
var B; | |
B = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!B && (B = cljs.core._invoke._, !B)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return B.call(null, a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u, w, v) | |
}, I = function(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u, w, v, B) { | |
if(a ? a.cljs$core$IFn$_invoke$arity$21 : a) { | |
return a.cljs$core$IFn$_invoke$arity$21(a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u, w, v, B) | |
} | |
var I; | |
I = cljs.core._invoke[goog.typeOf(null == a ? null : a)]; | |
if(!I && (I = cljs.core._invoke._, !I)) { | |
throw cljs.core.missing_protocol.call(null, "IFn.-invoke", a); | |
} | |
return I.call(null, a, b, c, d, e, f, g, h, k, l, m, n, p, q, r, s, t, u, w, v, B) | |
}, a = function(a, x, y, z, A, C, D, E, F, G, H, J, K, L, M, N, O, P, Q, S, T) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, x); | |
case 3: | |
return d.call(this, a, x, y); | |
case 4: | |
return e.call(this, a, x, y, z); | |
case 5: | |
return f.call(this, a, x, y, z, A); | |
case 6: | |
return g.call(this, a, x, y, z, A, C); | |
case 7: | |
return h.call(this, a, x, y, z, A, C, D); | |
case 8: | |
return k.call(this, a, x, y, z, A, C, D, E); | |
case 9: | |
return l.call(this, a, x, y, z, A, C, D, E, F); | |
case 10: | |
return m.call(this, a, x, y, z, A, C, D, E, F, G); | |
case 11: | |
return n.call(this, a, x, y, z, A, C, D, E, F, G, H); | |
case 12: | |
return p.call(this, a, x, y, z, A, C, D, E, F, G, H, J); | |
case 13: | |
return q.call(this, a, x, y, z, A, C, D, E, F, G, H, J, K); | |
case 14: | |
return r.call(this, a, x, y, z, A, C, D, E, F, G, H, J, K, L); | |
case 15: | |
return s.call(this, a, x, y, z, A, C, D, E, F, G, H, J, K, L, M); | |
case 16: | |
return t.call(this, a, x, y, z, A, C, D, E, F, G, H, J, K, L, M, N); | |
case 17: | |
return v.call(this, a, x, y, z, A, C, D, E, F, G, H, J, K, L, M, N, O); | |
case 18: | |
return u.call(this, a, x, y, z, A, C, D, E, F, G, H, J, K, L, M, N, O, P); | |
case 19: | |
return w.call(this, a, x, y, z, A, C, D, E, F, G, H, J, K, L, M, N, O, P, Q); | |
case 20: | |
return B.call(this, a, x, y, z, A, C, D, E, F, G, H, J, K, L, M, N, O, P, Q, S); | |
case 21: | |
return I.call(this, a, x, y, z, A, C, D, E, F, G, H, J, K, L, M, N, O, P, Q, S, T) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
a.cljs$core$IFn$_invoke$arity$3 = d; | |
a.cljs$core$IFn$_invoke$arity$4 = e; | |
a.cljs$core$IFn$_invoke$arity$5 = f; | |
a.cljs$core$IFn$_invoke$arity$6 = g; | |
a.cljs$core$IFn$_invoke$arity$7 = h; | |
a.cljs$core$IFn$_invoke$arity$8 = k; | |
a.cljs$core$IFn$_invoke$arity$9 = l; | |
a.cljs$core$IFn$_invoke$arity$10 = m; | |
a.cljs$core$IFn$_invoke$arity$11 = n; | |
a.cljs$core$IFn$_invoke$arity$12 = p; | |
a.cljs$core$IFn$_invoke$arity$13 = q; | |
a.cljs$core$IFn$_invoke$arity$14 = r; | |
a.cljs$core$IFn$_invoke$arity$15 = s; | |
a.cljs$core$IFn$_invoke$arity$16 = t; | |
a.cljs$core$IFn$_invoke$arity$17 = v; | |
a.cljs$core$IFn$_invoke$arity$18 = u; | |
a.cljs$core$IFn$_invoke$arity$19 = w; | |
a.cljs$core$IFn$_invoke$arity$20 = B; | |
a.cljs$core$IFn$_invoke$arity$21 = I; | |
return a | |
}(); | |
cljs.core.ICounted = {}; | |
cljs.core._count = function(a) { | |
if(a ? a.cljs$core$ICounted$_count$arity$1 : a) { | |
return a.cljs$core$ICounted$_count$arity$1(a) | |
} | |
var b; | |
b = cljs.core._count[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._count._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "ICounted.-count", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.IEmptyableCollection = {}; | |
cljs.core._empty = function(a) { | |
if(a ? a.cljs$core$IEmptyableCollection$_empty$arity$1 : a) { | |
return a.cljs$core$IEmptyableCollection$_empty$arity$1(a) | |
} | |
var b; | |
b = cljs.core._empty[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._empty._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IEmptyableCollection.-empty", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.ICollection = {}; | |
cljs.core._conj = function(a, b) { | |
if(a ? a.cljs$core$ICollection$_conj$arity$2 : a) { | |
return a.cljs$core$ICollection$_conj$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._conj[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._conj._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "ICollection.-conj", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.IIndexed = {}; | |
cljs.core._nth = function() { | |
var a = null, b = function(a, b) { | |
if(a ? a.cljs$core$IIndexed$_nth$arity$2 : a) { | |
return a.cljs$core$IIndexed$_nth$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._nth[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._nth._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IIndexed.-nth", a); | |
} | |
return c.call(null, a, b) | |
}, c = function(a, b, c) { | |
if(a ? a.cljs$core$IIndexed$_nth$arity$3 : a) { | |
return a.cljs$core$IIndexed$_nth$arity$3(a, b, c) | |
} | |
var g; | |
g = cljs.core._nth[goog.typeOf(null == a ? null : a)]; | |
if(!g && (g = cljs.core._nth._, !g)) { | |
throw cljs.core.missing_protocol.call(null, "IIndexed.-nth", a); | |
} | |
return g.call(null, a, b, c) | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.ASeq = {}; | |
cljs.core.ISeq = {}; | |
cljs.core._first = function(a) { | |
if(a ? a.cljs$core$ISeq$_first$arity$1 : a) { | |
return a.cljs$core$ISeq$_first$arity$1(a) | |
} | |
var b; | |
b = cljs.core._first[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._first._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "ISeq.-first", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core._rest = function(a) { | |
if(a ? a.cljs$core$ISeq$_rest$arity$1 : a) { | |
return a.cljs$core$ISeq$_rest$arity$1(a) | |
} | |
var b; | |
b = cljs.core._rest[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._rest._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "ISeq.-rest", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.INext = {}; | |
cljs.core._next = function(a) { | |
if(a ? a.cljs$core$INext$_next$arity$1 : a) { | |
return a.cljs$core$INext$_next$arity$1(a) | |
} | |
var b; | |
b = cljs.core._next[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._next._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "INext.-next", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.ILookup = {}; | |
cljs.core._lookup = function() { | |
var a = null, b = function(a, b) { | |
if(a ? a.cljs$core$ILookup$_lookup$arity$2 : a) { | |
return a.cljs$core$ILookup$_lookup$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._lookup[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._lookup._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "ILookup.-lookup", a); | |
} | |
return c.call(null, a, b) | |
}, c = function(a, b, c) { | |
if(a ? a.cljs$core$ILookup$_lookup$arity$3 : a) { | |
return a.cljs$core$ILookup$_lookup$arity$3(a, b, c) | |
} | |
var g; | |
g = cljs.core._lookup[goog.typeOf(null == a ? null : a)]; | |
if(!g && (g = cljs.core._lookup._, !g)) { | |
throw cljs.core.missing_protocol.call(null, "ILookup.-lookup", a); | |
} | |
return g.call(null, a, b, c) | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.IAssociative = {}; | |
cljs.core._contains_key_QMARK_ = function(a, b) { | |
if(a ? a.cljs$core$IAssociative$_contains_key_QMARK_$arity$2 : a) { | |
return a.cljs$core$IAssociative$_contains_key_QMARK_$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._contains_key_QMARK_[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._contains_key_QMARK_._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IAssociative.-contains-key?", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core._assoc = function(a, b, c) { | |
if(a ? a.cljs$core$IAssociative$_assoc$arity$3 : a) { | |
return a.cljs$core$IAssociative$_assoc$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._assoc[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._assoc._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "IAssociative.-assoc", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core.IMap = {}; | |
cljs.core._dissoc = function(a, b) { | |
if(a ? a.cljs$core$IMap$_dissoc$arity$2 : a) { | |
return a.cljs$core$IMap$_dissoc$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._dissoc[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._dissoc._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IMap.-dissoc", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.IMapEntry = {}; | |
cljs.core._key = function(a) { | |
if(a ? a.cljs$core$IMapEntry$_key$arity$1 : a) { | |
return a.cljs$core$IMapEntry$_key$arity$1(a) | |
} | |
var b; | |
b = cljs.core._key[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._key._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IMapEntry.-key", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core._val = function(a) { | |
if(a ? a.cljs$core$IMapEntry$_val$arity$1 : a) { | |
return a.cljs$core$IMapEntry$_val$arity$1(a) | |
} | |
var b; | |
b = cljs.core._val[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._val._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IMapEntry.-val", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.ISet = {}; | |
cljs.core._disjoin = function(a, b) { | |
if(a ? a.cljs$core$ISet$_disjoin$arity$2 : a) { | |
return a.cljs$core$ISet$_disjoin$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._disjoin[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._disjoin._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "ISet.-disjoin", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.IStack = {}; | |
cljs.core._peek = function(a) { | |
if(a ? a.cljs$core$IStack$_peek$arity$1 : a) { | |
return a.cljs$core$IStack$_peek$arity$1(a) | |
} | |
var b; | |
b = cljs.core._peek[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._peek._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IStack.-peek", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core._pop = function(a) { | |
if(a ? a.cljs$core$IStack$_pop$arity$1 : a) { | |
return a.cljs$core$IStack$_pop$arity$1(a) | |
} | |
var b; | |
b = cljs.core._pop[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._pop._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IStack.-pop", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.IVector = {}; | |
cljs.core._assoc_n = function(a, b, c) { | |
if(a ? a.cljs$core$IVector$_assoc_n$arity$3 : a) { | |
return a.cljs$core$IVector$_assoc_n$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._assoc_n[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._assoc_n._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "IVector.-assoc-n", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core.IDeref = {}; | |
cljs.core._deref = function(a) { | |
if(a ? a.cljs$core$IDeref$_deref$arity$1 : a) { | |
return a.cljs$core$IDeref$_deref$arity$1(a) | |
} | |
var b; | |
b = cljs.core._deref[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._deref._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IDeref.-deref", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.IDerefWithTimeout = {}; | |
cljs.core._deref_with_timeout = function(a, b, c) { | |
if(a ? a.cljs$core$IDerefWithTimeout$_deref_with_timeout$arity$3 : a) { | |
return a.cljs$core$IDerefWithTimeout$_deref_with_timeout$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._deref_with_timeout[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._deref_with_timeout._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "IDerefWithTimeout.-deref-with-timeout", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core.IMeta = {}; | |
cljs.core._meta = function(a) { | |
if(a ? a.cljs$core$IMeta$_meta$arity$1 : a) { | |
return a.cljs$core$IMeta$_meta$arity$1(a) | |
} | |
var b; | |
b = cljs.core._meta[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._meta._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IMeta.-meta", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.IWithMeta = {}; | |
cljs.core._with_meta = function(a, b) { | |
if(a ? a.cljs$core$IWithMeta$_with_meta$arity$2 : a) { | |
return a.cljs$core$IWithMeta$_with_meta$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._with_meta[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._with_meta._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IWithMeta.-with-meta", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.IReduce = {}; | |
cljs.core._reduce = function() { | |
var a = null, b = function(a, b) { | |
if(a ? a.cljs$core$IReduce$_reduce$arity$2 : a) { | |
return a.cljs$core$IReduce$_reduce$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._reduce[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._reduce._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IReduce.-reduce", a); | |
} | |
return c.call(null, a, b) | |
}, c = function(a, b, c) { | |
if(a ? a.cljs$core$IReduce$_reduce$arity$3 : a) { | |
return a.cljs$core$IReduce$_reduce$arity$3(a, b, c) | |
} | |
var g; | |
g = cljs.core._reduce[goog.typeOf(null == a ? null : a)]; | |
if(!g && (g = cljs.core._reduce._, !g)) { | |
throw cljs.core.missing_protocol.call(null, "IReduce.-reduce", a); | |
} | |
return g.call(null, a, b, c) | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.IKVReduce = {}; | |
cljs.core._kv_reduce = function(a, b, c) { | |
if(a ? a.cljs$core$IKVReduce$_kv_reduce$arity$3 : a) { | |
return a.cljs$core$IKVReduce$_kv_reduce$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._kv_reduce[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._kv_reduce._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "IKVReduce.-kv-reduce", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core.IEquiv = {}; | |
cljs.core._equiv = function(a, b) { | |
if(a ? a.cljs$core$IEquiv$_equiv$arity$2 : a) { | |
return a.cljs$core$IEquiv$_equiv$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._equiv[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._equiv._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IEquiv.-equiv", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.IHash = {}; | |
cljs.core._hash = function(a) { | |
if(a ? a.cljs$core$IHash$_hash$arity$1 : a) { | |
return a.cljs$core$IHash$_hash$arity$1(a) | |
} | |
var b; | |
b = cljs.core._hash[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._hash._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IHash.-hash", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.ISeqable = {}; | |
cljs.core._seq = function(a) { | |
if(a ? a.cljs$core$ISeqable$_seq$arity$1 : a) { | |
return a.cljs$core$ISeqable$_seq$arity$1(a) | |
} | |
var b; | |
b = cljs.core._seq[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._seq._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "ISeqable.-seq", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.ISequential = {}; | |
cljs.core.IList = {}; | |
cljs.core.IRecord = {}; | |
cljs.core.IReversible = {}; | |
cljs.core._rseq = function(a) { | |
if(a ? a.cljs$core$IReversible$_rseq$arity$1 : a) { | |
return a.cljs$core$IReversible$_rseq$arity$1(a) | |
} | |
var b; | |
b = cljs.core._rseq[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._rseq._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IReversible.-rseq", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.ISorted = {}; | |
cljs.core._sorted_seq = function(a, b) { | |
if(a ? a.cljs$core$ISorted$_sorted_seq$arity$2 : a) { | |
return a.cljs$core$ISorted$_sorted_seq$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._sorted_seq[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._sorted_seq._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "ISorted.-sorted-seq", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core._sorted_seq_from = function(a, b, c) { | |
if(a ? a.cljs$core$ISorted$_sorted_seq_from$arity$3 : a) { | |
return a.cljs$core$ISorted$_sorted_seq_from$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._sorted_seq_from[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._sorted_seq_from._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "ISorted.-sorted-seq-from", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core._entry_key = function(a, b) { | |
if(a ? a.cljs$core$ISorted$_entry_key$arity$2 : a) { | |
return a.cljs$core$ISorted$_entry_key$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._entry_key[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._entry_key._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "ISorted.-entry-key", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core._comparator = function(a) { | |
if(a ? a.cljs$core$ISorted$_comparator$arity$1 : a) { | |
return a.cljs$core$ISorted$_comparator$arity$1(a) | |
} | |
var b; | |
b = cljs.core._comparator[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._comparator._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "ISorted.-comparator", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.IWriter = {}; | |
cljs.core._write = function(a, b) { | |
if(a ? a.cljs$core$IWriter$_write$arity$2 : a) { | |
return a.cljs$core$IWriter$_write$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._write[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._write._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IWriter.-write", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core._flush = function(a) { | |
if(a ? a.cljs$core$IWriter$_flush$arity$1 : a) { | |
return a.cljs$core$IWriter$_flush$arity$1(a) | |
} | |
var b; | |
b = cljs.core._flush[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._flush._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IWriter.-flush", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.IPrintWithWriter = {}; | |
cljs.core._pr_writer = function(a, b, c) { | |
if(a ? a.cljs$core$IPrintWithWriter$_pr_writer$arity$3 : a) { | |
return a.cljs$core$IPrintWithWriter$_pr_writer$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._pr_writer[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._pr_writer._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "IPrintWithWriter.-pr-writer", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core.IPending = {}; | |
cljs.core._realized_QMARK_ = function(a) { | |
if(a ? a.cljs$core$IPending$_realized_QMARK_$arity$1 : a) { | |
return a.cljs$core$IPending$_realized_QMARK_$arity$1(a) | |
} | |
var b; | |
b = cljs.core._realized_QMARK_[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._realized_QMARK_._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IPending.-realized?", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.IWatchable = {}; | |
cljs.core._notify_watches = function(a, b, c) { | |
if(a ? a.cljs$core$IWatchable$_notify_watches$arity$3 : a) { | |
return a.cljs$core$IWatchable$_notify_watches$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._notify_watches[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._notify_watches._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "IWatchable.-notify-watches", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core._add_watch = function(a, b, c) { | |
if(a ? a.cljs$core$IWatchable$_add_watch$arity$3 : a) { | |
return a.cljs$core$IWatchable$_add_watch$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._add_watch[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._add_watch._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "IWatchable.-add-watch", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core._remove_watch = function(a, b) { | |
if(a ? a.cljs$core$IWatchable$_remove_watch$arity$2 : a) { | |
return a.cljs$core$IWatchable$_remove_watch$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._remove_watch[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._remove_watch._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IWatchable.-remove-watch", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.IEditableCollection = {}; | |
cljs.core._as_transient = function(a) { | |
if(a ? a.cljs$core$IEditableCollection$_as_transient$arity$1 : a) { | |
return a.cljs$core$IEditableCollection$_as_transient$arity$1(a) | |
} | |
var b; | |
b = cljs.core._as_transient[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._as_transient._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IEditableCollection.-as-transient", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.ITransientCollection = {}; | |
cljs.core._conj_BANG_ = function(a, b) { | |
if(a ? a.cljs$core$ITransientCollection$_conj_BANG_$arity$2 : a) { | |
return a.cljs$core$ITransientCollection$_conj_BANG_$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._conj_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._conj_BANG_._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "ITransientCollection.-conj!", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core._persistent_BANG_ = function(a) { | |
if(a ? a.cljs$core$ITransientCollection$_persistent_BANG_$arity$1 : a) { | |
return a.cljs$core$ITransientCollection$_persistent_BANG_$arity$1(a) | |
} | |
var b; | |
b = cljs.core._persistent_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._persistent_BANG_._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "ITransientCollection.-persistent!", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.ITransientAssociative = {}; | |
cljs.core._assoc_BANG_ = function(a, b, c) { | |
if(a ? a.cljs$core$ITransientAssociative$_assoc_BANG_$arity$3 : a) { | |
return a.cljs$core$ITransientAssociative$_assoc_BANG_$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._assoc_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._assoc_BANG_._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "ITransientAssociative.-assoc!", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core.ITransientMap = {}; | |
cljs.core._dissoc_BANG_ = function(a, b) { | |
if(a ? a.cljs$core$ITransientMap$_dissoc_BANG_$arity$2 : a) { | |
return a.cljs$core$ITransientMap$_dissoc_BANG_$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._dissoc_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._dissoc_BANG_._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "ITransientMap.-dissoc!", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.ITransientVector = {}; | |
cljs.core._assoc_n_BANG_ = function(a, b, c) { | |
if(a ? a.cljs$core$ITransientVector$_assoc_n_BANG_$arity$3 : a) { | |
return a.cljs$core$ITransientVector$_assoc_n_BANG_$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._assoc_n_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._assoc_n_BANG_._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "ITransientVector.-assoc-n!", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core._pop_BANG_ = function(a) { | |
if(a ? a.cljs$core$ITransientVector$_pop_BANG_$arity$1 : a) { | |
return a.cljs$core$ITransientVector$_pop_BANG_$arity$1(a) | |
} | |
var b; | |
b = cljs.core._pop_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._pop_BANG_._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "ITransientVector.-pop!", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.ITransientSet = {}; | |
cljs.core._disjoin_BANG_ = function(a, b) { | |
if(a ? a.cljs$core$ITransientSet$_disjoin_BANG_$arity$2 : a) { | |
return a.cljs$core$ITransientSet$_disjoin_BANG_$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._disjoin_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._disjoin_BANG_._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "ITransientSet.-disjoin!", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.IComparable = {}; | |
cljs.core._compare = function(a, b) { | |
if(a ? a.cljs$core$IComparable$_compare$arity$2 : a) { | |
return a.cljs$core$IComparable$_compare$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._compare[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._compare._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IComparable.-compare", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.IChunk = {}; | |
cljs.core._drop_first = function(a) { | |
if(a ? a.cljs$core$IChunk$_drop_first$arity$1 : a) { | |
return a.cljs$core$IChunk$_drop_first$arity$1(a) | |
} | |
var b; | |
b = cljs.core._drop_first[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._drop_first._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IChunk.-drop-first", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.IChunkedSeq = {}; | |
cljs.core._chunked_first = function(a) { | |
if(a ? a.cljs$core$IChunkedSeq$_chunked_first$arity$1 : a) { | |
return a.cljs$core$IChunkedSeq$_chunked_first$arity$1(a) | |
} | |
var b; | |
b = cljs.core._chunked_first[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._chunked_first._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IChunkedSeq.-chunked-first", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core._chunked_rest = function(a) { | |
if(a ? a.cljs$core$IChunkedSeq$_chunked_rest$arity$1 : a) { | |
return a.cljs$core$IChunkedSeq$_chunked_rest$arity$1(a) | |
} | |
var b; | |
b = cljs.core._chunked_rest[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._chunked_rest._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IChunkedSeq.-chunked-rest", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.IChunkedNext = {}; | |
cljs.core._chunked_next = function(a) { | |
if(a ? a.cljs$core$IChunkedNext$_chunked_next$arity$1 : a) { | |
return a.cljs$core$IChunkedNext$_chunked_next$arity$1(a) | |
} | |
var b; | |
b = cljs.core._chunked_next[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._chunked_next._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IChunkedNext.-chunked-next", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.INamed = {}; | |
cljs.core._name = function(a) { | |
if(a ? a.cljs$core$INamed$_name$arity$1 : a) { | |
return a.cljs$core$INamed$_name$arity$1(a) | |
} | |
var b; | |
b = cljs.core._name[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._name._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "INamed.-name", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core._namespace = function(a) { | |
if(a ? a.cljs$core$INamed$_namespace$arity$1 : a) { | |
return a.cljs$core$INamed$_namespace$arity$1(a) | |
} | |
var b; | |
b = cljs.core._namespace[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._namespace._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "INamed.-namespace", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.StringBufferWriter = function(a) { | |
this.sb = a; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 1073741824 | |
}; | |
cljs.core.StringBufferWriter.cljs$lang$type = !0; | |
cljs.core.StringBufferWriter.cljs$lang$ctorStr = "cljs.core/StringBufferWriter"; | |
cljs.core.StringBufferWriter.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/StringBufferWriter") | |
}; | |
cljs.core.StringBufferWriter.prototype.cljs$core$IWriter$_write$arity$2 = function(a, b) { | |
return this.sb.append(b) | |
}; | |
cljs.core.StringBufferWriter.prototype.cljs$core$IWriter$_flush$arity$1 = function(a) { | |
return null | |
}; | |
cljs.core.__GT_StringBufferWriter = function(a) { | |
return new cljs.core.StringBufferWriter(a) | |
}; | |
cljs.core.pr_str_STAR_ = function(a) { | |
var b = new goog.string.StringBuffer, c = new cljs.core.StringBufferWriter(b); | |
cljs.core._pr_writer.call(null, a, c, cljs.core.pr_opts.call(null)); | |
cljs.core._flush.call(null, c); | |
return"" + cljs.core.str(b) | |
}; | |
cljs.core.instance_QMARK_ = function(a, b) { | |
return b instanceof a | |
}; | |
cljs.core.symbol_QMARK_ = function(a) { | |
return a instanceof cljs.core.Symbol | |
}; | |
cljs.core.hash_symbol = function(a) { | |
return cljs.core.hash_combine.call(null, cljs.core.hash.call(null, a.ns), cljs.core.hash.call(null, a.name)) | |
}; | |
cljs.core.Symbol = function(a, b, c, d, e) { | |
this.ns = a; | |
this.name = b; | |
this.str = c; | |
this._hash = d; | |
this._meta = e; | |
this.cljs$lang$protocol_mask$partition0$ = 2154168321; | |
this.cljs$lang$protocol_mask$partition1$ = 4096 | |
}; | |
cljs.core.Symbol.cljs$lang$type = !0; | |
cljs.core.Symbol.cljs$lang$ctorStr = "cljs.core/Symbol"; | |
cljs.core.Symbol.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/Symbol") | |
}; | |
cljs.core.Symbol.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core._write.call(null, b, this.str) | |
}; | |
cljs.core.Symbol.prototype.cljs$core$INamed$_name$arity$1 = function(a) { | |
return this.name | |
}; | |
cljs.core.Symbol.prototype.cljs$core$INamed$_namespace$arity$1 = function(a) { | |
return this.ns | |
}; | |
cljs.core.Symbol.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this._hash; | |
return null != b ? b : this._hash = a = cljs.core.hash_symbol.call(null, a) | |
}; | |
cljs.core.Symbol.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.Symbol(this.ns, this.name, this.str, this._hash, b) | |
}; | |
cljs.core.Symbol.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this._meta | |
}; | |
cljs.core.Symbol.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return cljs.core._lookup.call(null, c, this, null); | |
case 3: | |
return cljs.core._lookup.call(null, c, this, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.Symbol.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.Symbol.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return b instanceof cljs.core.Symbol ? this.str === b.str : !1 | |
}; | |
cljs.core.Symbol.prototype.toString = function() { | |
return this.str | |
}; | |
cljs.core.__GT_Symbol = function(a, b, c, d, e) { | |
return new cljs.core.Symbol(a, b, c, d, e) | |
}; | |
cljs.core.symbol = function() { | |
var a = null, b = function(b) { | |
return b instanceof cljs.core.Symbol ? b : a.call(null, null, b) | |
}, c = function(a, b) { | |
var c = null != a ? [cljs.core.str(a), cljs.core.str("/"), cljs.core.str(b)].join("") : b; | |
return new cljs.core.Symbol(a, b, c, null, null) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.seq = function(a) { | |
if(null == a) { | |
return null | |
} | |
var b; | |
a ? (b = (b = a.cljs$lang$protocol_mask$partition0$ & 8388608) ? b : a.cljs$core$ISeqable$, b = b ? !0 : !1) : b = !1; | |
if(b) { | |
return cljs.core._seq.call(null, a) | |
} | |
if(a instanceof Array || cljs.core.string_QMARK_.call(null, a)) { | |
return 0 === a.length ? null : new cljs.core.IndexedSeq(a, 0) | |
} | |
if(cljs.core.type_satisfies_.call(null, cljs.core.ILookup, a)) { | |
return cljs.core._seq.call(null, a) | |
} | |
throw Error([cljs.core.str(a), cljs.core.str("is not ISeqable")].join("")); | |
}; | |
cljs.core.first = function(a) { | |
if(null == a) { | |
return null | |
} | |
var b; | |
a ? (b = (b = a.cljs$lang$protocol_mask$partition0$ & 64) ? b : a.cljs$core$ISeq$, b = b ? !0 : !1) : b = !1; | |
if(b) { | |
return cljs.core._first.call(null, a) | |
} | |
a = cljs.core.seq.call(null, a); | |
return null == a ? null : cljs.core._first.call(null, a) | |
}; | |
cljs.core.rest = function(a) { | |
if(null != a) { | |
var b; | |
a ? (b = (b = a.cljs$lang$protocol_mask$partition0$ & 64) ? b : a.cljs$core$ISeq$, b = b ? !0 : !1) : b = !1; | |
if(b) { | |
return cljs.core._rest.call(null, a) | |
} | |
a = cljs.core.seq.call(null, a); | |
return null != a ? cljs.core._rest.call(null, a) : cljs.core.List.EMPTY | |
} | |
return cljs.core.List.EMPTY | |
}; | |
cljs.core.next = function(a) { | |
if(null == a) { | |
a = null | |
}else { | |
var b; | |
a ? (b = (b = a.cljs$lang$protocol_mask$partition0$ & 128) ? b : a.cljs$core$INext$, b = b ? !0 : !1) : b = !1; | |
a = b ? cljs.core._next.call(null, a) : cljs.core.seq.call(null, cljs.core.rest.call(null, a)) | |
} | |
return a | |
}; | |
cljs.core._EQ_ = function() { | |
var a = null, b = function(a, b) { | |
var c = a === b; | |
return c ? c : cljs.core._equiv.call(null, a, b) | |
}, c = function() { | |
var b = function(b, c, d) { | |
for(;;) { | |
if(cljs.core.truth_(a.call(null, b, c))) { | |
if(cljs.core.next.call(null, d)) { | |
b = c, c = cljs.core.first.call(null, d), d = cljs.core.next.call(null, d) | |
}else { | |
return a.call(null, c, cljs.core.first.call(null, d)) | |
} | |
}else { | |
return!1 | |
} | |
} | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return!0; | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return!0 | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.IHash["null"] = !0; | |
cljs.core._hash["null"] = function(a) { | |
return 0 | |
}; | |
cljs.core.INext["null"] = !0; | |
cljs.core._next["null"] = function(a) { | |
return null | |
}; | |
cljs.core.IKVReduce["null"] = !0; | |
cljs.core._kv_reduce["null"] = function(a, b, c) { | |
return c | |
}; | |
cljs.core.ISet["null"] = !0; | |
cljs.core._disjoin["null"] = function(a, b) { | |
return null | |
}; | |
cljs.core.ICounted["null"] = !0; | |
cljs.core._count["null"] = function(a) { | |
return 0 | |
}; | |
cljs.core.IStack["null"] = !0; | |
cljs.core._peek["null"] = function(a) { | |
return null | |
}; | |
cljs.core._pop["null"] = function(a) { | |
return null | |
}; | |
cljs.core.IEquiv["null"] = !0; | |
cljs.core._equiv["null"] = function(a, b) { | |
return null == b | |
}; | |
cljs.core.IWithMeta["null"] = !0; | |
cljs.core._with_meta["null"] = function(a, b) { | |
return null | |
}; | |
cljs.core.IMeta["null"] = !0; | |
cljs.core._meta["null"] = function(a) { | |
return null | |
}; | |
cljs.core.IEmptyableCollection["null"] = !0; | |
cljs.core._empty["null"] = function(a) { | |
return null | |
}; | |
cljs.core.IMap["null"] = !0; | |
cljs.core._dissoc["null"] = function(a, b) { | |
return null | |
}; | |
Date.prototype.cljs$core$IEquiv$ = !0; | |
Date.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
var c = b instanceof Date; | |
return c ? a.toString() === b.toString() : c | |
}; | |
cljs.core.IHash.number = !0; | |
cljs.core._hash.number = function(a) { | |
return Math.floor(a) % 2147483647 | |
}; | |
cljs.core.IEquiv.number = !0; | |
cljs.core._equiv.number = function(a, b) { | |
return a === b | |
}; | |
cljs.core.IHash["boolean"] = !0; | |
cljs.core._hash["boolean"] = function(a) { | |
return!0 === a ? 1 : 0 | |
}; | |
cljs.core.IMeta["function"] = !0; | |
cljs.core._meta["function"] = function(a) { | |
return null | |
}; | |
cljs.core.Fn["function"] = !0; | |
cljs.core.IHash._ = !0; | |
cljs.core._hash._ = function(a) { | |
return goog.getUid(a) | |
}; | |
cljs.core.inc = function(a) { | |
return a + 1 | |
}; | |
cljs.core.Reduced = function(a) { | |
this.val = a; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32768 | |
}; | |
cljs.core.Reduced.cljs$lang$type = !0; | |
cljs.core.Reduced.cljs$lang$ctorStr = "cljs.core/Reduced"; | |
cljs.core.Reduced.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/Reduced") | |
}; | |
cljs.core.Reduced.prototype.cljs$core$IDeref$_deref$arity$1 = function(a) { | |
return this.val | |
}; | |
cljs.core.__GT_Reduced = function(a) { | |
return new cljs.core.Reduced(a) | |
}; | |
cljs.core.reduced = function(a) { | |
return new cljs.core.Reduced(a) | |
}; | |
cljs.core.reduced_QMARK_ = function(a) { | |
return a instanceof cljs.core.Reduced | |
}; | |
cljs.core.ci_reduce = function() { | |
var a = null, b = function(a, b) { | |
var c = cljs.core._count.call(null, a); | |
if(0 === c) { | |
return b.call(null) | |
} | |
for(var d = cljs.core._nth.call(null, a, 0), k = 1;;) { | |
if(k < c) { | |
d = b.call(null, d, cljs.core._nth.call(null, a, k)); | |
if(cljs.core.reduced_QMARK_.call(null, d)) { | |
return cljs.core.deref.call(null, d) | |
} | |
k += 1 | |
}else { | |
return d | |
} | |
} | |
}, c = function(a, b, c) { | |
for(var d = cljs.core._count.call(null, a), k = 0;;) { | |
if(k < d) { | |
c = b.call(null, c, cljs.core._nth.call(null, a, k)); | |
if(cljs.core.reduced_QMARK_.call(null, c)) { | |
return cljs.core.deref.call(null, c) | |
} | |
k += 1 | |
}else { | |
return c | |
} | |
} | |
}, d = function(a, b, c, d) { | |
for(var k = cljs.core._count.call(null, a);;) { | |
if(d < k) { | |
c = b.call(null, c, cljs.core._nth.call(null, a, d)); | |
if(cljs.core.reduced_QMARK_.call(null, c)) { | |
return cljs.core.deref.call(null, c) | |
} | |
d += 1 | |
}else { | |
return c | |
} | |
} | |
}, a = function(a, f, g, h) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, f); | |
case 3: | |
return c.call(this, a, f, g); | |
case 4: | |
return d.call(this, a, f, g, h) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
a.cljs$core$IFn$_invoke$arity$4 = d; | |
return a | |
}(); | |
cljs.core.array_reduce = function() { | |
var a = null, b = function(a, b) { | |
var c = a.length; | |
if(0 === a.length) { | |
return b.call(null) | |
} | |
for(var d = a[0], k = 1;;) { | |
if(k < c) { | |
d = b.call(null, d, a[k]); | |
if(cljs.core.reduced_QMARK_.call(null, d)) { | |
return cljs.core.deref.call(null, d) | |
} | |
k += 1 | |
}else { | |
return d | |
} | |
} | |
}, c = function(a, b, c) { | |
for(var d = a.length, k = 0;;) { | |
if(k < d) { | |
c = b.call(null, c, a[k]); | |
if(cljs.core.reduced_QMARK_.call(null, c)) { | |
return cljs.core.deref.call(null, c) | |
} | |
k += 1 | |
}else { | |
return c | |
} | |
} | |
}, d = function(a, b, c, d) { | |
for(var k = a.length;;) { | |
if(d < k) { | |
c = b.call(null, c, a[d]); | |
if(cljs.core.reduced_QMARK_.call(null, c)) { | |
return cljs.core.deref.call(null, c) | |
} | |
d += 1 | |
}else { | |
return c | |
} | |
} | |
}, a = function(a, f, g, h) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, f); | |
case 3: | |
return c.call(this, a, f, g); | |
case 4: | |
return d.call(this, a, f, g, h) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
a.cljs$core$IFn$_invoke$arity$4 = d; | |
return a | |
}(); | |
cljs.core.counted_QMARK_ = function(a) { | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 2) ? b : a.cljs$core$ICounted$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.ICounted, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.ICounted, a) | |
}; | |
cljs.core.indexed_QMARK_ = function(a) { | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 16) ? b : a.cljs$core$IIndexed$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IIndexed, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.IIndexed, a) | |
}; | |
cljs.core.IndexedSeq = function(a, b) { | |
this.arr = a; | |
this.i = b; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 166199550 | |
}; | |
cljs.core.IndexedSeq.cljs$lang$type = !0; | |
cljs.core.IndexedSeq.cljs$lang$ctorStr = "cljs.core/IndexedSeq"; | |
cljs.core.IndexedSeq.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/IndexedSeq") | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
return cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$INext$_next$arity$1 = function(a) { | |
return this.i + 1 < this.arr.length ? new cljs.core.IndexedSeq(this.arr, this.i + 1) : null | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$IReversible$_rseq$arity$1 = function(a) { | |
var b = a.cljs$core$ICounted$_count$arity$1(a); | |
return 0 < b ? new cljs.core.RSeq(a, b - 1, null) : cljs.core.List.EMPTY | |
}; | |
cljs.core.IndexedSeq.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.array_reduce.call(null, this.arr, b, this.arr[this.i], this.i + 1) | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.array_reduce.call(null, this.arr, b, c, this.i) | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.arr.length - this.i | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return this.arr[this.i] | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return this.i + 1 < this.arr.length ? new cljs.core.IndexedSeq(this.arr, this.i + 1) : cljs.core.list.call(null) | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$IIndexed$_nth$arity$2 = function(a, b) { | |
var c = b + this.i; | |
return c < this.arr.length ? this.arr[c] : null | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$IIndexed$_nth$arity$3 = function(a, b, c) { | |
a = b + this.i; | |
return a < this.arr.length ? this.arr[a] : c | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.List.EMPTY | |
}; | |
cljs.core.__GT_IndexedSeq = function(a, b) { | |
return new cljs.core.IndexedSeq(a, b) | |
}; | |
cljs.core.prim_seq = function() { | |
var a = null, b = function(b) { | |
return a.call(null, b, 0) | |
}, c = function(a, b) { | |
return b < a.length ? new cljs.core.IndexedSeq(a, b) : null | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.array_seq = function() { | |
var a = null, b = function(a) { | |
return cljs.core.prim_seq.call(null, a, 0) | |
}, c = function(a, b) { | |
return cljs.core.prim_seq.call(null, a, b) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.IReduce.array = !0; | |
cljs.core._reduce.array = function(a, b) { | |
return cljs.core.array_reduce.call(null, a, b) | |
}; | |
cljs.core._reduce.array = function(a, b, c) { | |
return cljs.core.array_reduce.call(null, a, b, c) | |
}; | |
cljs.core.RSeq = function(a, b, c) { | |
this.ci = a; | |
this.i = b; | |
this.meta = c; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32374862 | |
}; | |
cljs.core.RSeq.cljs$lang$type = !0; | |
cljs.core.RSeq.cljs$lang$ctorStr = "cljs.core/RSeq"; | |
cljs.core.RSeq.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/RSeq") | |
}; | |
cljs.core.RSeq.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
return cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.RSeq.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.RSeq.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.RSeq.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.seq_reduce.call(null, b, a) | |
}; | |
cljs.core.RSeq.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.seq_reduce.call(null, b, c, a) | |
}; | |
cljs.core.RSeq.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.RSeq.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.i + 1 | |
}; | |
cljs.core.RSeq.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return cljs.core._nth.call(null, this.ci, this.i) | |
}; | |
cljs.core.RSeq.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return 0 < this.i ? new cljs.core.RSeq(this.ci, this.i - 1, null) : cljs.core.List.EMPTY | |
}; | |
cljs.core.RSeq.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.RSeq.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.RSeq(this.ci, this.i, b) | |
}; | |
cljs.core.RSeq.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.RSeq.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_RSeq = function(a, b, c) { | |
return new cljs.core.RSeq(a, b, c) | |
}; | |
cljs.core.second = function(a) { | |
return cljs.core.first.call(null, cljs.core.next.call(null, a)) | |
}; | |
cljs.core.ffirst = function(a) { | |
return cljs.core.first.call(null, cljs.core.first.call(null, a)) | |
}; | |
cljs.core.nfirst = function(a) { | |
return cljs.core.next.call(null, cljs.core.first.call(null, a)) | |
}; | |
cljs.core.fnext = function(a) { | |
return cljs.core.first.call(null, cljs.core.next.call(null, a)) | |
}; | |
cljs.core.nnext = function(a) { | |
return cljs.core.next.call(null, cljs.core.next.call(null, a)) | |
}; | |
cljs.core.last = function(a) { | |
for(;;) { | |
var b = cljs.core.next.call(null, a); | |
if(null != b) { | |
a = b | |
}else { | |
return cljs.core.first.call(null, a) | |
} | |
} | |
}; | |
cljs.core.IEquiv._ = !0; | |
cljs.core._equiv._ = function(a, b) { | |
return a === b | |
}; | |
cljs.core.conj = function() { | |
var a = null, b = function(a, b) { | |
return null != a ? cljs.core._conj.call(null, a, b) : cljs.core.list.call(null, b) | |
}, c = function() { | |
var b = function(b, c, d) { | |
for(;;) { | |
if(cljs.core.truth_(d)) { | |
b = a.call(null, b, c), c = cljs.core.first.call(null, d), d = cljs.core.next.call(null, d) | |
}else { | |
return a.call(null, b, c) | |
} | |
} | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.empty = function(a) { | |
return cljs.core._empty.call(null, a) | |
}; | |
cljs.core.accumulating_seq_count = function(a) { | |
a = cljs.core.seq.call(null, a); | |
for(var b = 0;;) { | |
if(cljs.core.counted_QMARK_.call(null, a)) { | |
return b + cljs.core._count.call(null, a) | |
} | |
a = cljs.core.next.call(null, a); | |
b += 1 | |
} | |
}; | |
cljs.core.count = function(a) { | |
if(null != a) { | |
var b; | |
a ? (b = (b = a.cljs$lang$protocol_mask$partition0$ & 2) ? b : a.cljs$core$ICounted$, b = b ? !0 : !1) : b = !1; | |
a = b ? cljs.core._count.call(null, a) : a instanceof Array ? a.length : cljs.core.string_QMARK_.call(null, a) ? a.length : cljs.core.type_satisfies_.call(null, cljs.core.ICounted, a) ? cljs.core._count.call(null, a) : cljs.core.accumulating_seq_count.call(null, a) | |
}else { | |
a = 0 | |
} | |
return a | |
}; | |
cljs.core.linear_traversal_nth = function() { | |
var a = null, b = function(a, b) { | |
for(;;) { | |
if(null == a) { | |
throw Error("Index out of bounds"); | |
} | |
if(0 === b) { | |
if(cljs.core.seq.call(null, a)) { | |
return cljs.core.first.call(null, a) | |
} | |
throw Error("Index out of bounds"); | |
} | |
if(cljs.core.indexed_QMARK_.call(null, a)) { | |
return cljs.core._nth.call(null, a, b) | |
} | |
if(cljs.core.seq.call(null, a)) { | |
var c = cljs.core.next.call(null, a), g = b - 1; | |
a = c; | |
b = g | |
}else { | |
throw Error("Index out of bounds"); | |
} | |
} | |
}, c = function(a, b, c) { | |
for(;;) { | |
if(null == a) { | |
return c | |
} | |
if(0 === b) { | |
return cljs.core.seq.call(null, a) ? cljs.core.first.call(null, a) : c | |
} | |
if(cljs.core.indexed_QMARK_.call(null, a)) { | |
return cljs.core._nth.call(null, a, b, c) | |
} | |
if(cljs.core.seq.call(null, a)) { | |
a = cljs.core.next.call(null, a), b -= 1 | |
}else { | |
return c | |
} | |
} | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.nth = function() { | |
var a = null, b = function(a, b) { | |
var c; | |
null == a ? c = null : (a ? (c = (c = a.cljs$lang$protocol_mask$partition0$ & 16) ? c : a.cljs$core$IIndexed$, c = c ? !0 : !1) : c = !1, c = c ? cljs.core._nth.call(null, a, Math.floor(b)) : a instanceof Array ? b < a.length ? a[b] : null : cljs.core.string_QMARK_.call(null, a) ? b < a.length ? a[b] : null : cljs.core.type_satisfies_.call(null, cljs.core.IIndexed, a) ? cljs.core._nth.call(null, a, b) : cljs.core.linear_traversal_nth.call(null, a, Math.floor(b))); | |
return c | |
}, c = function(a, b, c) { | |
if(null != a) { | |
var g; | |
a ? (g = (g = a.cljs$lang$protocol_mask$partition0$ & 16) ? g : a.cljs$core$IIndexed$, g = g ? !0 : !1) : g = !1; | |
a = g ? cljs.core._nth.call(null, a, Math.floor(b), c) : a instanceof Array ? b < a.length ? a[b] : c : cljs.core.string_QMARK_.call(null, a) ? b < a.length ? a[b] : c : cljs.core.type_satisfies_.call(null, cljs.core.IIndexed, a) ? cljs.core._nth.call(null, a, b) : cljs.core.linear_traversal_nth.call(null, a, Math.floor(b), c) | |
}else { | |
a = c | |
} | |
return a | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.get = function() { | |
var a = null, b = function(a, b) { | |
var c; | |
null == a ? c = null : (a ? (c = (c = a.cljs$lang$protocol_mask$partition0$ & 256) ? c : a.cljs$core$ILookup$, c = c ? !0 : !1) : c = !1, c = c ? cljs.core._lookup.call(null, a, b) : a instanceof Array ? b < a.length ? a[b] : null : cljs.core.string_QMARK_.call(null, a) ? b < a.length ? a[b] : null : cljs.core.type_satisfies_.call(null, cljs.core.ILookup, a) ? cljs.core._lookup.call(null, a, b) : null); | |
return c | |
}, c = function(a, b, c) { | |
if(null != a) { | |
var g; | |
a ? (g = (g = a.cljs$lang$protocol_mask$partition0$ & 256) ? g : a.cljs$core$ILookup$, g = g ? !0 : !1) : g = !1; | |
a = g ? cljs.core._lookup.call(null, a, b, c) : a instanceof Array ? b < a.length ? a[b] : c : cljs.core.string_QMARK_.call(null, a) ? b < a.length ? a[b] : c : cljs.core.type_satisfies_.call(null, cljs.core.ILookup, a) ? cljs.core._lookup.call(null, a, b, c) : c | |
}else { | |
a = c | |
} | |
return a | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.assoc = function() { | |
var a = null, b = function(a, b, c) { | |
return null != a ? cljs.core._assoc.call(null, a, b, c) : cljs.core.hash_map.call(null, b, c) | |
}, c = function() { | |
var b = function(b, c, d, e) { | |
for(;;) { | |
if(b = a.call(null, b, c, d), cljs.core.truth_(e)) { | |
c = cljs.core.first.call(null, e), d = cljs.core.second.call(null, e), e = cljs.core.nnext.call(null, e) | |
}else { | |
return b | |
} | |
} | |
}, c = function(a, c, e, k) { | |
var l = null; | |
3 < arguments.length && (l = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return b.call(this, a, c, e, l) | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var k = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, k, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f, g) { | |
switch(arguments.length) { | |
case 3: | |
return b.call(this, a, e, f); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, f, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$3 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.dissoc = function() { | |
var a = null, b = function(a, b) { | |
return cljs.core._dissoc.call(null, a, b) | |
}, c = function() { | |
var b = function(b, c, d) { | |
for(;;) { | |
if(b = a.call(null, b, c), cljs.core.truth_(d)) { | |
c = cljs.core.first.call(null, d), d = cljs.core.next.call(null, d) | |
}else { | |
return b | |
} | |
} | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return a; | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.fn_QMARK_ = function(a) { | |
var b = goog.isFunction(a); | |
return b ? b : a ? cljs.core.truth_(cljs.core.truth_(null) ? null : a.cljs$core$Fn$) ? !0 : a.cljs$lang$protocol_mask$partition$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.Fn, a) : cljs.core.type_satisfies_.call(null, cljs.core.Fn, a) | |
}; | |
cljs.core.with_meta = function with_meta(b, c) { | |
return function() { | |
var c = cljs.core.fn_QMARK_.call(null, b); | |
c && (b ? (c = (c = b.cljs$lang$protocol_mask$partition0$ & 262144) ? c : b.cljs$core$IWithMeta$, c = c ? !0 : b.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IWithMeta, b)) : c = cljs.core.type_satisfies_.call(null, cljs.core.IWithMeta, b), c = !c); | |
return c | |
}() ? with_meta.call(null, function() { | |
void 0 === cljs.core.t6110 && (cljs.core.t6110 = {}, cljs.core.t6110 = function(b, c, f, g) { | |
this.meta = b; | |
this.o = c; | |
this.with_meta = f; | |
this.meta6111 = g; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 393217 | |
}, cljs.core.t6110.cljs$lang$type = !0, cljs.core.t6110.cljs$lang$ctorStr = "cljs.core/t6110", cljs.core.t6110.cljs$lang$ctorPrWriter = function(b, c, f) { | |
return cljs.core._write.call(null, c, "cljs.core/t6110") | |
}, cljs.core.t6110.prototype.call = function() { | |
var b = function(b, c) { | |
return cljs.core.apply.call(null, b.o, c) | |
}, c = function(c, e) { | |
c = this; | |
var h = null; | |
1 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return b.call(this, c, h) | |
}; | |
c.cljs$lang$maxFixedArity = 1; | |
c.cljs$lang$applyTo = function(c) { | |
var e = cljs.core.first(c); | |
c = cljs.core.rest(c); | |
return b(e, c) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), cljs.core.t6110.prototype.apply = function(b, c) { | |
b = this; | |
return b.call.apply(b, [b].concat(c.slice())) | |
}, cljs.core.t6110.prototype.cljs$core$Fn$ = !0, cljs.core.t6110.prototype.cljs$core$IMeta$_meta$arity$1 = function(b) { | |
return this.meta6111 | |
}, cljs.core.t6110.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(b, c) { | |
return new cljs.core.t6110(this.meta, this.o, this.with_meta, c) | |
}, cljs.core.__GT_t6110 = function(b, c, f, g) { | |
return new cljs.core.t6110(b, c, f, g) | |
}); | |
return new cljs.core.t6110(c, b, with_meta, null) | |
}(), c) : cljs.core._with_meta.call(null, b, c) | |
}; | |
cljs.core.meta = function(a) { | |
var b; | |
a ? (b = (b = a.cljs$lang$protocol_mask$partition0$ & 131072) ? b : a.cljs$core$IMeta$, b = b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IMeta, a)) : b = cljs.core.type_satisfies_.call(null, cljs.core.IMeta, a); | |
return b ? cljs.core._meta.call(null, a) : null | |
}; | |
cljs.core.peek = function(a) { | |
return cljs.core._peek.call(null, a) | |
}; | |
cljs.core.pop = function(a) { | |
return cljs.core._pop.call(null, a) | |
}; | |
cljs.core.disj = function() { | |
var a = null, b = function(a, b) { | |
return cljs.core._disjoin.call(null, a, b) | |
}, c = function() { | |
var b = function(b, c, d) { | |
for(;;) { | |
if(b = a.call(null, b, c), cljs.core.truth_(d)) { | |
c = cljs.core.first.call(null, d), d = cljs.core.next.call(null, d) | |
}else { | |
return b | |
} | |
} | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return a; | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.string_hash_cache = {}; | |
cljs.core.string_hash_cache_count = 0; | |
cljs.core.add_to_string_hash_cache = function(a) { | |
var b = goog.string.hashCode(a); | |
cljs.core.string_hash_cache[a] = b; | |
cljs.core.string_hash_cache_count += 1; | |
return b | |
}; | |
cljs.core.check_string_hash_cache = function(a) { | |
255 < cljs.core.string_hash_cache_count && (cljs.core.string_hash_cache = {}, cljs.core.string_hash_cache_count = 0); | |
var b = cljs.core.string_hash_cache[a]; | |
return"number" === typeof b ? b : cljs.core.add_to_string_hash_cache.call(null, a) | |
}; | |
cljs.core.hash = function() { | |
var a = null, b = function(b) { | |
return a.call(null, b, !0) | |
}, c = function(a, b) { | |
var c = goog.isString(a); | |
return(c ? b : c) ? cljs.core.check_string_hash_cache.call(null, a) : cljs.core._hash.call(null, a) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.empty_QMARK_ = function(a) { | |
var b = null == a; | |
return b ? b : cljs.core.not.call(null, cljs.core.seq.call(null, a)) | |
}; | |
cljs.core.coll_QMARK_ = function(a) { | |
if(null == a) { | |
return!1 | |
} | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 8) ? b : a.cljs$core$ICollection$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.ICollection, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.ICollection, a) | |
}; | |
cljs.core.set_QMARK_ = function(a) { | |
if(null == a) { | |
return!1 | |
} | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 4096) ? b : a.cljs$core$ISet$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.ISet, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.ISet, a) | |
}; | |
cljs.core.associative_QMARK_ = function(a) { | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 512) ? b : a.cljs$core$IAssociative$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IAssociative, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.IAssociative, a) | |
}; | |
cljs.core.sequential_QMARK_ = function(a) { | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 16777216) ? b : a.cljs$core$ISequential$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.ISequential, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.ISequential, a) | |
}; | |
cljs.core.reduceable_QMARK_ = function(a) { | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 524288) ? b : a.cljs$core$IReduce$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IReduce, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.IReduce, a) | |
}; | |
cljs.core.map_QMARK_ = function(a) { | |
if(null == a) { | |
return!1 | |
} | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 1024) ? b : a.cljs$core$IMap$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IMap, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.IMap, a) | |
}; | |
cljs.core.vector_QMARK_ = function(a) { | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 16384) ? b : a.cljs$core$IVector$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IVector, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.IVector, a) | |
}; | |
cljs.core.chunked_seq_QMARK_ = function(a) { | |
if(a) { | |
var b = a.cljs$lang$protocol_mask$partition1$ & 512; | |
a = b ? b : a.cljs$core$IChunkedSeq$; | |
return a ? !0 : !1 | |
} | |
return!1 | |
}; | |
cljs.core.js_obj = function() { | |
var a = null, b = function() { | |
var a = function(a) { | |
return cljs.core.apply.call(null, goog.object.create, a) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a) { | |
switch(arguments.length) { | |
case 0: | |
return{}; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(cljs.core.array_seq(arguments, 0)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 0; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = function() { | |
return{} | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.js_keys = function(a) { | |
var b = []; | |
goog.object.forEach(a, function(a, d, e) { | |
return b.push(d) | |
}); | |
return b | |
}; | |
cljs.core.js_delete = function(a, b) { | |
return delete a[b] | |
}; | |
cljs.core.array_copy = function(a, b, c, d, e) { | |
for(;;) { | |
if(0 === e) { | |
return c | |
} | |
c[d] = a[b]; | |
d += 1; | |
e -= 1; | |
b += 1 | |
} | |
}; | |
cljs.core.array_copy_downward = function(a, b, c, d, e) { | |
b += e - 1; | |
for(d += e - 1;;) { | |
if(0 === e) { | |
return c | |
} | |
c[d] = a[b]; | |
d -= 1; | |
e -= 1; | |
b -= 1 | |
} | |
}; | |
cljs.core.lookup_sentinel = {}; | |
cljs.core.false_QMARK_ = function(a) { | |
return!1 === a | |
}; | |
cljs.core.true_QMARK_ = function(a) { | |
return!0 === a | |
}; | |
cljs.core.undefined_QMARK_ = function(a) { | |
return void 0 === a | |
}; | |
cljs.core.seq_QMARK_ = function(a) { | |
if(null == a) { | |
return!1 | |
} | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 64) ? b : a.cljs$core$ISeq$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.ISeq, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.ISeq, a) | |
}; | |
cljs.core.seqable_QMARK_ = function(a) { | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 8388608) ? b : a.cljs$core$ISeqable$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.ISeqable, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.ISeqable, a) | |
}; | |
cljs.core.boolean$ = function(a) { | |
return cljs.core.truth_(a) ? !0 : !1 | |
}; | |
cljs.core.keyword_QMARK_ = function(a) { | |
var b = goog.isString(a); | |
return b ? "\ufdd0" === a.charAt(0) : b | |
}; | |
cljs.core.ifn_QMARK_ = function(a) { | |
var b = cljs.core.fn_QMARK_.call(null, a); | |
return b ? b : a ? (b = (b = a.cljs$lang$protocol_mask$partition0$ & 1) ? b : a.cljs$core$IFn$, b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IFn, a)) : cljs.core.type_satisfies_.call(null, cljs.core.IFn, a) | |
}; | |
cljs.core.integer_QMARK_ = function(a) { | |
var b = "number" === typeof a; | |
return b && (b = !isNaN(a)) ? (b = Infinity !== a) ? parseFloat(a) === parseInt(a, 10) : b : b | |
}; | |
cljs.core.contains_QMARK_ = function(a, b) { | |
return cljs.core.get.call(null, a, b, cljs.core.lookup_sentinel) === cljs.core.lookup_sentinel ? !1 : !0 | |
}; | |
cljs.core.find = function(a, b) { | |
var c; | |
if(c = null != a) { | |
c = (c = cljs.core.associative_QMARK_.call(null, a)) ? cljs.core.contains_QMARK_.call(null, a, b) : c | |
} | |
return c ? cljs.core.PersistentVector.fromArray([b, cljs.core.get.call(null, a, b)], !0) : null | |
}; | |
cljs.core.distinct_QMARK_ = function() { | |
var a = null, b = function(a, b) { | |
return!cljs.core._EQ_.call(null, a, b) | |
}, c = function() { | |
var a = function(a, b, c) { | |
if(cljs.core._EQ_.call(null, a, b)) { | |
return!1 | |
} | |
a = cljs.core.PersistentHashSet.fromArray([b, null, a, null], !0); | |
for(b = c;;) { | |
var d = cljs.core.first.call(null, b); | |
c = cljs.core.next.call(null, b); | |
if(cljs.core.truth_(b)) { | |
if(cljs.core.contains_QMARK_.call(null, a, d)) { | |
return!1 | |
} | |
a = cljs.core.conj.call(null, a, d); | |
b = c | |
}else { | |
return!0 | |
} | |
} | |
}, b = function(b, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, c, k) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return!0; | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return!0 | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.compare = function(a, b) { | |
if(a === b) { | |
return 0 | |
} | |
if(null == a) { | |
return-1 | |
} | |
if(null == b) { | |
return 1 | |
} | |
if(cljs.core.type.call(null, a) === cljs.core.type.call(null, b)) { | |
var c; | |
a ? (c = (c = a.cljs$lang$protocol_mask$partition1$ & 2048) ? c : a.cljs$core$IComparable$, c = c ? !0 : !1) : c = !1; | |
return c ? cljs.core._compare.call(null, a, b) : goog.array.defaultCompare(a, b) | |
} | |
throw Error("compare on non-nil objects of different types"); | |
}; | |
cljs.core.compare_indexed = function() { | |
var a = null, b = function(b, c) { | |
var f = cljs.core.count.call(null, b), g = cljs.core.count.call(null, c); | |
return f < g ? -1 : f > g ? 1 : a.call(null, b, c, f, 0) | |
}, c = function(a, b, c, g) { | |
for(;;) { | |
var h = cljs.core.compare.call(null, cljs.core.nth.call(null, a, g), cljs.core.nth.call(null, b, g)), k; | |
k = (k = 0 === h) ? g + 1 < c : k; | |
if(k) { | |
g += 1 | |
}else { | |
return h | |
} | |
} | |
}, a = function(a, e, f, g) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 4: | |
return c.call(this, a, e, f, g) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$4 = c; | |
return a | |
}(); | |
cljs.core.fn__GT_comparator = function(a) { | |
return cljs.core._EQ_.call(null, a, cljs.core.compare) ? cljs.core.compare : function(b, c) { | |
var d = a.call(null, b, c); | |
return"number" === typeof d ? d : cljs.core.truth_(d) ? -1 : cljs.core.truth_(a.call(null, c, b)) ? 1 : 0 | |
} | |
}; | |
cljs.core.sort = function() { | |
var a = null, b = function(b) { | |
return a.call(null, cljs.core.compare, b) | |
}, c = function(a, b) { | |
if(cljs.core.seq.call(null, b)) { | |
var c = cljs.core.to_array.call(null, b); | |
goog.array.stableSort(c, cljs.core.fn__GT_comparator.call(null, a)); | |
return cljs.core.seq.call(null, c) | |
} | |
return cljs.core.List.EMPTY | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.sort_by = function() { | |
var a = null, b = function(b, c) { | |
return a.call(null, b, cljs.core.compare, c) | |
}, c = function(a, b, c) { | |
return cljs.core.sort.call(null, function(c, f) { | |
return cljs.core.fn__GT_comparator.call(null, b).call(null, a.call(null, c), a.call(null, f)) | |
}, c) | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.seq_reduce = function() { | |
var a = null, b = function(a, b) { | |
var c = cljs.core.seq.call(null, b); | |
return c ? cljs.core.reduce.call(null, a, cljs.core.first.call(null, c), cljs.core.next.call(null, c)) : a.call(null) | |
}, c = function(a, b, c) { | |
for(c = cljs.core.seq.call(null, c);;) { | |
if(c) { | |
b = a.call(null, b, cljs.core.first.call(null, c)); | |
if(cljs.core.reduced_QMARK_.call(null, b)) { | |
return cljs.core.deref.call(null, b) | |
} | |
c = cljs.core.next.call(null, c) | |
}else { | |
return b | |
} | |
} | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.shuffle = function(a) { | |
a = cljs.core.to_array.call(null, a); | |
goog.array.shuffle(a); | |
return cljs.core.vec.call(null, a) | |
}; | |
cljs.core.reduce = function() { | |
var a = null, b = function(a, b) { | |
var c; | |
b ? (c = (c = b.cljs$lang$protocol_mask$partition0$ & 524288) ? c : b.cljs$core$IReduce$, c = c ? !0 : !1) : c = !1; | |
return c ? cljs.core._reduce.call(null, b, a) : b instanceof Array ? cljs.core.array_reduce.call(null, b, a) : cljs.core.string_QMARK_.call(null, b) ? cljs.core.array_reduce.call(null, b, a) : cljs.core.type_satisfies_.call(null, cljs.core.IReduce, b) ? cljs.core._reduce.call(null, b, a) : cljs.core.seq_reduce.call(null, a, b) | |
}, c = function(a, b, c) { | |
var g; | |
c ? (g = (g = c.cljs$lang$protocol_mask$partition0$ & 524288) ? g : c.cljs$core$IReduce$, g = g ? !0 : !1) : g = !1; | |
return g ? cljs.core._reduce.call(null, c, a, b) : c instanceof Array ? cljs.core.array_reduce.call(null, c, a, b) : cljs.core.string_QMARK_.call(null, c) ? cljs.core.array_reduce.call(null, c, a, b) : cljs.core.type_satisfies_.call(null, cljs.core.IReduce, c) ? cljs.core._reduce.call(null, c, a, b) : cljs.core.seq_reduce.call(null, a, b, c) | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.reduce_kv = function(a, b, c) { | |
return cljs.core._kv_reduce.call(null, c, a, b) | |
}; | |
cljs.core._PLUS_ = function() { | |
var a = null, b = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b + c, d) | |
}, d = function(a, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, d, h) | |
}; | |
d.cljs$lang$maxFixedArity = 2; | |
d.cljs$lang$applyTo = function(a) { | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(d, g, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = b; | |
return d | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 0: | |
return 0; | |
case 1: | |
return a; | |
case 2: | |
return a + d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = function() { | |
return 0 | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a + b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core._ = function() { | |
var a = null, b = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b - c, d) | |
}, d = function(a, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, d, h) | |
}; | |
d.cljs$lang$maxFixedArity = 2; | |
d.cljs$lang$applyTo = function(a) { | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(d, g, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = b; | |
return d | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 1: | |
return-a; | |
case 2: | |
return a - d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return-a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a - b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core._STAR_ = function() { | |
var a = null, b = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b * c, d) | |
}, d = function(a, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, d, h) | |
}; | |
d.cljs$lang$maxFixedArity = 2; | |
d.cljs$lang$applyTo = function(a) { | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(d, g, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = b; | |
return d | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 0: | |
return 1; | |
case 1: | |
return a; | |
case 2: | |
return a * d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = function() { | |
return 1 | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a * b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core._SLASH_ = function() { | |
var a = null, b = function(b) { | |
return a.call(null, 1, b) | |
}, c = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, a.call(null, b, c), d) | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return a / e; | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a / b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core._LT_ = function() { | |
var a = null, b = function() { | |
var a = function(a, b, c) { | |
for(;;) { | |
if(a < b) { | |
if(cljs.core.next.call(null, c)) { | |
a = b, b = cljs.core.first.call(null, c), c = cljs.core.next.call(null, c) | |
}else { | |
return b < cljs.core.first.call(null, c) | |
} | |
}else { | |
return!1 | |
} | |
} | |
}, b = function(b, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, d, h) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var g = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, g, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 1: | |
return!0; | |
case 2: | |
return a < d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return!0 | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a < b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core._LT__EQ_ = function() { | |
var a = null, b = function() { | |
var a = function(a, b, c) { | |
for(;;) { | |
if(a <= b) { | |
if(cljs.core.next.call(null, c)) { | |
a = b, b = cljs.core.first.call(null, c), c = cljs.core.next.call(null, c) | |
}else { | |
return b <= cljs.core.first.call(null, c) | |
} | |
}else { | |
return!1 | |
} | |
} | |
}, b = function(b, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, d, h) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var g = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, g, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 1: | |
return!0; | |
case 2: | |
return a <= d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return!0 | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a <= b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core._GT_ = function() { | |
var a = null, b = function() { | |
var a = function(a, b, c) { | |
for(;;) { | |
if(a > b) { | |
if(cljs.core.next.call(null, c)) { | |
a = b, b = cljs.core.first.call(null, c), c = cljs.core.next.call(null, c) | |
}else { | |
return b > cljs.core.first.call(null, c) | |
} | |
}else { | |
return!1 | |
} | |
} | |
}, b = function(b, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, d, h) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var g = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, g, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 1: | |
return!0; | |
case 2: | |
return a > d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return!0 | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a > b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core._GT__EQ_ = function() { | |
var a = null, b = function() { | |
var a = function(a, b, c) { | |
for(;;) { | |
if(a >= b) { | |
if(cljs.core.next.call(null, c)) { | |
a = b, b = cljs.core.first.call(null, c), c = cljs.core.next.call(null, c) | |
}else { | |
return b >= cljs.core.first.call(null, c) | |
} | |
}else { | |
return!1 | |
} | |
} | |
}, b = function(b, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, d, h) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var g = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, g, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 1: | |
return!0; | |
case 2: | |
return a >= d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return!0 | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a >= b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.dec = function(a) { | |
return a - 1 | |
}; | |
cljs.core.max = function() { | |
var a = null, b = function(a, b) { | |
return a > b ? a : b | |
}, c = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b > c ? b : c, d) | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return a; | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.min = function() { | |
var a = null, b = function(a, b) { | |
return a < b ? a : b | |
}, c = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b < c ? b : c, d) | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return a; | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.byte$ = function(a) { | |
return a | |
}; | |
cljs.core.char$ = function(a) { | |
if("number" === typeof a) { | |
return String.fromCharCode(a) | |
} | |
var b; | |
b = (b = cljs.core.string_QMARK_.call(null, a)) ? 1 === a.length : b; | |
if(b) { | |
return a | |
} | |
throw Error("Argument to char must be a character or number"); | |
}; | |
cljs.core.short$ = function(a) { | |
return a | |
}; | |
cljs.core.float$ = function(a) { | |
return a | |
}; | |
cljs.core.double$ = function(a) { | |
return a | |
}; | |
cljs.core.unchecked_byte = function(a) { | |
return a | |
}; | |
cljs.core.unchecked_char = function(a) { | |
return a | |
}; | |
cljs.core.unchecked_short = function(a) { | |
return a | |
}; | |
cljs.core.unchecked_float = function(a) { | |
return a | |
}; | |
cljs.core.unchecked_double = function(a) { | |
return a | |
}; | |
cljs.core.unchecked_add = function() { | |
var a = null, b = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b + c, d) | |
}, d = function(a, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, d, h) | |
}; | |
d.cljs$lang$maxFixedArity = 2; | |
d.cljs$lang$applyTo = function(a) { | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(d, g, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = b; | |
return d | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 0: | |
return 0; | |
case 1: | |
return a; | |
case 2: | |
return a + d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = function() { | |
return 0 | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a + b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.unchecked_add_int = function() { | |
var a = null, b = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b + c, d) | |
}, d = function(a, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, d, h) | |
}; | |
d.cljs$lang$maxFixedArity = 2; | |
d.cljs$lang$applyTo = function(a) { | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(d, g, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = b; | |
return d | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 0: | |
return 0; | |
case 1: | |
return a; | |
case 2: | |
return a + d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = function() { | |
return 0 | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a + b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.unchecked_dec = function(a) { | |
return a - 1 | |
}; | |
cljs.core.unchecked_dec_int = function(a) { | |
return a - 1 | |
}; | |
cljs.core.unchecked_divide_int = function() { | |
var a = null, b = function(b) { | |
return a.call(null, 1, b) | |
}, c = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, a.call(null, b, c), d) | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return a / e; | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a / b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.unchecked_inc = function(a) { | |
return a + 1 | |
}; | |
cljs.core.unchecked_inc_int = function(a) { | |
return a + 1 | |
}; | |
cljs.core.unchecked_multiply = function() { | |
var a = null, b = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b * c, d) | |
}, d = function(a, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, d, h) | |
}; | |
d.cljs$lang$maxFixedArity = 2; | |
d.cljs$lang$applyTo = function(a) { | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(d, g, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = b; | |
return d | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 0: | |
return 1; | |
case 1: | |
return a; | |
case 2: | |
return a * d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = function() { | |
return 1 | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a * b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.unchecked_multiply_int = function() { | |
var a = null, b = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b * c, d) | |
}, d = function(a, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, d, h) | |
}; | |
d.cljs$lang$maxFixedArity = 2; | |
d.cljs$lang$applyTo = function(a) { | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(d, g, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = b; | |
return d | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 0: | |
return 1; | |
case 1: | |
return a; | |
case 2: | |
return a * d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = function() { | |
return 1 | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a * b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.unchecked_negate = function(a) { | |
return-a | |
}; | |
cljs.core.unchecked_negate_int = function(a) { | |
return-a | |
}; | |
cljs.core.unchecked_remainder_int = function(a, b) { | |
return cljs.core.mod.call(null, a, b) | |
}; | |
cljs.core.unchecked_substract = function() { | |
var a = null, b = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b - c, d) | |
}, d = function(a, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, d, h) | |
}; | |
d.cljs$lang$maxFixedArity = 2; | |
d.cljs$lang$applyTo = function(a) { | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(d, g, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = b; | |
return d | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 1: | |
return-a; | |
case 2: | |
return a - d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return-a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a - b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.unchecked_substract_int = function() { | |
var a = null, b = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b - c, d) | |
}, d = function(a, d, g) { | |
var h = null; | |
2 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, d, h) | |
}; | |
d.cljs$lang$maxFixedArity = 2; | |
d.cljs$lang$applyTo = function(a) { | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(d, g, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = b; | |
return d | |
}(), a = function(a, d, e) { | |
switch(arguments.length) { | |
case 1: | |
return-a; | |
case 2: | |
return a - d; | |
default: | |
return b.cljs$core$IFn$_invoke$arity$variadic(a, d, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = b.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return-a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return a - b | |
}; | |
a.cljs$core$IFn$_invoke$arity$variadic = b.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.fix = function(a) { | |
return 0 <= a ? Math.floor.call(null, a) : Math.ceil.call(null, a) | |
}; | |
cljs.core.int$ = function(a) { | |
return a | 0 | |
}; | |
cljs.core.unchecked_int = function(a) { | |
return cljs.core.fix.call(null, a) | |
}; | |
cljs.core.long$ = function(a) { | |
return cljs.core.fix.call(null, a) | |
}; | |
cljs.core.unchecked_long = function(a) { | |
return cljs.core.fix.call(null, a) | |
}; | |
cljs.core.booleans = function(a) { | |
return a | |
}; | |
cljs.core.bytes = function(a) { | |
return a | |
}; | |
cljs.core.chars = function(a) { | |
return a | |
}; | |
cljs.core.shorts = function(a) { | |
return a | |
}; | |
cljs.core.ints = function(a) { | |
return a | |
}; | |
cljs.core.floats = function(a) { | |
return a | |
}; | |
cljs.core.doubles = function(a) { | |
return a | |
}; | |
cljs.core.longs = function(a) { | |
return a | |
}; | |
cljs.core.js_mod = function(a, b) { | |
return a % b | |
}; | |
cljs.core.mod = function(a, b) { | |
return(a % b + b) % b | |
}; | |
cljs.core.quot = function(a, b) { | |
return cljs.core.fix.call(null, (a - a % b) / b) | |
}; | |
cljs.core.rem = function(a, b) { | |
var c = cljs.core.quot.call(null, a, b); | |
return a - b * c | |
}; | |
cljs.core.rand = function() { | |
var a = null, b = function() { | |
return Math.random.call(null) | |
}, c = function(b) { | |
return b * a.call(null) | |
}, a = function(a) { | |
switch(arguments.length) { | |
case 0: | |
return b.call(this); | |
case 1: | |
return c.call(this, a) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$0 = b; | |
a.cljs$core$IFn$_invoke$arity$1 = c; | |
return a | |
}(); | |
cljs.core.rand_int = function(a) { | |
return cljs.core.fix.call(null, cljs.core.rand.call(null, a)) | |
}; | |
cljs.core.bit_xor = function(a, b) { | |
return a ^ b | |
}; | |
cljs.core.bit_and = function(a, b) { | |
return a & b | |
}; | |
cljs.core.bit_or = function(a, b) { | |
return a | b | |
}; | |
cljs.core.bit_and_not = function(a, b) { | |
return a & ~b | |
}; | |
cljs.core.bit_clear = function(a, b) { | |
return a & ~(1 << b) | |
}; | |
cljs.core.bit_flip = function(a, b) { | |
return a ^ 1 << b | |
}; | |
cljs.core.bit_not = function(a) { | |
return~a | |
}; | |
cljs.core.bit_set = function(a, b) { | |
return a | 1 << b | |
}; | |
cljs.core.bit_test = function(a, b) { | |
return 0 != (a & 1 << b) | |
}; | |
cljs.core.bit_shift_left = function(a, b) { | |
return a << b | |
}; | |
cljs.core.bit_shift_right = function(a, b) { | |
return a >> b | |
}; | |
cljs.core.bit_shift_right_zero_fill = function(a, b) { | |
return a >>> b | |
}; | |
cljs.core.bit_count = function(a) { | |
a -= a >> 1 & 1431655765; | |
a = (a & 858993459) + (a >> 2 & 858993459); | |
return 16843009 * (a + (a >> 4) & 252645135) >> 24 | |
}; | |
cljs.core._EQ__EQ_ = function() { | |
var a = null, b = function(a, b) { | |
return cljs.core._equiv.call(null, a, b) | |
}, c = function() { | |
var b = function(b, c, d) { | |
for(;;) { | |
if(cljs.core.truth_(a.call(null, b, c))) { | |
if(cljs.core.next.call(null, d)) { | |
b = c, c = cljs.core.first.call(null, d), d = cljs.core.next.call(null, d) | |
}else { | |
return a.call(null, c, cljs.core.first.call(null, d)) | |
} | |
}else { | |
return!1 | |
} | |
} | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return!0; | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return!0 | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.pos_QMARK_ = function(a) { | |
return 0 < a | |
}; | |
cljs.core.zero_QMARK_ = function(a) { | |
return 0 === a | |
}; | |
cljs.core.neg_QMARK_ = function(a) { | |
return 0 > a | |
}; | |
cljs.core.nthnext = function(a, b) { | |
for(var c = b, d = cljs.core.seq.call(null, a);;) { | |
if(cljs.core.truth_(function() { | |
var a = d; | |
return a ? 0 < c : a | |
}())) { | |
var e = c - 1, f = cljs.core.next.call(null, d), c = e, d = f | |
}else { | |
return d | |
} | |
} | |
}; | |
cljs.core.str_STAR_ = function() { | |
var a = null, b = function(a) { | |
return null == a ? "" : a.toString() | |
}, c = function() { | |
var b = function(b, c) { | |
return function(b, c) { | |
for(;;) { | |
if(cljs.core.truth_(c)) { | |
var d = b.append(a.call(null, cljs.core.first.call(null, c))), e = cljs.core.next.call(null, c); | |
b = d; | |
c = e | |
}else { | |
return a.call(null, b) | |
} | |
} | |
}.call(null, new goog.string.StringBuffer(a.call(null, b)), c) | |
}, c = function(a, c) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return b.call(this, a, e) | |
}; | |
c.cljs$lang$maxFixedArity = 1; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e) { | |
switch(arguments.length) { | |
case 0: | |
return""; | |
case 1: | |
return b.call(this, a); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, cljs.core.array_seq(arguments, 1)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 1; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = function() { | |
return"" | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.str = function() { | |
var a = null, b = function(a) { | |
return cljs.core.keyword_QMARK_.call(null, a) ? cljs.core.str_STAR_.call(null, ":", a.substring(2, a.length)) : null == a ? "" : a.toString() | |
}, c = function() { | |
var b = function(b, c) { | |
return function(b, c) { | |
for(;;) { | |
if(cljs.core.truth_(c)) { | |
var d = b.append(a.call(null, cljs.core.first.call(null, c))), e = cljs.core.next.call(null, c); | |
b = d; | |
c = e | |
}else { | |
return cljs.core.str_STAR_.call(null, b) | |
} | |
} | |
}.call(null, new goog.string.StringBuffer(a.call(null, b)), c) | |
}, c = function(a, c) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return b.call(this, a, e) | |
}; | |
c.cljs$lang$maxFixedArity = 1; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e) { | |
switch(arguments.length) { | |
case 0: | |
return""; | |
case 1: | |
return b.call(this, a); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, cljs.core.array_seq(arguments, 1)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 1; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = function() { | |
return"" | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.subs = function() { | |
var a = null, a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return a.substring(c); | |
case 3: | |
return a.substring(c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, c) { | |
return a.substring(c) | |
}; | |
a.cljs$core$IFn$_invoke$arity$3 = function(a, c, d) { | |
return a.substring(c, d) | |
}; | |
return a | |
}(); | |
cljs.core.format = function() { | |
var a = function(a, b) { | |
var e = cljs.core.map.call(null, function(a) { | |
var b; | |
b = (b = cljs.core.keyword_QMARK_.call(null, a)) ? b : a instanceof cljs.core.Symbol; | |
return b ? "" + cljs.core.str(a) : a | |
}, b); | |
return cljs.core.apply.call(null, goog.string.format, a, e) | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.keyword = function() { | |
var a = null, b = function(a) { | |
return cljs.core.keyword_QMARK_.call(null, a) ? a : a instanceof cljs.core.Symbol ? cljs.core.str_STAR_.call(null, "\ufdd0", ":", cljs.core.name.call(null, a)) : cljs.core.str_STAR_.call(null, "\ufdd0", ":", a) | |
}, c = function(b, c) { | |
return a.call(null, cljs.core.str_STAR_.call(null, b, "/", c)) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.equiv_sequential = function(a, b) { | |
return cljs.core.boolean$.call(null, cljs.core.sequential_QMARK_.call(null, b) ? function() { | |
for(var c = cljs.core.seq.call(null, a), d = cljs.core.seq.call(null, b);;) { | |
if(null == c) { | |
return null == d | |
} | |
if(null != d && cljs.core._EQ_.call(null, cljs.core.first.call(null, c), cljs.core.first.call(null, d))) { | |
c = cljs.core.next.call(null, c), d = cljs.core.next.call(null, d) | |
}else { | |
return!1 | |
} | |
} | |
}() : null) | |
}; | |
cljs.core.hash_combine = function(a, b) { | |
return a ^ b + 2654435769 + (a << 6) + (a >> 2) | |
}; | |
cljs.core.hash_coll = function(a) { | |
return cljs.core.reduce.call(null, function(a, c) { | |
return cljs.core.hash_combine.call(null, a, cljs.core.hash.call(null, c, !1)) | |
}, cljs.core.hash.call(null, cljs.core.first.call(null, a), !1), cljs.core.next.call(null, a)) | |
}; | |
cljs.core.hash_imap = function(a) { | |
var b = 0; | |
for(a = cljs.core.seq.call(null, a);;) { | |
if(a) { | |
var c = cljs.core.first.call(null, a), b = (b + (cljs.core.hash.call(null, cljs.core.key.call(null, c)) ^ cljs.core.hash.call(null, cljs.core.val.call(null, c)))) % 4503599627370496; | |
a = cljs.core.next.call(null, a) | |
}else { | |
return b | |
} | |
} | |
}; | |
cljs.core.hash_iset = function(a) { | |
var b = 0; | |
for(a = cljs.core.seq.call(null, a);;) { | |
if(a) { | |
var c = cljs.core.first.call(null, a), b = (b + cljs.core.hash.call(null, c)) % 4503599627370496; | |
a = cljs.core.next.call(null, a) | |
}else { | |
return b | |
} | |
} | |
}; | |
cljs.core.extend_object_BANG_ = function(a, b) { | |
for(var c = cljs.core.seq.call(null, b), d = null, e = 0, f = 0;;) { | |
if(f < e) { | |
var g = cljs.core._nth.call(null, d, f), h = cljs.core.nth.call(null, g, 0, null), g = cljs.core.nth.call(null, g, 1, null), h = cljs.core.name.call(null, h); | |
a[h] = g; | |
f += 1 | |
}else { | |
if(c = cljs.core.seq.call(null, c)) { | |
cljs.core.chunked_seq_QMARK_.call(null, c) ? (e = cljs.core.chunk_first.call(null, c), c = cljs.core.chunk_rest.call(null, c), d = e, e = cljs.core.count.call(null, e)) : (e = cljs.core.first.call(null, c), d = cljs.core.nth.call(null, e, 0, null), e = cljs.core.nth.call(null, e, 1, null), d = cljs.core.name.call(null, d), a[d] = e, c = cljs.core.next.call(null, c), d = null, e = 0), f = 0 | |
}else { | |
break | |
} | |
} | |
} | |
return a | |
}; | |
cljs.core.List = function(a, b, c, d, e) { | |
this.meta = a; | |
this.first = b; | |
this.rest = c; | |
this.count = d; | |
this.__hash = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 65937646 | |
}; | |
cljs.core.List.cljs$lang$type = !0; | |
cljs.core.List.cljs$lang$ctorStr = "cljs.core/List"; | |
cljs.core.List.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/List") | |
}; | |
cljs.core.List.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.List.prototype.cljs$core$INext$_next$arity$1 = function(a) { | |
return 1 === this.count ? null : this.rest | |
}; | |
cljs.core.List.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return new cljs.core.List(this.meta, b, a, this.count + 1, null) | |
}; | |
cljs.core.List.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.List.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.seq_reduce.call(null, b, a) | |
}; | |
cljs.core.List.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.seq_reduce.call(null, b, c, a) | |
}; | |
cljs.core.List.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.List.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.count | |
}; | |
cljs.core.List.prototype.cljs$core$IStack$_peek$arity$1 = function(a) { | |
return this.first | |
}; | |
cljs.core.List.prototype.cljs$core$IStack$_pop$arity$1 = function(a) { | |
return a.cljs$core$ISeq$_rest$arity$1(a) | |
}; | |
cljs.core.List.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return this.first | |
}; | |
cljs.core.List.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return 1 === this.count ? cljs.core.List.EMPTY : this.rest | |
}; | |
cljs.core.List.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.List.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.List(b, this.first, this.rest, this.count, this.__hash) | |
}; | |
cljs.core.List.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.List.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.List.EMPTY | |
}; | |
cljs.core.__GT_List = function(a, b, c, d, e) { | |
return new cljs.core.List(a, b, c, d, e) | |
}; | |
cljs.core.EmptyList = function(a) { | |
this.meta = a; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 65937614 | |
}; | |
cljs.core.EmptyList.cljs$lang$type = !0; | |
cljs.core.EmptyList.cljs$lang$ctorStr = "cljs.core/EmptyList"; | |
cljs.core.EmptyList.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/EmptyList") | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
return 0 | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$INext$_next$arity$1 = function(a) { | |
return null | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return new cljs.core.List(this.meta, b, null, 1, null) | |
}; | |
cljs.core.EmptyList.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.seq_reduce.call(null, b, a) | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.seq_reduce.call(null, b, c, a) | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return null | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return 0 | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$IStack$_peek$arity$1 = function(a) { | |
return null | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$IStack$_pop$arity$1 = function(a) { | |
throw Error("Can't pop empty list"); | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return null | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return cljs.core.List.EMPTY | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.EmptyList(b) | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.__GT_EmptyList = function(a) { | |
return new cljs.core.EmptyList(a) | |
}; | |
cljs.core.List.EMPTY = new cljs.core.EmptyList(null); | |
cljs.core.reversible_QMARK_ = function(a) { | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 134217728) ? b : a.cljs$core$IReversible$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IReversible, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.IReversible, a) | |
}; | |
cljs.core.rseq = function(a) { | |
return cljs.core._rseq.call(null, a) | |
}; | |
cljs.core.reverse = function(a) { | |
return cljs.core.reversible_QMARK_.call(null, a) ? cljs.core.rseq.call(null, a) : cljs.core.reduce.call(null, cljs.core.conj, cljs.core.List.EMPTY, a) | |
}; | |
cljs.core.list = function() { | |
var a = function(a) { | |
var b; | |
if(a instanceof cljs.core.IndexedSeq) { | |
b = a.arr | |
}else { | |
a: { | |
for(b = [];;) { | |
if(null != a) { | |
b.push(cljs.core._first.call(null, a)), a = cljs.core._next.call(null, a) | |
}else { | |
break a | |
} | |
} | |
b = void 0 | |
} | |
} | |
a = b.length; | |
for(var e = cljs.core.List.EMPTY;;) { | |
if(0 < a) { | |
var f = a - 1, e = cljs.core._conj.call(null, e, b[a - 1]); | |
a = f | |
}else { | |
return e | |
} | |
} | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.Cons = function(a, b, c, d) { | |
this.meta = a; | |
this.first = b; | |
this.rest = c; | |
this.__hash = d; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 65929452 | |
}; | |
cljs.core.Cons.cljs$lang$type = !0; | |
cljs.core.Cons.cljs$lang$ctorStr = "cljs.core/Cons"; | |
cljs.core.Cons.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/Cons") | |
}; | |
cljs.core.Cons.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.Cons.prototype.cljs$core$INext$_next$arity$1 = function(a) { | |
return null == this.rest ? null : cljs.core._seq.call(null, this.rest) | |
}; | |
cljs.core.Cons.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return new cljs.core.Cons(null, b, a, this.__hash) | |
}; | |
cljs.core.Cons.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.Cons.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.seq_reduce.call(null, b, a) | |
}; | |
cljs.core.Cons.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.seq_reduce.call(null, b, c, a) | |
}; | |
cljs.core.Cons.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.Cons.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return this.first | |
}; | |
cljs.core.Cons.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return null == this.rest ? cljs.core.List.EMPTY : this.rest | |
}; | |
cljs.core.Cons.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.Cons.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.Cons(b, this.first, this.rest, this.__hash) | |
}; | |
cljs.core.Cons.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.Cons.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_Cons = function(a, b, c, d) { | |
return new cljs.core.Cons(a, b, c, d) | |
}; | |
cljs.core.cons = function(a, b) { | |
return function() { | |
var a = null == b; | |
return a ? a : b ? (a = (a = b.cljs$lang$protocol_mask$partition0$ & 64) ? a : b.cljs$core$ISeq$, a ? !0 : !1) : !1 | |
}() ? new cljs.core.Cons(null, a, b, null) : new cljs.core.Cons(null, a, cljs.core.seq.call(null, b), null) | |
}; | |
cljs.core.list_QMARK_ = function(a) { | |
if(a) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 33554432) ? b : a.cljs$core$IList$; | |
return b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IList, a) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.IList, a) | |
}; | |
cljs.core.IHash.string = !0; | |
cljs.core._hash.string = function(a) { | |
return goog.string.hashCode(a) | |
}; | |
cljs.core.Keyword = function(a) { | |
this.k = a; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 1 | |
}; | |
cljs.core.Keyword.cljs$lang$type = !0; | |
cljs.core.Keyword.cljs$lang$ctorStr = "cljs.core/Keyword"; | |
cljs.core.Keyword.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/Keyword") | |
}; | |
cljs.core.Keyword.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
var e = a, e = this; | |
if(null == c) { | |
e = null | |
}else { | |
var f; | |
c ? (f = (f = c.cljs$lang$protocol_mask$partition0$ & 256) ? f : c.cljs$core$ILookup$, f = f ? !0 : c.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.ILookup, c)) : f = cljs.core.type_satisfies_.call(null, cljs.core.ILookup, c); | |
e = f ? cljs.core._lookup.call(null, c, e.k, null) : null | |
} | |
return e; | |
case 3: | |
return e = a, e = this, null == c ? e = d : (c ? (f = (f = c.cljs$lang$protocol_mask$partition0$ & 256) ? f : c.cljs$core$ILookup$, f = f ? !0 : c.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.ILookup, c)) : f = cljs.core.type_satisfies_.call(null, cljs.core.ILookup, c), e = f ? cljs.core._lookup.call(null, c, e.k, d) : null), e | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.Keyword.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.__GT_Keyword = function(a) { | |
return new cljs.core.Keyword(a) | |
}; | |
String.prototype.cljs$core$IFn$ = !0; | |
String.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return cljs.core.get.call(null, c, this.toString()); | |
case 3: | |
return cljs.core.get.call(null, c, this.toString(), d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
String.prototype.apply = function(a, b) { | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
String.prototype.apply = function(a, b) { | |
return 2 > b.length ? cljs.core.get.call(null, b[0], a) : cljs.core.get.call(null, b[0], a, b[1]) | |
}; | |
cljs.core.lazy_seq_value = function(a) { | |
var b = a.x; | |
if(a.realized) { | |
return b | |
} | |
a.x = b.call(null); | |
a.realized = !0; | |
return a.x | |
}; | |
cljs.core.LazySeq = function(a, b, c, d) { | |
this.meta = a; | |
this.realized = b; | |
this.x = c; | |
this.__hash = d; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32374988 | |
}; | |
cljs.core.LazySeq.cljs$lang$type = !0; | |
cljs.core.LazySeq.cljs$lang$ctorStr = "cljs.core/LazySeq"; | |
cljs.core.LazySeq.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/LazySeq") | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$INext$_next$arity$1 = function(a) { | |
return cljs.core._seq.call(null, a.cljs$core$ISeq$_rest$arity$1(a)) | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.LazySeq.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.seq_reduce.call(null, b, a) | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.seq_reduce.call(null, b, c, a) | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return cljs.core.seq.call(null, cljs.core.lazy_seq_value.call(null, a)) | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return cljs.core.first.call(null, cljs.core.lazy_seq_value.call(null, a)) | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return cljs.core.rest.call(null, cljs.core.lazy_seq_value.call(null, a)) | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.LazySeq(b, this.realized, this.x, this.__hash) | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_LazySeq = function(a, b, c, d) { | |
return new cljs.core.LazySeq(a, b, c, d) | |
}; | |
cljs.core.ChunkBuffer = function(a, b) { | |
this.buf = a; | |
this.end = b; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 2 | |
}; | |
cljs.core.ChunkBuffer.cljs$lang$type = !0; | |
cljs.core.ChunkBuffer.cljs$lang$ctorStr = "cljs.core/ChunkBuffer"; | |
cljs.core.ChunkBuffer.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/ChunkBuffer") | |
}; | |
cljs.core.ChunkBuffer.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.end | |
}; | |
cljs.core.ChunkBuffer.prototype.add = function(a) { | |
this.buf[this.end] = a; | |
return this.end += 1 | |
}; | |
cljs.core.ChunkBuffer.prototype.chunk = function(a) { | |
a = new cljs.core.ArrayChunk(this.buf, 0, this.end); | |
this.buf = null; | |
return a | |
}; | |
cljs.core.__GT_ChunkBuffer = function(a, b) { | |
return new cljs.core.ChunkBuffer(a, b) | |
}; | |
cljs.core.chunk_buffer = function(a) { | |
return new cljs.core.ChunkBuffer(Array(a), 0) | |
}; | |
cljs.core.ArrayChunk = function(a, b, c) { | |
this.arr = a; | |
this.off = b; | |
this.end = c; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 524306 | |
}; | |
cljs.core.ArrayChunk.cljs$lang$type = !0; | |
cljs.core.ArrayChunk.cljs$lang$ctorStr = "cljs.core/ArrayChunk"; | |
cljs.core.ArrayChunk.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/ArrayChunk") | |
}; | |
cljs.core.ArrayChunk.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.array_reduce.call(null, this.arr, b, this.arr[this.off], this.off + 1) | |
}; | |
cljs.core.ArrayChunk.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.array_reduce.call(null, this.arr, b, c, this.off) | |
}; | |
cljs.core.ArrayChunk.prototype.cljs$core$IChunk$ = !0; | |
cljs.core.ArrayChunk.prototype.cljs$core$IChunk$_drop_first$arity$1 = function(a) { | |
if(this.off === this.end) { | |
throw Error("-drop-first of empty chunk"); | |
} | |
return new cljs.core.ArrayChunk(this.arr, this.off + 1, this.end) | |
}; | |
cljs.core.ArrayChunk.prototype.cljs$core$IIndexed$_nth$arity$2 = function(a, b) { | |
return this.arr[this.off + b] | |
}; | |
cljs.core.ArrayChunk.prototype.cljs$core$IIndexed$_nth$arity$3 = function(a, b, c) { | |
a = (a = 0 <= b) ? b < this.end - this.off : a; | |
return a ? this.arr[this.off + b] : c | |
}; | |
cljs.core.ArrayChunk.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.end - this.off | |
}; | |
cljs.core.__GT_ArrayChunk = function(a, b, c) { | |
return new cljs.core.ArrayChunk(a, b, c) | |
}; | |
cljs.core.array_chunk = function() { | |
var a = null, b = function(a) { | |
return new cljs.core.ArrayChunk(a, 0, a.length) | |
}, c = function(a, b) { | |
return new cljs.core.ArrayChunk(a, b, a.length) | |
}, d = function(a, b, c) { | |
return new cljs.core.ArrayChunk(a, b, c) | |
}, a = function(a, f, g) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, f); | |
case 3: | |
return d.call(this, a, f, g) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
a.cljs$core$IFn$_invoke$arity$3 = d; | |
return a | |
}(); | |
cljs.core.ChunkedCons = function(a, b, c, d) { | |
this.chunk = a; | |
this.more = b; | |
this.meta = c; | |
this.__hash = d; | |
this.cljs$lang$protocol_mask$partition0$ = 31850604; | |
this.cljs$lang$protocol_mask$partition1$ = 1536 | |
}; | |
cljs.core.ChunkedCons.cljs$lang$type = !0; | |
cljs.core.ChunkedCons.cljs$lang$ctorStr = "cljs.core/ChunkedCons"; | |
cljs.core.ChunkedCons.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/ChunkedCons") | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.ChunkedCons.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return cljs.core._nth.call(null, this.chunk, 0) | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return 1 < cljs.core._count.call(null, this.chunk) ? new cljs.core.ChunkedCons(cljs.core._drop_first.call(null, this.chunk), this.more, this.meta, null) : null == this.more ? cljs.core.List.EMPTY : this.more | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$IChunkedNext$_chunked_next$arity$1 = function(a) { | |
return null == this.more ? null : this.more | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.ChunkedCons(this.chunk, this.more, b, this.__hash) | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this.meta) | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$IChunkedSeq$_chunked_first$arity$1 = function(a) { | |
return this.chunk | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$IChunkedSeq$_chunked_rest$arity$1 = function(a) { | |
return null == this.more ? cljs.core.List.EMPTY : this.more | |
}; | |
cljs.core.__GT_ChunkedCons = function(a, b, c, d) { | |
return new cljs.core.ChunkedCons(a, b, c, d) | |
}; | |
cljs.core.chunk_cons = function(a, b) { | |
return 0 === cljs.core._count.call(null, a) ? b : new cljs.core.ChunkedCons(a, b, null, null) | |
}; | |
cljs.core.chunk_append = function(a, b) { | |
return a.add(b) | |
}; | |
cljs.core.chunk = function(a) { | |
return a.chunk() | |
}; | |
cljs.core.chunk_first = function(a) { | |
return cljs.core._chunked_first.call(null, a) | |
}; | |
cljs.core.chunk_rest = function(a) { | |
return cljs.core._chunked_rest.call(null, a) | |
}; | |
cljs.core.chunk_next = function(a) { | |
var b; | |
a ? (b = (b = a.cljs$lang$protocol_mask$partition1$ & 1024) ? b : a.cljs$core$IChunkedNext$, b = b ? !0 : !1) : b = !1; | |
return b ? cljs.core._chunked_next.call(null, a) : cljs.core.seq.call(null, cljs.core._chunked_rest.call(null, a)) | |
}; | |
cljs.core.to_array = function(a) { | |
for(var b = [];;) { | |
if(cljs.core.seq.call(null, a)) { | |
b.push(cljs.core.first.call(null, a)), a = cljs.core.next.call(null, a) | |
}else { | |
return b | |
} | |
} | |
}; | |
cljs.core.to_array_2d = function(a) { | |
var b = Array(cljs.core.count.call(null, a)), c = 0; | |
for(a = cljs.core.seq.call(null, a);;) { | |
if(a) { | |
b[c] = cljs.core.to_array.call(null, cljs.core.first.call(null, a)), c += 1, a = cljs.core.next.call(null, a) | |
}else { | |
break | |
} | |
} | |
return b | |
}; | |
cljs.core.int_array = function() { | |
var a = null, b = function(b) { | |
return"number" === typeof b ? a.call(null, b, null) : cljs.core.into_array.call(null, b) | |
}, c = function(a, b) { | |
var c = Array(a); | |
if(cljs.core.seq_QMARK_.call(null, b)) { | |
for(var g = 0, h = cljs.core.seq.call(null, b);;) { | |
if(cljs.core.truth_(function() { | |
var b = h; | |
return b ? g < a : b | |
}())) { | |
c[g] = cljs.core.first.call(null, h); | |
var k = g + 1, l = cljs.core.next.call(null, h), g = k, h = l | |
}else { | |
return c | |
} | |
} | |
}else { | |
for(k = 0;;) { | |
if(k < a) { | |
c[k] = b, k += 1 | |
}else { | |
break | |
} | |
} | |
return c | |
} | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.long_array = function() { | |
var a = null, b = function(b) { | |
return"number" === typeof b ? a.call(null, b, null) : cljs.core.into_array.call(null, b) | |
}, c = function(a, b) { | |
var c = Array(a); | |
if(cljs.core.seq_QMARK_.call(null, b)) { | |
for(var g = 0, h = cljs.core.seq.call(null, b);;) { | |
if(cljs.core.truth_(function() { | |
var b = h; | |
return b ? g < a : b | |
}())) { | |
c[g] = cljs.core.first.call(null, h); | |
var k = g + 1, l = cljs.core.next.call(null, h), g = k, h = l | |
}else { | |
return c | |
} | |
} | |
}else { | |
for(k = 0;;) { | |
if(k < a) { | |
c[k] = b, k += 1 | |
}else { | |
break | |
} | |
} | |
return c | |
} | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.double_array = function() { | |
var a = null, b = function(b) { | |
return"number" === typeof b ? a.call(null, b, null) : cljs.core.into_array.call(null, b) | |
}, c = function(a, b) { | |
var c = Array(a); | |
if(cljs.core.seq_QMARK_.call(null, b)) { | |
for(var g = 0, h = cljs.core.seq.call(null, b);;) { | |
if(cljs.core.truth_(function() { | |
var b = h; | |
return b ? g < a : b | |
}())) { | |
c[g] = cljs.core.first.call(null, h); | |
var k = g + 1, l = cljs.core.next.call(null, h), g = k, h = l | |
}else { | |
return c | |
} | |
} | |
}else { | |
for(k = 0;;) { | |
if(k < a) { | |
c[k] = b, k += 1 | |
}else { | |
break | |
} | |
} | |
return c | |
} | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.object_array = function() { | |
var a = null, b = function(b) { | |
return"number" === typeof b ? a.call(null, b, null) : cljs.core.into_array.call(null, b) | |
}, c = function(a, b) { | |
var c = Array(a); | |
if(cljs.core.seq_QMARK_.call(null, b)) { | |
for(var g = 0, h = cljs.core.seq.call(null, b);;) { | |
if(cljs.core.truth_(function() { | |
var b = h; | |
return b ? g < a : b | |
}())) { | |
c[g] = cljs.core.first.call(null, h); | |
var k = g + 1, l = cljs.core.next.call(null, h), g = k, h = l | |
}else { | |
return c | |
} | |
} | |
}else { | |
for(k = 0;;) { | |
if(k < a) { | |
c[k] = b, k += 1 | |
}else { | |
break | |
} | |
} | |
return c | |
} | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.bounded_count = function(a, b) { | |
if(cljs.core.counted_QMARK_.call(null, a)) { | |
return cljs.core.count.call(null, a) | |
} | |
for(var c = a, d = b, e = 0;;) { | |
if(cljs.core.truth_(function() { | |
var a = 0 < d; | |
return a ? cljs.core.seq.call(null, c) : a | |
}())) { | |
var f = cljs.core.next.call(null, c), g = d - 1, e = e + 1, c = f, d = g | |
}else { | |
return e | |
} | |
} | |
}; | |
cljs.core.spread = function spread(b) { | |
return null == b ? null : null == cljs.core.next.call(null, b) ? cljs.core.seq.call(null, cljs.core.first.call(null, b)) : cljs.core.cons.call(null, cljs.core.first.call(null, b), spread.call(null, cljs.core.next.call(null, b))) | |
}; | |
cljs.core.concat = function() { | |
var a = null, b = function() { | |
return new cljs.core.LazySeq(null, !1, function() { | |
return null | |
}, null) | |
}, c = function(a) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
return a | |
}, null) | |
}, d = function(b, c) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var d = cljs.core.seq.call(null, b); | |
return d ? cljs.core.chunked_seq_QMARK_.call(null, d) ? cljs.core.chunk_cons.call(null, cljs.core.chunk_first.call(null, d), a.call(null, cljs.core.chunk_rest.call(null, d), c)) : cljs.core.cons.call(null, cljs.core.first.call(null, d), a.call(null, cljs.core.rest.call(null, d), c)) : c | |
}, null) | |
}, e = function() { | |
var b = function(b, c, d) { | |
return function n(a, b) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var c = cljs.core.seq.call(null, a); | |
return c ? cljs.core.chunked_seq_QMARK_.call(null, c) ? cljs.core.chunk_cons.call(null, cljs.core.chunk_first.call(null, c), n.call(null, cljs.core.chunk_rest.call(null, c), b)) : cljs.core.cons.call(null, cljs.core.first.call(null, c), n.call(null, cljs.core.rest.call(null, c), b)) : cljs.core.truth_(b) ? n.call(null, cljs.core.first.call(null, b), cljs.core.next.call(null, b)) : null | |
}, null) | |
}.call(null, a.call(null, b, c), d) | |
}, c = function(a, c, d) { | |
var e = null; | |
2 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, e) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, d, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, g, h) { | |
switch(arguments.length) { | |
case 0: | |
return b.call(this); | |
case 1: | |
return c.call(this, a); | |
case 2: | |
return d.call(this, a, g); | |
default: | |
return e.cljs$core$IFn$_invoke$arity$variadic(a, g, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = e.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = b; | |
a.cljs$core$IFn$_invoke$arity$1 = c; | |
a.cljs$core$IFn$_invoke$arity$2 = d; | |
a.cljs$core$IFn$_invoke$arity$variadic = e.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.list_STAR_ = function() { | |
var a = null, b = function(a) { | |
return cljs.core.seq.call(null, a) | |
}, c = function(a, b) { | |
return cljs.core.cons.call(null, a, b) | |
}, d = function(a, b, c) { | |
return cljs.core.cons.call(null, a, cljs.core.cons.call(null, b, c)) | |
}, e = function(a, b, c, d) { | |
return cljs.core.cons.call(null, a, cljs.core.cons.call(null, b, cljs.core.cons.call(null, c, d))) | |
}, f = function() { | |
var a = function(a, b, c, d, e) { | |
return cljs.core.cons.call(null, a, cljs.core.cons.call(null, b, cljs.core.cons.call(null, c, cljs.core.cons.call(null, d, cljs.core.spread.call(null, e))))) | |
}, b = function(b, c, d, e, f) { | |
var h = null; | |
4 < arguments.length && (h = cljs.core.array_seq(Array.prototype.slice.call(arguments, 4), 0)); | |
return a.call(this, b, c, d, e, h) | |
}; | |
b.cljs$lang$maxFixedArity = 4; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var f = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, d, e, f, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, h, k, l, m) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, h); | |
case 3: | |
return d.call(this, a, h, k); | |
case 4: | |
return e.call(this, a, h, k, l); | |
default: | |
return f.cljs$core$IFn$_invoke$arity$variadic(a, h, k, l, cljs.core.array_seq(arguments, 4)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 4; | |
a.cljs$lang$applyTo = f.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
a.cljs$core$IFn$_invoke$arity$3 = d; | |
a.cljs$core$IFn$_invoke$arity$4 = e; | |
a.cljs$core$IFn$_invoke$arity$variadic = f.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.transient$ = function(a) { | |
return cljs.core._as_transient.call(null, a) | |
}; | |
cljs.core.persistent_BANG_ = function(a) { | |
return cljs.core._persistent_BANG_.call(null, a) | |
}; | |
cljs.core.conj_BANG_ = function(a, b) { | |
return cljs.core._conj_BANG_.call(null, a, b) | |
}; | |
cljs.core.assoc_BANG_ = function(a, b, c) { | |
return cljs.core._assoc_BANG_.call(null, a, b, c) | |
}; | |
cljs.core.dissoc_BANG_ = function(a, b) { | |
return cljs.core._dissoc_BANG_.call(null, a, b) | |
}; | |
cljs.core.pop_BANG_ = function(a) { | |
return cljs.core._pop_BANG_.call(null, a) | |
}; | |
cljs.core.disj_BANG_ = function(a, b) { | |
return cljs.core._disjoin_BANG_.call(null, a, b) | |
}; | |
cljs.core.apply_to = function(a, b, c) { | |
var d = cljs.core.seq.call(null, c); | |
if(0 === b) { | |
return a.call(null) | |
} | |
c = cljs.core._first.call(null, d); | |
var e = cljs.core._rest.call(null, d); | |
if(1 === b) { | |
return a.cljs$core$IFn$_invoke$arity$1 ? a.cljs$core$IFn$_invoke$arity$1(c) : a.call(null, c) | |
} | |
var d = cljs.core._first.call(null, e), f = cljs.core._rest.call(null, e); | |
if(2 === b) { | |
return a.cljs$core$IFn$_invoke$arity$2 ? a.cljs$core$IFn$_invoke$arity$2(c, d) : a.call(null, c, d) | |
} | |
var e = cljs.core._first.call(null, f), g = cljs.core._rest.call(null, f); | |
if(3 === b) { | |
return a.cljs$core$IFn$_invoke$arity$3 ? a.cljs$core$IFn$_invoke$arity$3(c, d, e) : a.call(null, c, d, e) | |
} | |
var f = cljs.core._first.call(null, g), h = cljs.core._rest.call(null, g); | |
if(4 === b) { | |
return a.cljs$core$IFn$_invoke$arity$4 ? a.cljs$core$IFn$_invoke$arity$4(c, d, e, f) : a.call(null, c, d, e, f) | |
} | |
g = cljs.core._first.call(null, h); | |
h = cljs.core._rest.call(null, h); | |
if(5 === b) { | |
return a.cljs$core$IFn$_invoke$arity$5 ? a.cljs$core$IFn$_invoke$arity$5(c, d, e, f, g) : a.call(null, c, d, e, f, g) | |
} | |
a = cljs.core._first.call(null, h); | |
var k = cljs.core._rest.call(null, h); | |
if(6 === b) { | |
return a.cljs$core$IFn$_invoke$arity$6 ? a.cljs$core$IFn$_invoke$arity$6(c, d, e, f, g, a) : a.call(null, c, d, e, f, g, a) | |
} | |
var h = cljs.core._first.call(null, k), l = cljs.core._rest.call(null, k); | |
if(7 === b) { | |
return a.cljs$core$IFn$_invoke$arity$7 ? a.cljs$core$IFn$_invoke$arity$7(c, d, e, f, g, a, h) : a.call(null, c, d, e, f, g, a, h) | |
} | |
var k = cljs.core._first.call(null, l), m = cljs.core._rest.call(null, l); | |
if(8 === b) { | |
return a.cljs$core$IFn$_invoke$arity$8 ? a.cljs$core$IFn$_invoke$arity$8(c, d, e, f, g, a, h, k) : a.call(null, c, d, e, f, g, a, h, k) | |
} | |
var l = cljs.core._first.call(null, m), n = cljs.core._rest.call(null, m); | |
if(9 === b) { | |
return a.cljs$core$IFn$_invoke$arity$9 ? a.cljs$core$IFn$_invoke$arity$9(c, d, e, f, g, a, h, k, l) : a.call(null, c, d, e, f, g, a, h, k, l) | |
} | |
var m = cljs.core._first.call(null, n), p = cljs.core._rest.call(null, n); | |
if(10 === b) { | |
return a.cljs$core$IFn$_invoke$arity$10 ? a.cljs$core$IFn$_invoke$arity$10(c, d, e, f, g, a, h, k, l, m) : a.call(null, c, d, e, f, g, a, h, k, l, m) | |
} | |
var n = cljs.core._first.call(null, p), q = cljs.core._rest.call(null, p); | |
if(11 === b) { | |
return a.cljs$core$IFn$_invoke$arity$11 ? a.cljs$core$IFn$_invoke$arity$11(c, d, e, f, g, a, h, k, l, m, n) : a.call(null, c, d, e, f, g, a, h, k, l, m, n) | |
} | |
var p = cljs.core._first.call(null, q), r = cljs.core._rest.call(null, q); | |
if(12 === b) { | |
return a.cljs$core$IFn$_invoke$arity$12 ? a.cljs$core$IFn$_invoke$arity$12(c, d, e, f, g, a, h, k, l, m, n, p) : a.call(null, c, d, e, f, g, a, h, k, l, m, n, p) | |
} | |
var q = cljs.core._first.call(null, r), s = cljs.core._rest.call(null, r); | |
if(13 === b) { | |
return a.cljs$core$IFn$_invoke$arity$13 ? a.cljs$core$IFn$_invoke$arity$13(c, d, e, f, g, a, h, k, l, m, n, p, q) : a.call(null, c, d, e, f, g, a, h, k, l, m, n, p, q) | |
} | |
var r = cljs.core._first.call(null, s), t = cljs.core._rest.call(null, s); | |
if(14 === b) { | |
return a.cljs$core$IFn$_invoke$arity$14 ? a.cljs$core$IFn$_invoke$arity$14(c, d, e, f, g, a, h, k, l, m, n, p, q, r) : a.call(null, c, d, e, f, g, a, h, k, l, m, n, p, q, r) | |
} | |
var s = cljs.core._first.call(null, t), v = cljs.core._rest.call(null, t); | |
if(15 === b) { | |
return a.cljs$core$IFn$_invoke$arity$15 ? a.cljs$core$IFn$_invoke$arity$15(c, d, e, f, g, a, h, k, l, m, n, p, q, r, s) : a.call(null, c, d, e, f, g, a, h, k, l, m, n, p, q, r, s) | |
} | |
var t = cljs.core._first.call(null, v), u = cljs.core._rest.call(null, v); | |
if(16 === b) { | |
return a.cljs$core$IFn$_invoke$arity$16 ? a.cljs$core$IFn$_invoke$arity$16(c, d, e, f, g, a, h, k, l, m, n, p, q, r, s, t) : a.call(null, c, d, e, f, g, a, h, k, l, m, n, p, q, r, s, t) | |
} | |
var v = cljs.core._first.call(null, u), w = cljs.core._rest.call(null, u); | |
if(17 === b) { | |
return a.cljs$core$IFn$_invoke$arity$17 ? a.cljs$core$IFn$_invoke$arity$17(c, d, e, f, g, a, h, k, l, m, n, p, q, r, s, t, v) : a.call(null, c, d, e, f, g, a, h, k, l, m, n, p, q, r, s, t, v) | |
} | |
var u = cljs.core._first.call(null, w), B = cljs.core._rest.call(null, w); | |
if(18 === b) { | |
return a.cljs$core$IFn$_invoke$arity$18 ? a.cljs$core$IFn$_invoke$arity$18(c, d, e, f, g, a, h, k, l, m, n, p, q, r, s, t, v, u) : a.call(null, c, d, e, f, g, a, h, k, l, m, n, p, q, r, s, t, v, u) | |
} | |
w = cljs.core._first.call(null, B); | |
B = cljs.core._rest.call(null, B); | |
if(19 === b) { | |
return a.cljs$core$IFn$_invoke$arity$19 ? a.cljs$core$IFn$_invoke$arity$19(c, d, e, f, g, a, h, k, l, m, n, p, q, r, s, t, v, u, w) : a.call(null, c, d, e, f, g, a, h, k, l, m, n, p, q, r, s, t, v, u, w) | |
} | |
var I = cljs.core._first.call(null, B); | |
cljs.core._rest.call(null, B); | |
if(20 === b) { | |
return a.cljs$core$IFn$_invoke$arity$20 ? a.cljs$core$IFn$_invoke$arity$20(c, d, e, f, g, a, h, k, l, m, n, p, q, r, s, t, v, u, w, I) : a.call(null, c, d, e, f, g, a, h, k, l, m, n, p, q, r, s, t, v, u, w, I) | |
} | |
throw Error("Only up to 20 arguments supported on functions"); | |
}; | |
cljs.core.apply = function() { | |
var a = null, b = function(a, b) { | |
var c = a.cljs$lang$maxFixedArity; | |
if(a.cljs$lang$applyTo) { | |
var d = cljs.core.bounded_count.call(null, b, c + 1); | |
return d <= c ? cljs.core.apply_to.call(null, a, d, b) : a.cljs$lang$applyTo(b) | |
} | |
return a.apply(a, cljs.core.to_array.call(null, b)) | |
}, c = function(a, b, c) { | |
b = cljs.core.list_STAR_.call(null, b, c); | |
c = a.cljs$lang$maxFixedArity; | |
if(a.cljs$lang$applyTo) { | |
var d = cljs.core.bounded_count.call(null, b, c + 1); | |
return d <= c ? cljs.core.apply_to.call(null, a, d, b) : a.cljs$lang$applyTo(b) | |
} | |
return a.apply(a, cljs.core.to_array.call(null, b)) | |
}, d = function(a, b, c, d) { | |
b = cljs.core.list_STAR_.call(null, b, c, d); | |
c = a.cljs$lang$maxFixedArity; | |
return a.cljs$lang$applyTo ? (d = cljs.core.bounded_count.call(null, b, c + 1), d <= c ? cljs.core.apply_to.call(null, a, d, b) : a.cljs$lang$applyTo(b)) : a.apply(a, cljs.core.to_array.call(null, b)) | |
}, e = function(a, b, c, d, e) { | |
b = cljs.core.list_STAR_.call(null, b, c, d, e); | |
c = a.cljs$lang$maxFixedArity; | |
return a.cljs$lang$applyTo ? (d = cljs.core.bounded_count.call(null, b, c + 1), d <= c ? cljs.core.apply_to.call(null, a, d, b) : a.cljs$lang$applyTo(b)) : a.apply(a, cljs.core.to_array.call(null, b)) | |
}, f = function() { | |
var a = function(a, b, c, d, e, f) { | |
b = cljs.core.cons.call(null, b, cljs.core.cons.call(null, c, cljs.core.cons.call(null, d, cljs.core.cons.call(null, e, cljs.core.spread.call(null, f))))); | |
c = a.cljs$lang$maxFixedArity; | |
return a.cljs$lang$applyTo ? (d = cljs.core.bounded_count.call(null, b, c + 1), d <= c ? cljs.core.apply_to.call(null, a, d, b) : a.cljs$lang$applyTo(b)) : a.apply(a, cljs.core.to_array.call(null, b)) | |
}, b = function(b, c, d, e, f, h) { | |
var r = null; | |
5 < arguments.length && (r = cljs.core.array_seq(Array.prototype.slice.call(arguments, 5), 0)); | |
return a.call(this, b, c, d, e, f, r) | |
}; | |
b.cljs$lang$maxFixedArity = 5; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var f = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var h = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, d, e, f, h, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, h, k, l, m, n) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, h); | |
case 3: | |
return c.call(this, a, h, k); | |
case 4: | |
return d.call(this, a, h, k, l); | |
case 5: | |
return e.call(this, a, h, k, l, m); | |
default: | |
return f.cljs$core$IFn$_invoke$arity$variadic(a, h, k, l, m, cljs.core.array_seq(arguments, 5)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 5; | |
a.cljs$lang$applyTo = f.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
a.cljs$core$IFn$_invoke$arity$4 = d; | |
a.cljs$core$IFn$_invoke$arity$5 = e; | |
a.cljs$core$IFn$_invoke$arity$variadic = f.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.vary_meta = function() { | |
var a = function(a, b, e) { | |
return cljs.core.with_meta.call(null, a, cljs.core.apply.call(null, b, cljs.core.meta.call(null, a), e)) | |
}, b = function(b, d, e) { | |
var f = null; | |
2 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, d, f) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.not_EQ_ = function() { | |
var a = null, b = function(a, b) { | |
return!cljs.core._EQ_.call(null, a, b) | |
}, c = function() { | |
var a = function(a, b, c) { | |
return cljs.core.not.call(null, cljs.core.apply.call(null, cljs.core._EQ_, a, b, c)) | |
}, b = function(b, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, c, k) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return!1; | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return!1 | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.not_empty = function(a) { | |
return cljs.core.seq.call(null, a) ? a : null | |
}; | |
cljs.core.every_QMARK_ = function(a, b) { | |
for(;;) { | |
if(null == cljs.core.seq.call(null, b)) { | |
return!0 | |
} | |
if(cljs.core.truth_(a.call(null, cljs.core.first.call(null, b)))) { | |
var c = a, d = cljs.core.next.call(null, b); | |
a = c; | |
b = d | |
}else { | |
return!1 | |
} | |
} | |
}; | |
cljs.core.not_every_QMARK_ = function(a, b) { | |
return!cljs.core.every_QMARK_.call(null, a, b) | |
}; | |
cljs.core.some = function(a, b) { | |
for(;;) { | |
if(cljs.core.seq.call(null, b)) { | |
var c = a.call(null, cljs.core.first.call(null, b)); | |
if(cljs.core.truth_(c)) { | |
return c | |
} | |
var c = a, d = cljs.core.next.call(null, b); | |
a = c; | |
b = d | |
}else { | |
return null | |
} | |
} | |
}; | |
cljs.core.not_any_QMARK_ = function(a, b) { | |
return cljs.core.not.call(null, cljs.core.some.call(null, a, b)) | |
}; | |
cljs.core.even_QMARK_ = function(a) { | |
if(cljs.core.integer_QMARK_.call(null, a)) { | |
return 0 === (a & 1) | |
} | |
throw Error([cljs.core.str("Argument must be an integer: "), cljs.core.str(a)].join("")); | |
}; | |
cljs.core.odd_QMARK_ = function(a) { | |
return!cljs.core.even_QMARK_.call(null, a) | |
}; | |
cljs.core.identity = function(a) { | |
return a | |
}; | |
cljs.core.complement = function(a) { | |
return function() { | |
var b = null, c = function() { | |
var b = function(b, c, d) { | |
return cljs.core.not.call(null, cljs.core.apply.call(null, a, b, c, d)) | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), b = function(b, e, f) { | |
switch(arguments.length) { | |
case 0: | |
return cljs.core.not.call(null, a.call(null)); | |
case 1: | |
return cljs.core.not.call(null, a.call(null, b)); | |
case 2: | |
return cljs.core.not.call(null, a.call(null, b, e)); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(b, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
return b | |
}() | |
}; | |
cljs.core.constantly = function(a) { | |
return function() { | |
var b = function(b) { | |
0 < arguments.length && cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0); | |
return a | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
cljs.core.seq(b); | |
return a | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = function(b) { | |
return a | |
}; | |
return b | |
}() | |
}; | |
cljs.core.comp = function() { | |
var a = null, b = function() { | |
return cljs.core.identity | |
}, c = function(a, b) { | |
return function() { | |
var c = null, d = function() { | |
var c = function(c, d, e, h) { | |
return a.call(null, cljs.core.apply.call(null, b, c, d, e, h)) | |
}, d = function(a, b, d, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return c.call(this, a, b, d, f) | |
}; | |
d.cljs$lang$maxFixedArity = 3; | |
d.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return c(b, d, e, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = c; | |
return d | |
}(), c = function(c, e, h, p) { | |
switch(arguments.length) { | |
case 0: | |
return a.call(null, b.call(null)); | |
case 1: | |
return a.call(null, b.call(null, c)); | |
case 2: | |
return a.call(null, b.call(null, c, e)); | |
case 3: | |
return a.call(null, b.call(null, c, e, h)); | |
default: | |
return d.cljs$core$IFn$_invoke$arity$variadic(c, e, h, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = d.cljs$lang$applyTo; | |
return c | |
}() | |
}, d = function(a, b, c) { | |
return function() { | |
var d = null, e = function() { | |
var d = function(d, e, k, l) { | |
return a.call(null, b.call(null, cljs.core.apply.call(null, c, d, e, k, l))) | |
}, e = function(a, b, c, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return d.call(this, a, b, c, f) | |
}; | |
e.cljs$lang$maxFixedArity = 3; | |
e.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return d(b, c, e, a) | |
}; | |
e.cljs$core$IFn$_invoke$arity$variadic = d; | |
return e | |
}(), d = function(d, k, p, q) { | |
switch(arguments.length) { | |
case 0: | |
return a.call(null, b.call(null, c.call(null))); | |
case 1: | |
return a.call(null, b.call(null, c.call(null, d))); | |
case 2: | |
return a.call(null, b.call(null, c.call(null, d, k))); | |
case 3: | |
return a.call(null, b.call(null, c.call(null, d, k, p))); | |
default: | |
return e.cljs$core$IFn$_invoke$arity$variadic(d, k, p, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
d.cljs$lang$maxFixedArity = 3; | |
d.cljs$lang$applyTo = e.cljs$lang$applyTo; | |
return d | |
}() | |
}, e = function() { | |
var a = function(a, b, c, d) { | |
var e = cljs.core.reverse.call(null, cljs.core.list_STAR_.call(null, a, b, c, d)); | |
return function() { | |
var a = function(a) { | |
a = cljs.core.apply.call(null, cljs.core.first.call(null, e), a); | |
for(var b = cljs.core.next.call(null, e);;) { | |
if(b) { | |
a = cljs.core.first.call(null, b).call(null, a), b = cljs.core.next.call(null, b) | |
}else { | |
return a | |
} | |
} | |
}, b = function(b) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, c) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}() | |
}, b = function(b, c, d, e) { | |
var g = null; | |
3 < arguments.length && (g = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return a.call(this, b, c, d, g) | |
}; | |
b.cljs$lang$maxFixedArity = 3; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, g, h, k) { | |
switch(arguments.length) { | |
case 0: | |
return b.call(this); | |
case 1: | |
return a; | |
case 2: | |
return c.call(this, a, g); | |
case 3: | |
return d.call(this, a, g, h); | |
default: | |
return e.cljs$core$IFn$_invoke$arity$variadic(a, g, h, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = e.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = b; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
a.cljs$core$IFn$_invoke$arity$3 = d; | |
a.cljs$core$IFn$_invoke$arity$variadic = e.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.partial = function() { | |
var a = null, b = function(a, b) { | |
return function() { | |
var c = function(c) { | |
return cljs.core.apply.call(null, a, b, c) | |
}, d = function(a) { | |
var b = null; | |
0 < arguments.length && (b = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return c.call(this, b) | |
}; | |
d.cljs$lang$maxFixedArity = 0; | |
d.cljs$lang$applyTo = function(a) { | |
a = cljs.core.seq(a); | |
return c(a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = c; | |
return d | |
}() | |
}, c = function(a, b, c) { | |
return function() { | |
var d = function(d) { | |
return cljs.core.apply.call(null, a, b, c, d) | |
}, e = function(a) { | |
var b = null; | |
0 < arguments.length && (b = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return d.call(this, b) | |
}; | |
e.cljs$lang$maxFixedArity = 0; | |
e.cljs$lang$applyTo = function(a) { | |
a = cljs.core.seq(a); | |
return d(a) | |
}; | |
e.cljs$core$IFn$_invoke$arity$variadic = d; | |
return e | |
}() | |
}, d = function(a, b, c, d) { | |
return function() { | |
var e = function(e) { | |
return cljs.core.apply.call(null, a, b, c, d, e) | |
}, m = function(a) { | |
var b = null; | |
0 < arguments.length && (b = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return e.call(this, b) | |
}; | |
m.cljs$lang$maxFixedArity = 0; | |
m.cljs$lang$applyTo = function(a) { | |
a = cljs.core.seq(a); | |
return e(a) | |
}; | |
m.cljs$core$IFn$_invoke$arity$variadic = e; | |
return m | |
}() | |
}, e = function() { | |
var a = function(a, b, c, d, e) { | |
return function() { | |
var f = function(f) { | |
return cljs.core.apply.call(null, a, b, c, d, cljs.core.concat.call(null, e, f)) | |
}, g = function(a) { | |
var b = null; | |
0 < arguments.length && (b = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return f.call(this, b) | |
}; | |
g.cljs$lang$maxFixedArity = 0; | |
g.cljs$lang$applyTo = function(a) { | |
a = cljs.core.seq(a); | |
return f(a) | |
}; | |
g.cljs$core$IFn$_invoke$arity$variadic = f; | |
return g | |
}() | |
}, b = function(b, c, d, e, g) { | |
var p = null; | |
4 < arguments.length && (p = cljs.core.array_seq(Array.prototype.slice.call(arguments, 4), 0)); | |
return a.call(this, b, c, d, e, p) | |
}; | |
b.cljs$lang$maxFixedArity = 4; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var g = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, d, e, g, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, g, h, k, l) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, g); | |
case 3: | |
return c.call(this, a, g, h); | |
case 4: | |
return d.call(this, a, g, h, k); | |
default: | |
return e.cljs$core$IFn$_invoke$arity$variadic(a, g, h, k, cljs.core.array_seq(arguments, 4)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 4; | |
a.cljs$lang$applyTo = e.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
a.cljs$core$IFn$_invoke$arity$4 = d; | |
a.cljs$core$IFn$_invoke$arity$variadic = e.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.fnil = function() { | |
var a = null, b = function(a, b) { | |
return function() { | |
var c = null, d = function() { | |
var c = function(c, d, g, h) { | |
return cljs.core.apply.call(null, a, null == c ? b : c, d, g, h) | |
}, d = function(a, b, d, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return c.call(this, a, b, d, f) | |
}; | |
d.cljs$lang$maxFixedArity = 3; | |
d.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return c(b, d, e, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = c; | |
return d | |
}(), c = function(c, g, m, n) { | |
switch(arguments.length) { | |
case 1: | |
return a.call(null, null == c ? b : c); | |
case 2: | |
return a.call(null, null == c ? b : c, g); | |
case 3: | |
return a.call(null, null == c ? b : c, g, m); | |
default: | |
return d.cljs$core$IFn$_invoke$arity$variadic(c, g, m, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = d.cljs$lang$applyTo; | |
return c | |
}() | |
}, c = function(a, b, c) { | |
return function() { | |
var d = null, k = function() { | |
var d = function(d, h, k, l) { | |
return cljs.core.apply.call(null, a, null == d ? b : d, null == h ? c : h, k, l) | |
}, h = function(a, b, c, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return d.call(this, a, b, c, f) | |
}; | |
h.cljs$lang$maxFixedArity = 3; | |
h.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return d(b, c, e, a) | |
}; | |
h.cljs$core$IFn$_invoke$arity$variadic = d; | |
return h | |
}(), d = function(d, h, n, p) { | |
switch(arguments.length) { | |
case 2: | |
return a.call(null, null == d ? b : d, null == h ? c : h); | |
case 3: | |
return a.call(null, null == d ? b : d, null == h ? c : h, n); | |
default: | |
return k.cljs$core$IFn$_invoke$arity$variadic(d, h, n, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
d.cljs$lang$maxFixedArity = 3; | |
d.cljs$lang$applyTo = k.cljs$lang$applyTo; | |
return d | |
}() | |
}, d = function(a, b, c, d) { | |
return function() { | |
var k = null, l = function() { | |
var k = function(k, l, m, n) { | |
return cljs.core.apply.call(null, a, null == k ? b : k, null == l ? c : l, null == m ? d : m, n) | |
}, l = function(a, b, c, d) { | |
var e = null; | |
3 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return k.call(this, a, b, c, e) | |
}; | |
l.cljs$lang$maxFixedArity = 3; | |
l.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return k(b, c, d, a) | |
}; | |
l.cljs$core$IFn$_invoke$arity$variadic = k; | |
return l | |
}(), k = function(k, n, p, q) { | |
switch(arguments.length) { | |
case 2: | |
return a.call(null, null == k ? b : k, null == n ? c : n); | |
case 3: | |
return a.call(null, null == k ? b : k, null == n ? c : n, null == p ? d : p); | |
default: | |
return l.cljs$core$IFn$_invoke$arity$variadic(k, n, p, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
k.cljs$lang$maxFixedArity = 3; | |
k.cljs$lang$applyTo = l.cljs$lang$applyTo; | |
return k | |
}() | |
}, a = function(a, f, g, h) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, f); | |
case 3: | |
return c.call(this, a, f, g); | |
case 4: | |
return d.call(this, a, f, g, h) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
a.cljs$core$IFn$_invoke$arity$4 = d; | |
return a | |
}(); | |
cljs.core.map_indexed = function(a, b) { | |
return function d(b, f) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var g = cljs.core.seq.call(null, f); | |
if(g) { | |
if(cljs.core.chunked_seq_QMARK_.call(null, g)) { | |
for(var h = cljs.core.chunk_first.call(null, g), k = cljs.core.count.call(null, h), l = cljs.core.chunk_buffer.call(null, k), m = 0;;) { | |
if(m < k) { | |
cljs.core.chunk_append.call(null, l, a.call(null, b + m, cljs.core._nth.call(null, h, m))), m += 1 | |
}else { | |
break | |
} | |
} | |
return cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, l), d.call(null, b + k, cljs.core.chunk_rest.call(null, g))) | |
} | |
return cljs.core.cons.call(null, a.call(null, b, cljs.core.first.call(null, g)), d.call(null, b + 1, cljs.core.rest.call(null, g))) | |
} | |
return null | |
}, null) | |
}.call(null, 0, b) | |
}; | |
cljs.core.keep = function keep(b, c) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var d = cljs.core.seq.call(null, c); | |
if(d) { | |
if(cljs.core.chunked_seq_QMARK_.call(null, d)) { | |
for(var e = cljs.core.chunk_first.call(null, d), f = cljs.core.count.call(null, e), g = cljs.core.chunk_buffer.call(null, f), h = 0;;) { | |
if(h < f) { | |
var k = b.call(null, cljs.core._nth.call(null, e, h)); | |
null != k && cljs.core.chunk_append.call(null, g, k); | |
h += 1 | |
}else { | |
break | |
} | |
} | |
return cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, g), keep.call(null, b, cljs.core.chunk_rest.call(null, d))) | |
} | |
e = b.call(null, cljs.core.first.call(null, d)); | |
return null == e ? keep.call(null, b, cljs.core.rest.call(null, d)) : cljs.core.cons.call(null, e, keep.call(null, b, cljs.core.rest.call(null, d))) | |
} | |
return null | |
}, null) | |
}; | |
cljs.core.keep_indexed = function(a, b) { | |
return function d(b, f) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var g = cljs.core.seq.call(null, f); | |
if(g) { | |
if(cljs.core.chunked_seq_QMARK_.call(null, g)) { | |
for(var h = cljs.core.chunk_first.call(null, g), k = cljs.core.count.call(null, h), l = cljs.core.chunk_buffer.call(null, k), m = 0;;) { | |
if(m < k) { | |
var n = a.call(null, b + m, cljs.core._nth.call(null, h, m)); | |
null != n && cljs.core.chunk_append.call(null, l, n); | |
m += 1 | |
}else { | |
break | |
} | |
} | |
return cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, l), d.call(null, b + k, cljs.core.chunk_rest.call(null, g))) | |
} | |
h = a.call(null, b, cljs.core.first.call(null, g)); | |
return null == h ? d.call(null, b + 1, cljs.core.rest.call(null, g)) : cljs.core.cons.call(null, h, d.call(null, b + 1, cljs.core.rest.call(null, g))) | |
} | |
return null | |
}, null) | |
}.call(null, 0, b) | |
}; | |
cljs.core.every_pred = function() { | |
var a = null, b = function(a) { | |
return function() { | |
var b = null, c = function(b) { | |
return cljs.core.boolean$.call(null, a.call(null, b)) | |
}, d = function(b, c) { | |
return cljs.core.boolean$.call(null, function() { | |
var d = a.call(null, b); | |
return cljs.core.truth_(d) ? a.call(null, c) : d | |
}()) | |
}, e = function(b, c, d) { | |
return cljs.core.boolean$.call(null, function() { | |
var e = a.call(null, b); | |
return cljs.core.truth_(e) ? (e = a.call(null, c), cljs.core.truth_(e) ? a.call(null, d) : e) : e | |
}()) | |
}, m = function() { | |
var c = function(c, d, e, h) { | |
return cljs.core.boolean$.call(null, function() { | |
var k = b.call(null, c, d, e); | |
return cljs.core.truth_(k) ? cljs.core.every_QMARK_.call(null, a, h) : k | |
}()) | |
}, d = function(a, b, d, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return c.call(this, a, b, d, f) | |
}; | |
d.cljs$lang$maxFixedArity = 3; | |
d.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return c(b, d, e, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = c; | |
return d | |
}(), b = function(a, b, f, g) { | |
switch(arguments.length) { | |
case 0: | |
return!0; | |
case 1: | |
return c.call(this, a); | |
case 2: | |
return d.call(this, a, b); | |
case 3: | |
return e.call(this, a, b, f); | |
default: | |
return m.cljs$core$IFn$_invoke$arity$variadic(a, b, f, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
b.cljs$lang$maxFixedArity = 3; | |
b.cljs$lang$applyTo = m.cljs$lang$applyTo; | |
b.cljs$core$IFn$_invoke$arity$0 = function() { | |
return!0 | |
}; | |
b.cljs$core$IFn$_invoke$arity$1 = c; | |
b.cljs$core$IFn$_invoke$arity$2 = d; | |
b.cljs$core$IFn$_invoke$arity$3 = e; | |
b.cljs$core$IFn$_invoke$arity$variadic = m.cljs$core$IFn$_invoke$arity$variadic; | |
return b | |
}() | |
}, c = function(a, b) { | |
return function() { | |
var c = null, d = function(c) { | |
return cljs.core.boolean$.call(null, function() { | |
var d = a.call(null, c); | |
return cljs.core.truth_(d) ? b.call(null, c) : d | |
}()) | |
}, e = function(c, d) { | |
return cljs.core.boolean$.call(null, function() { | |
var e = a.call(null, c); | |
return cljs.core.truth_(e) && (e = a.call(null, d), cljs.core.truth_(e)) ? (e = b.call(null, c), cljs.core.truth_(e) ? b.call(null, d) : e) : e | |
}()) | |
}, m = function(c, d, e) { | |
return cljs.core.boolean$.call(null, function() { | |
var h = a.call(null, c); | |
return cljs.core.truth_(h) && (h = a.call(null, d), cljs.core.truth_(h) && (h = a.call(null, e), cljs.core.truth_(h) && (h = b.call(null, c), cljs.core.truth_(h)))) ? (h = b.call(null, d), cljs.core.truth_(h) ? b.call(null, e) : h) : h | |
}()) | |
}, n = function() { | |
var d = function(d, e, k, l) { | |
return cljs.core.boolean$.call(null, function() { | |
var m = c.call(null, d, e, k); | |
return cljs.core.truth_(m) ? cljs.core.every_QMARK_.call(null, function(c) { | |
var d = a.call(null, c); | |
return cljs.core.truth_(d) ? b.call(null, c) : d | |
}, l) : m | |
}()) | |
}, e = function(a, b, c, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return d.call(this, a, b, c, f) | |
}; | |
e.cljs$lang$maxFixedArity = 3; | |
e.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return d(b, c, e, a) | |
}; | |
e.cljs$core$IFn$_invoke$arity$variadic = d; | |
return e | |
}(), c = function(a, b, c, f) { | |
switch(arguments.length) { | |
case 0: | |
return!0; | |
case 1: | |
return d.call(this, a); | |
case 2: | |
return e.call(this, a, b); | |
case 3: | |
return m.call(this, a, b, c); | |
default: | |
return n.cljs$core$IFn$_invoke$arity$variadic(a, b, c, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = n.cljs$lang$applyTo; | |
c.cljs$core$IFn$_invoke$arity$0 = function() { | |
return!0 | |
}; | |
c.cljs$core$IFn$_invoke$arity$1 = d; | |
c.cljs$core$IFn$_invoke$arity$2 = e; | |
c.cljs$core$IFn$_invoke$arity$3 = m; | |
c.cljs$core$IFn$_invoke$arity$variadic = n.cljs$core$IFn$_invoke$arity$variadic; | |
return c | |
}() | |
}, d = function(a, b, c) { | |
return function() { | |
var d = null, e = function(d) { | |
return cljs.core.boolean$.call(null, function() { | |
var e = a.call(null, d); | |
return cljs.core.truth_(e) ? (e = b.call(null, d), cljs.core.truth_(e) ? c.call(null, d) : e) : e | |
}()) | |
}, m = function(d, e) { | |
return cljs.core.boolean$.call(null, function() { | |
var k = a.call(null, d); | |
return cljs.core.truth_(k) && (k = b.call(null, d), cljs.core.truth_(k) && (k = c.call(null, d), cljs.core.truth_(k) && (k = a.call(null, e), cljs.core.truth_(k)))) ? (k = b.call(null, e), cljs.core.truth_(k) ? c.call(null, e) : k) : k | |
}()) | |
}, n = function(d, e, k) { | |
return cljs.core.boolean$.call(null, function() { | |
var l = a.call(null, d); | |
return cljs.core.truth_(l) && (l = b.call(null, d), cljs.core.truth_(l) && (l = c.call(null, d), cljs.core.truth_(l) && (l = a.call(null, e), cljs.core.truth_(l) && (l = b.call(null, e), cljs.core.truth_(l) && (l = c.call(null, e), cljs.core.truth_(l) && (l = a.call(null, k), cljs.core.truth_(l))))))) ? (l = b.call(null, k), cljs.core.truth_(l) ? c.call(null, k) : l) : l | |
}()) | |
}, p = function() { | |
var e = function(e, l, m, n) { | |
return cljs.core.boolean$.call(null, function() { | |
var p = d.call(null, e, l, m); | |
return cljs.core.truth_(p) ? cljs.core.every_QMARK_.call(null, function(d) { | |
var e = a.call(null, d); | |
return cljs.core.truth_(e) ? (e = b.call(null, d), cljs.core.truth_(e) ? c.call(null, d) : e) : e | |
}, n) : p | |
}()) | |
}, l = function(a, b, c, d) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return e.call(this, a, b, c, f) | |
}; | |
l.cljs$lang$maxFixedArity = 3; | |
l.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return e(b, c, d, a) | |
}; | |
l.cljs$core$IFn$_invoke$arity$variadic = e; | |
return l | |
}(), d = function(a, b, c, d) { | |
switch(arguments.length) { | |
case 0: | |
return!0; | |
case 1: | |
return e.call(this, a); | |
case 2: | |
return m.call(this, a, b); | |
case 3: | |
return n.call(this, a, b, c); | |
default: | |
return p.cljs$core$IFn$_invoke$arity$variadic(a, b, c, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
d.cljs$lang$maxFixedArity = 3; | |
d.cljs$lang$applyTo = p.cljs$lang$applyTo; | |
d.cljs$core$IFn$_invoke$arity$0 = function() { | |
return!0 | |
}; | |
d.cljs$core$IFn$_invoke$arity$1 = e; | |
d.cljs$core$IFn$_invoke$arity$2 = m; | |
d.cljs$core$IFn$_invoke$arity$3 = n; | |
d.cljs$core$IFn$_invoke$arity$variadic = p.cljs$core$IFn$_invoke$arity$variadic; | |
return d | |
}() | |
}, e = function() { | |
var a = function(a, b, c, d) { | |
var e = cljs.core.list_STAR_.call(null, a, b, c, d); | |
return function() { | |
var a = null, b = function(a) { | |
return cljs.core.every_QMARK_.call(null, function(b) { | |
return b.call(null, a) | |
}, e) | |
}, c = function(a, b) { | |
return cljs.core.every_QMARK_.call(null, function(c) { | |
var d = c.call(null, a); | |
return cljs.core.truth_(d) ? c.call(null, b) : d | |
}, e) | |
}, d = function(a, b, c) { | |
return cljs.core.every_QMARK_.call(null, function(d) { | |
var e = d.call(null, a); | |
return cljs.core.truth_(e) ? (e = d.call(null, b), cljs.core.truth_(e) ? d.call(null, c) : e) : e | |
}, e) | |
}, f = function() { | |
var b = function(b, c, d, f) { | |
return cljs.core.boolean$.call(null, function() { | |
var g = a.call(null, b, c, d); | |
return cljs.core.truth_(g) ? cljs.core.every_QMARK_.call(null, function(a) { | |
return cljs.core.every_QMARK_.call(null, a, f) | |
}, e) : g | |
}()) | |
}, c = function(a, c, d, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return b.call(this, a, c, d, f) | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, d, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, g, h) { | |
switch(arguments.length) { | |
case 0: | |
return!0; | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e); | |
case 3: | |
return d.call(this, a, e, g); | |
default: | |
return f.cljs$core$IFn$_invoke$arity$variadic(a, e, g, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = f.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = function() { | |
return!0 | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
a.cljs$core$IFn$_invoke$arity$3 = d; | |
a.cljs$core$IFn$_invoke$arity$variadic = f.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}() | |
}, b = function(b, c, d, e) { | |
var g = null; | |
3 < arguments.length && (g = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return a.call(this, b, c, d, g) | |
}; | |
b.cljs$lang$maxFixedArity = 3; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, g, h, k) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, g); | |
case 3: | |
return d.call(this, a, g, h); | |
default: | |
return e.cljs$core$IFn$_invoke$arity$variadic(a, g, h, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = e.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
a.cljs$core$IFn$_invoke$arity$3 = d; | |
a.cljs$core$IFn$_invoke$arity$variadic = e.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.some_fn = function() { | |
var a = null, b = function(a) { | |
return function() { | |
var b = null, c = function(b) { | |
return a.call(null, b) | |
}, d = function(b, c) { | |
var d = a.call(null, b); | |
return cljs.core.truth_(d) ? d : a.call(null, c) | |
}, e = function(b, c, d) { | |
b = a.call(null, b); | |
if(cljs.core.truth_(b)) { | |
return b | |
} | |
c = a.call(null, c); | |
return cljs.core.truth_(c) ? c : a.call(null, d) | |
}, m = function() { | |
var c = function(c, d, e, h) { | |
c = b.call(null, c, d, e); | |
return cljs.core.truth_(c) ? c : cljs.core.some.call(null, a, h) | |
}, d = function(a, b, d, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return c.call(this, a, b, d, f) | |
}; | |
d.cljs$lang$maxFixedArity = 3; | |
d.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return c(b, d, e, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = c; | |
return d | |
}(), b = function(a, b, f, g) { | |
switch(arguments.length) { | |
case 0: | |
return null; | |
case 1: | |
return c.call(this, a); | |
case 2: | |
return d.call(this, a, b); | |
case 3: | |
return e.call(this, a, b, f); | |
default: | |
return m.cljs$core$IFn$_invoke$arity$variadic(a, b, f, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
b.cljs$lang$maxFixedArity = 3; | |
b.cljs$lang$applyTo = m.cljs$lang$applyTo; | |
b.cljs$core$IFn$_invoke$arity$0 = function() { | |
return null | |
}; | |
b.cljs$core$IFn$_invoke$arity$1 = c; | |
b.cljs$core$IFn$_invoke$arity$2 = d; | |
b.cljs$core$IFn$_invoke$arity$3 = e; | |
b.cljs$core$IFn$_invoke$arity$variadic = m.cljs$core$IFn$_invoke$arity$variadic; | |
return b | |
}() | |
}, c = function(a, b) { | |
return function() { | |
var c = null, d = function(c) { | |
var d = a.call(null, c); | |
return cljs.core.truth_(d) ? d : b.call(null, c) | |
}, e = function(c, d) { | |
var e = a.call(null, c); | |
if(cljs.core.truth_(e)) { | |
return e | |
} | |
e = a.call(null, d); | |
if(cljs.core.truth_(e)) { | |
return e | |
} | |
e = b.call(null, c); | |
return cljs.core.truth_(e) ? e : b.call(null, d) | |
}, m = function(c, d, e) { | |
var h = a.call(null, c); | |
if(cljs.core.truth_(h)) { | |
return h | |
} | |
h = a.call(null, d); | |
if(cljs.core.truth_(h)) { | |
return h | |
} | |
h = a.call(null, e); | |
if(cljs.core.truth_(h)) { | |
return h | |
} | |
c = b.call(null, c); | |
if(cljs.core.truth_(c)) { | |
return c | |
} | |
d = b.call(null, d); | |
return cljs.core.truth_(d) ? d : b.call(null, e) | |
}, n = function() { | |
var d = function(d, e, k, l) { | |
d = c.call(null, d, e, k); | |
return cljs.core.truth_(d) ? d : cljs.core.some.call(null, function(c) { | |
var d = a.call(null, c); | |
return cljs.core.truth_(d) ? d : b.call(null, c) | |
}, l) | |
}, e = function(a, b, c, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return d.call(this, a, b, c, f) | |
}; | |
e.cljs$lang$maxFixedArity = 3; | |
e.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return d(b, c, e, a) | |
}; | |
e.cljs$core$IFn$_invoke$arity$variadic = d; | |
return e | |
}(), c = function(a, b, c, f) { | |
switch(arguments.length) { | |
case 0: | |
return null; | |
case 1: | |
return d.call(this, a); | |
case 2: | |
return e.call(this, a, b); | |
case 3: | |
return m.call(this, a, b, c); | |
default: | |
return n.cljs$core$IFn$_invoke$arity$variadic(a, b, c, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = n.cljs$lang$applyTo; | |
c.cljs$core$IFn$_invoke$arity$0 = function() { | |
return null | |
}; | |
c.cljs$core$IFn$_invoke$arity$1 = d; | |
c.cljs$core$IFn$_invoke$arity$2 = e; | |
c.cljs$core$IFn$_invoke$arity$3 = m; | |
c.cljs$core$IFn$_invoke$arity$variadic = n.cljs$core$IFn$_invoke$arity$variadic; | |
return c | |
}() | |
}, d = function(a, b, c) { | |
return function() { | |
var d = null, e = function(d) { | |
var e = a.call(null, d); | |
if(cljs.core.truth_(e)) { | |
return e | |
} | |
e = b.call(null, d); | |
return cljs.core.truth_(e) ? e : c.call(null, d) | |
}, m = function(d, e) { | |
var k = a.call(null, d); | |
if(cljs.core.truth_(k)) { | |
return k | |
} | |
k = b.call(null, d); | |
if(cljs.core.truth_(k)) { | |
return k | |
} | |
k = c.call(null, d); | |
if(cljs.core.truth_(k)) { | |
return k | |
} | |
k = a.call(null, e); | |
if(cljs.core.truth_(k)) { | |
return k | |
} | |
k = b.call(null, e); | |
return cljs.core.truth_(k) ? k : c.call(null, e) | |
}, n = function(d, e, k) { | |
var l = a.call(null, d); | |
if(cljs.core.truth_(l)) { | |
return l | |
} | |
l = b.call(null, d); | |
if(cljs.core.truth_(l)) { | |
return l | |
} | |
d = c.call(null, d); | |
if(cljs.core.truth_(d)) { | |
return d | |
} | |
d = a.call(null, e); | |
if(cljs.core.truth_(d)) { | |
return d | |
} | |
d = b.call(null, e); | |
if(cljs.core.truth_(d)) { | |
return d | |
} | |
e = c.call(null, e); | |
if(cljs.core.truth_(e)) { | |
return e | |
} | |
e = a.call(null, k); | |
if(cljs.core.truth_(e)) { | |
return e | |
} | |
e = b.call(null, k); | |
return cljs.core.truth_(e) ? e : c.call(null, k) | |
}, p = function() { | |
var e = function(e, l, m, n) { | |
e = d.call(null, e, l, m); | |
return cljs.core.truth_(e) ? e : cljs.core.some.call(null, function(d) { | |
var e = a.call(null, d); | |
if(cljs.core.truth_(e)) { | |
return e | |
} | |
e = b.call(null, d); | |
return cljs.core.truth_(e) ? e : c.call(null, d) | |
}, n) | |
}, l = function(a, b, c, d) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return e.call(this, a, b, c, f) | |
}; | |
l.cljs$lang$maxFixedArity = 3; | |
l.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return e(b, c, d, a) | |
}; | |
l.cljs$core$IFn$_invoke$arity$variadic = e; | |
return l | |
}(), d = function(a, b, c, d) { | |
switch(arguments.length) { | |
case 0: | |
return null; | |
case 1: | |
return e.call(this, a); | |
case 2: | |
return m.call(this, a, b); | |
case 3: | |
return n.call(this, a, b, c); | |
default: | |
return p.cljs$core$IFn$_invoke$arity$variadic(a, b, c, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
d.cljs$lang$maxFixedArity = 3; | |
d.cljs$lang$applyTo = p.cljs$lang$applyTo; | |
d.cljs$core$IFn$_invoke$arity$0 = function() { | |
return null | |
}; | |
d.cljs$core$IFn$_invoke$arity$1 = e; | |
d.cljs$core$IFn$_invoke$arity$2 = m; | |
d.cljs$core$IFn$_invoke$arity$3 = n; | |
d.cljs$core$IFn$_invoke$arity$variadic = p.cljs$core$IFn$_invoke$arity$variadic; | |
return d | |
}() | |
}, e = function() { | |
var a = function(a, b, c, d) { | |
var e = cljs.core.list_STAR_.call(null, a, b, c, d); | |
return function() { | |
var a = null, b = function(a) { | |
return cljs.core.some.call(null, function(b) { | |
return b.call(null, a) | |
}, e) | |
}, c = function(a, b) { | |
return cljs.core.some.call(null, function(c) { | |
var d = c.call(null, a); | |
return cljs.core.truth_(d) ? d : c.call(null, b) | |
}, e) | |
}, d = function(a, b, c) { | |
return cljs.core.some.call(null, function(d) { | |
var e = d.call(null, a); | |
if(cljs.core.truth_(e)) { | |
return e | |
} | |
e = d.call(null, b); | |
return cljs.core.truth_(e) ? e : d.call(null, c) | |
}, e) | |
}, f = function() { | |
var b = function(b, c, d, f) { | |
b = a.call(null, b, c, d); | |
return cljs.core.truth_(b) ? b : cljs.core.some.call(null, function(a) { | |
return cljs.core.some.call(null, a, f) | |
}, e) | |
}, c = function(a, c, d, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return b.call(this, a, c, d, f) | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, d, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, g, h) { | |
switch(arguments.length) { | |
case 0: | |
return null; | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e); | |
case 3: | |
return d.call(this, a, e, g); | |
default: | |
return f.cljs$core$IFn$_invoke$arity$variadic(a, e, g, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = f.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = function() { | |
return null | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
a.cljs$core$IFn$_invoke$arity$3 = d; | |
a.cljs$core$IFn$_invoke$arity$variadic = f.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}() | |
}, b = function(b, c, d, e) { | |
var g = null; | |
3 < arguments.length && (g = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return a.call(this, b, c, d, g) | |
}; | |
b.cljs$lang$maxFixedArity = 3; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, g, h, k) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, g); | |
case 3: | |
return d.call(this, a, g, h); | |
default: | |
return e.cljs$core$IFn$_invoke$arity$variadic(a, g, h, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = e.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
a.cljs$core$IFn$_invoke$arity$3 = d; | |
a.cljs$core$IFn$_invoke$arity$variadic = e.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.map = function() { | |
var a = null, b = function(b, c) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var d = cljs.core.seq.call(null, c); | |
if(d) { | |
if(cljs.core.chunked_seq_QMARK_.call(null, d)) { | |
for(var e = cljs.core.chunk_first.call(null, d), l = cljs.core.count.call(null, e), m = cljs.core.chunk_buffer.call(null, l), n = 0;;) { | |
if(n < l) { | |
cljs.core.chunk_append.call(null, m, b.call(null, cljs.core._nth.call(null, e, n))), n += 1 | |
}else { | |
break | |
} | |
} | |
return cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, m), a.call(null, b, cljs.core.chunk_rest.call(null, d))) | |
} | |
return cljs.core.cons.call(null, b.call(null, cljs.core.first.call(null, d)), a.call(null, b, cljs.core.rest.call(null, d))) | |
} | |
return null | |
}, null) | |
}, c = function(b, c, d) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var e = cljs.core.seq.call(null, c), l = cljs.core.seq.call(null, d); | |
return(e ? l : e) ? cljs.core.cons.call(null, b.call(null, cljs.core.first.call(null, e), cljs.core.first.call(null, l)), a.call(null, b, cljs.core.rest.call(null, e), cljs.core.rest.call(null, l))) : null | |
}, null) | |
}, d = function(b, c, d, e) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var l = cljs.core.seq.call(null, c), m = cljs.core.seq.call(null, d), n = cljs.core.seq.call(null, e); | |
return(l ? m ? n : m : l) ? cljs.core.cons.call(null, b.call(null, cljs.core.first.call(null, l), cljs.core.first.call(null, m), cljs.core.first.call(null, n)), a.call(null, b, cljs.core.rest.call(null, l), cljs.core.rest.call(null, m), cljs.core.rest.call(null, n))) : null | |
}, null) | |
}, e = function() { | |
var b = function(b, c, d, e, f) { | |
return a.call(null, function(a) { | |
return cljs.core.apply.call(null, b, a) | |
}, function q(b) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var c = a.call(null, cljs.core.seq, b); | |
return cljs.core.every_QMARK_.call(null, cljs.core.identity, c) ? cljs.core.cons.call(null, a.call(null, cljs.core.first, c), q.call(null, a.call(null, cljs.core.rest, c))) : null | |
}, null) | |
}.call(null, cljs.core.conj.call(null, f, e, d, c))) | |
}, c = function(a, c, d, e, g) { | |
var p = null; | |
4 < arguments.length && (p = cljs.core.array_seq(Array.prototype.slice.call(arguments, 4), 0)); | |
return b.call(this, a, c, d, e, p) | |
}; | |
c.cljs$lang$maxFixedArity = 4; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var g = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, d, e, g, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, g, h, k, l) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, g); | |
case 3: | |
return c.call(this, a, g, h); | |
case 4: | |
return d.call(this, a, g, h, k); | |
default: | |
return e.cljs$core$IFn$_invoke$arity$variadic(a, g, h, k, cljs.core.array_seq(arguments, 4)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 4; | |
a.cljs$lang$applyTo = e.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
a.cljs$core$IFn$_invoke$arity$4 = d; | |
a.cljs$core$IFn$_invoke$arity$variadic = e.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.take = function take(b, c) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
if(0 < b) { | |
var d = cljs.core.seq.call(null, c); | |
return d ? cljs.core.cons.call(null, cljs.core.first.call(null, d), take.call(null, b - 1, cljs.core.rest.call(null, d))) : null | |
} | |
return null | |
}, null) | |
}; | |
cljs.core.drop = function(a, b) { | |
var c = function(a, b) { | |
for(;;) { | |
var c = cljs.core.seq.call(null, b); | |
if(cljs.core.truth_(function() { | |
var b = 0 < a; | |
return b ? c : b | |
}())) { | |
var g = a - 1, h = cljs.core.rest.call(null, c); | |
a = g; | |
b = h | |
}else { | |
return c | |
} | |
} | |
}; | |
return new cljs.core.LazySeq(null, !1, function() { | |
return c.call(null, a, b) | |
}, null) | |
}; | |
cljs.core.drop_last = function() { | |
var a = null, b = function(b) { | |
return a.call(null, 1, b) | |
}, c = function(a, b) { | |
return cljs.core.map.call(null, function(a, b) { | |
return a | |
}, b, cljs.core.drop.call(null, a, b)) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.take_last = function(a, b) { | |
for(var c = cljs.core.seq.call(null, b), d = cljs.core.seq.call(null, cljs.core.drop.call(null, a, b));;) { | |
if(d) { | |
c = cljs.core.next.call(null, c), d = cljs.core.next.call(null, d) | |
}else { | |
return c | |
} | |
} | |
}; | |
cljs.core.drop_while = function(a, b) { | |
var c = function(a, b) { | |
for(;;) { | |
var c = cljs.core.seq.call(null, b); | |
if(cljs.core.truth_(function() { | |
var b = c; | |
return b ? a.call(null, cljs.core.first.call(null, c)) : b | |
}())) { | |
var g = a, h = cljs.core.rest.call(null, c); | |
a = g; | |
b = h | |
}else { | |
return c | |
} | |
} | |
}; | |
return new cljs.core.LazySeq(null, !1, function() { | |
return c.call(null, a, b) | |
}, null) | |
}; | |
cljs.core.cycle = function cycle(b) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var c = cljs.core.seq.call(null, b); | |
return c ? cljs.core.concat.call(null, c, cycle.call(null, c)) : null | |
}, null) | |
}; | |
cljs.core.split_at = function(a, b) { | |
return cljs.core.PersistentVector.fromArray([cljs.core.take.call(null, a, b), cljs.core.drop.call(null, a, b)], !0) | |
}; | |
cljs.core.repeat = function() { | |
var a = null, b = function(b) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
return cljs.core.cons.call(null, b, a.call(null, b)) | |
}, null) | |
}, c = function(b, c) { | |
return cljs.core.take.call(null, b, a.call(null, c)) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.replicate = function(a, b) { | |
return cljs.core.take.call(null, a, cljs.core.repeat.call(null, b)) | |
}; | |
cljs.core.repeatedly = function() { | |
var a = null, b = function(b) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
return cljs.core.cons.call(null, b.call(null), a.call(null, b)) | |
}, null) | |
}, c = function(b, c) { | |
return cljs.core.take.call(null, b, a.call(null, c)) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.iterate = function iterate(b, c) { | |
return cljs.core.cons.call(null, c, new cljs.core.LazySeq(null, !1, function() { | |
return iterate.call(null, b, b.call(null, c)) | |
}, null)) | |
}; | |
cljs.core.interleave = function() { | |
var a = null, b = function(b, c) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var f = cljs.core.seq.call(null, b), g = cljs.core.seq.call(null, c); | |
return(f ? g : f) ? cljs.core.cons.call(null, cljs.core.first.call(null, f), cljs.core.cons.call(null, cljs.core.first.call(null, g), a.call(null, cljs.core.rest.call(null, f), cljs.core.rest.call(null, g)))) : null | |
}, null) | |
}, c = function() { | |
var b = function(b, c, d) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var e = cljs.core.map.call(null, cljs.core.seq, cljs.core.conj.call(null, d, c, b)); | |
return cljs.core.every_QMARK_.call(null, cljs.core.identity, e) ? cljs.core.concat.call(null, cljs.core.map.call(null, cljs.core.first, e), cljs.core.apply.call(null, a, cljs.core.map.call(null, cljs.core.rest, e))) : null | |
}, null) | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.interpose = function(a, b) { | |
return cljs.core.drop.call(null, 1, cljs.core.interleave.call(null, cljs.core.repeat.call(null, a), b)) | |
}; | |
cljs.core.flatten1 = function(a) { | |
return function c(a, e) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var f = cljs.core.seq.call(null, a); | |
return f ? cljs.core.cons.call(null, cljs.core.first.call(null, f), c.call(null, cljs.core.rest.call(null, f), e)) : cljs.core.seq.call(null, e) ? c.call(null, cljs.core.first.call(null, e), cljs.core.rest.call(null, e)) : null | |
}, null) | |
}.call(null, null, a) | |
}; | |
cljs.core.mapcat = function() { | |
var a = null, b = function(a, b) { | |
return cljs.core.flatten1.call(null, cljs.core.map.call(null, a, b)) | |
}, c = function() { | |
var a = function(a, b, c) { | |
return cljs.core.flatten1.call(null, cljs.core.apply.call(null, cljs.core.map, a, b, c)) | |
}, b = function(b, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, c, k) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.filter = function filter(b, c) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var d = cljs.core.seq.call(null, c); | |
if(d) { | |
if(cljs.core.chunked_seq_QMARK_.call(null, d)) { | |
for(var e = cljs.core.chunk_first.call(null, d), f = cljs.core.count.call(null, e), g = cljs.core.chunk_buffer.call(null, f), h = 0;;) { | |
if(h < f) { | |
cljs.core.truth_(b.call(null, cljs.core._nth.call(null, e, h))) && cljs.core.chunk_append.call(null, g, cljs.core._nth.call(null, e, h)), h += 1 | |
}else { | |
break | |
} | |
} | |
return cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, g), filter.call(null, b, cljs.core.chunk_rest.call(null, d))) | |
} | |
e = cljs.core.first.call(null, d); | |
d = cljs.core.rest.call(null, d); | |
return cljs.core.truth_(b.call(null, e)) ? cljs.core.cons.call(null, e, filter.call(null, b, d)) : filter.call(null, b, d) | |
} | |
return null | |
}, null) | |
}; | |
cljs.core.remove = function(a, b) { | |
return cljs.core.filter.call(null, cljs.core.complement.call(null, a), b) | |
}; | |
cljs.core.tree_seq = function(a, b, c) { | |
return function e(c) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
return cljs.core.cons.call(null, c, cljs.core.truth_(a.call(null, c)) ? cljs.core.mapcat.call(null, e, b.call(null, c)) : null) | |
}, null) | |
}.call(null, c) | |
}; | |
cljs.core.flatten = function(a) { | |
return cljs.core.filter.call(null, function(a) { | |
return!cljs.core.sequential_QMARK_.call(null, a) | |
}, cljs.core.rest.call(null, cljs.core.tree_seq.call(null, cljs.core.sequential_QMARK_, cljs.core.seq, a))) | |
}; | |
cljs.core.into = function(a, b) { | |
var c; | |
null != a ? (a ? (c = (c = a.cljs$lang$protocol_mask$partition1$ & 4) ? c : a.cljs$core$IEditableCollection$, c = c ? !0 : !1) : c = !1, c = c ? cljs.core.persistent_BANG_.call(null, cljs.core.reduce.call(null, cljs.core._conj_BANG_, cljs.core.transient$.call(null, a), b)) : cljs.core.reduce.call(null, cljs.core._conj, a, b)) : c = cljs.core.reduce.call(null, cljs.core.conj, cljs.core.List.EMPTY, b); | |
return c | |
}; | |
cljs.core.mapv = function() { | |
var a = null, b = function(a, b) { | |
return cljs.core.persistent_BANG_.call(null, cljs.core.reduce.call(null, function(b, c) { | |
return cljs.core.conj_BANG_.call(null, b, a.call(null, c)) | |
}, cljs.core.transient$.call(null, cljs.core.PersistentVector.EMPTY), b)) | |
}, c = function(a, b, c) { | |
return cljs.core.into.call(null, cljs.core.PersistentVector.EMPTY, cljs.core.map.call(null, a, b, c)) | |
}, d = function(a, b, c, d) { | |
return cljs.core.into.call(null, cljs.core.PersistentVector.EMPTY, cljs.core.map.call(null, a, b, c, d)) | |
}, e = function() { | |
var a = function(a, b, c, d, e) { | |
return cljs.core.into.call(null, cljs.core.PersistentVector.EMPTY, cljs.core.apply.call(null, cljs.core.map, a, b, c, d, e)) | |
}, b = function(b, c, d, e, g) { | |
var p = null; | |
4 < arguments.length && (p = cljs.core.array_seq(Array.prototype.slice.call(arguments, 4), 0)); | |
return a.call(this, b, c, d, e, p) | |
}; | |
b.cljs$lang$maxFixedArity = 4; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var g = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, d, e, g, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, g, h, k, l) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, g); | |
case 3: | |
return c.call(this, a, g, h); | |
case 4: | |
return d.call(this, a, g, h, k); | |
default: | |
return e.cljs$core$IFn$_invoke$arity$variadic(a, g, h, k, cljs.core.array_seq(arguments, 4)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 4; | |
a.cljs$lang$applyTo = e.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
a.cljs$core$IFn$_invoke$arity$4 = d; | |
a.cljs$core$IFn$_invoke$arity$variadic = e.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.filterv = function(a, b) { | |
return cljs.core.persistent_BANG_.call(null, cljs.core.reduce.call(null, function(b, d) { | |
return cljs.core.truth_(a.call(null, d)) ? cljs.core.conj_BANG_.call(null, b, d) : b | |
}, cljs.core.transient$.call(null, cljs.core.PersistentVector.EMPTY), b)) | |
}; | |
cljs.core.partition = function() { | |
var a = null, b = function(b, c) { | |
return a.call(null, b, b, c) | |
}, c = function(b, c, d) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var h = cljs.core.seq.call(null, d); | |
if(h) { | |
var k = cljs.core.take.call(null, b, h); | |
return b === cljs.core.count.call(null, k) ? cljs.core.cons.call(null, k, a.call(null, b, c, cljs.core.drop.call(null, c, h))) : null | |
} | |
return null | |
}, null) | |
}, d = function(b, c, d, h) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var k = cljs.core.seq.call(null, h); | |
if(k) { | |
var l = cljs.core.take.call(null, b, k); | |
return b === cljs.core.count.call(null, l) ? cljs.core.cons.call(null, l, a.call(null, b, c, d, cljs.core.drop.call(null, c, k))) : cljs.core.list.call(null, cljs.core.take.call(null, b, cljs.core.concat.call(null, l, d))) | |
} | |
return null | |
}, null) | |
}, a = function(a, f, g, h) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, f); | |
case 3: | |
return c.call(this, a, f, g); | |
case 4: | |
return d.call(this, a, f, g, h) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
a.cljs$core$IFn$_invoke$arity$4 = d; | |
return a | |
}(); | |
cljs.core.get_in = function() { | |
var a = null, b = function(b, c) { | |
return a.call(null, b, c, null) | |
}, c = function(a, b, c) { | |
var g = cljs.core.lookup_sentinel; | |
for(b = cljs.core.seq.call(null, b);;) { | |
if(b) { | |
var h; | |
if(h = a) { | |
var k = void 0; | |
k = (k = h.cljs$lang$protocol_mask$partition0$ & 256) ? k : h.cljs$core$ILookup$; | |
h = k ? !0 : h.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.ILookup, h) | |
}else { | |
h = cljs.core.type_satisfies_.call(null, cljs.core.ILookup, h) | |
} | |
if(h) { | |
a = cljs.core.get.call(null, a, cljs.core.first.call(null, b), g); | |
if(g === a) { | |
return c | |
} | |
b = cljs.core.next.call(null, b) | |
}else { | |
return c | |
} | |
}else { | |
return a | |
} | |
} | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.assoc_in = function assoc_in(b, c, d) { | |
var e = cljs.core.nth.call(null, c, 0, null); | |
c = cljs.core.nthnext.call(null, c, 1); | |
return cljs.core.truth_(c) ? cljs.core.assoc.call(null, b, e, assoc_in.call(null, cljs.core.get.call(null, b, e), c, d)) : cljs.core.assoc.call(null, b, e, d) | |
}; | |
cljs.core.update_in = function() { | |
var a = null, b = function(b, c, d) { | |
var e = cljs.core.nth.call(null, c, 0, null); | |
c = cljs.core.nthnext.call(null, c, 1); | |
return cljs.core.truth_(c) ? cljs.core.assoc.call(null, b, e, a.call(null, cljs.core.get.call(null, b, e), c, d)) : cljs.core.assoc.call(null, b, e, d.call(null, cljs.core.get.call(null, b, e))) | |
}, c = function(b, c, d, e) { | |
var f = cljs.core.nth.call(null, c, 0, null); | |
c = cljs.core.nthnext.call(null, c, 1); | |
return cljs.core.truth_(c) ? cljs.core.assoc.call(null, b, f, a.call(null, cljs.core.get.call(null, b, f), c, d, e)) : cljs.core.assoc.call(null, b, f, d.call(null, cljs.core.get.call(null, b, f), e)) | |
}, d = function(b, c, d, e, f) { | |
var n = cljs.core.nth.call(null, c, 0, null); | |
c = cljs.core.nthnext.call(null, c, 1); | |
return cljs.core.truth_(c) ? cljs.core.assoc.call(null, b, n, a.call(null, cljs.core.get.call(null, b, n), c, d, e, f)) : cljs.core.assoc.call(null, b, n, d.call(null, cljs.core.get.call(null, b, n), e, f)) | |
}, e = function(b, c, d, e, f, n) { | |
var p = cljs.core.nth.call(null, c, 0, null); | |
c = cljs.core.nthnext.call(null, c, 1); | |
return cljs.core.truth_(c) ? cljs.core.assoc.call(null, b, p, a.call(null, cljs.core.get.call(null, b, p), c, d, e, f, n)) : cljs.core.assoc.call(null, b, p, d.call(null, cljs.core.get.call(null, b, p), e, f, n)) | |
}, f = function() { | |
var b = function(b, c, d, e, f, g, h) { | |
var s = cljs.core.nth.call(null, c, 0, null); | |
c = cljs.core.nthnext.call(null, c, 1); | |
return cljs.core.truth_(c) ? cljs.core.assoc.call(null, b, s, cljs.core.apply.call(null, a, cljs.core.get.call(null, b, s), c, d, e, f, g, h)) : cljs.core.assoc.call(null, b, s, cljs.core.apply.call(null, d, cljs.core.get.call(null, b, s), e, f, g, h)) | |
}, c = function(a, c, d, e, f, h, r) { | |
var s = null; | |
6 < arguments.length && (s = cljs.core.array_seq(Array.prototype.slice.call(arguments, 6), 0)); | |
return b.call(this, a, c, d, e, f, h, s) | |
}; | |
c.cljs$lang$maxFixedArity = 6; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var f = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var h = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var r = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, d, e, f, h, r, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, h, k, l, m, n, p) { | |
switch(arguments.length) { | |
case 3: | |
return b.call(this, a, h, k); | |
case 4: | |
return c.call(this, a, h, k, l); | |
case 5: | |
return d.call(this, a, h, k, l, m); | |
case 6: | |
return e.call(this, a, h, k, l, m, n); | |
default: | |
return f.cljs$core$IFn$_invoke$arity$variadic(a, h, k, l, m, n, cljs.core.array_seq(arguments, 6)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 6; | |
a.cljs$lang$applyTo = f.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$3 = b; | |
a.cljs$core$IFn$_invoke$arity$4 = c; | |
a.cljs$core$IFn$_invoke$arity$5 = d; | |
a.cljs$core$IFn$_invoke$arity$6 = e; | |
a.cljs$core$IFn$_invoke$arity$variadic = f.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.VectorNode = function(a, b) { | |
this.edit = a; | |
this.arr = b | |
}; | |
cljs.core.VectorNode.cljs$lang$type = !0; | |
cljs.core.VectorNode.cljs$lang$ctorStr = "cljs.core/VectorNode"; | |
cljs.core.VectorNode.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/VectorNode") | |
}; | |
cljs.core.__GT_VectorNode = function(a, b) { | |
return new cljs.core.VectorNode(a, b) | |
}; | |
cljs.core.pv_fresh_node = function(a) { | |
return new cljs.core.VectorNode(a, Array(32)) | |
}; | |
cljs.core.pv_aget = function(a, b) { | |
return a.arr[b] | |
}; | |
cljs.core.pv_aset = function(a, b, c) { | |
return a.arr[b] = c | |
}; | |
cljs.core.pv_clone_node = function(a) { | |
return new cljs.core.VectorNode(a.edit, a.arr.slice()) | |
}; | |
cljs.core.tail_off = function(a) { | |
a = a.cnt; | |
return 32 > a ? 0 : a - 1 >>> 5 << 5 | |
}; | |
cljs.core.new_path = function(a, b, c) { | |
for(;;) { | |
if(0 === b) { | |
return c | |
} | |
var d = cljs.core.pv_fresh_node.call(null, a); | |
cljs.core.pv_aset.call(null, d, 0, c); | |
c = d; | |
b -= 5 | |
} | |
}; | |
cljs.core.push_tail = function push_tail(b, c, d, e) { | |
var f = cljs.core.pv_clone_node.call(null, d), g = b.cnt - 1 >>> c & 31; | |
5 === c ? cljs.core.pv_aset.call(null, f, g, e) : (d = cljs.core.pv_aget.call(null, d, g), b = null != d ? push_tail.call(null, b, c - 5, d, e) : cljs.core.new_path.call(null, null, c - 5, e), cljs.core.pv_aset.call(null, f, g, b)); | |
return f | |
}; | |
cljs.core.vector_index_out_of_bounds = function(a, b) { | |
throw Error([cljs.core.str("No item "), cljs.core.str(a), cljs.core.str(" in vector of length "), cljs.core.str(b)].join("")); | |
}; | |
cljs.core.array_for = function(a, b) { | |
var c; | |
c = (c = 0 <= b) ? b < a.cnt : c; | |
if(c) { | |
if(b >= cljs.core.tail_off.call(null, a)) { | |
return a.tail | |
} | |
c = a.root; | |
for(var d = a.shift;;) { | |
if(0 < d) { | |
c = cljs.core.pv_aget.call(null, c, b >>> d & 31), d -= 5 | |
}else { | |
return c.arr | |
} | |
} | |
}else { | |
return cljs.core.vector_index_out_of_bounds.call(null, b, a.cnt) | |
} | |
}; | |
cljs.core.do_assoc = function do_assoc(b, c, d, e, f) { | |
var g = cljs.core.pv_clone_node.call(null, d); | |
if(0 === c) { | |
cljs.core.pv_aset.call(null, g, e & 31, f) | |
}else { | |
var h = e >>> c & 31; | |
cljs.core.pv_aset.call(null, g, h, do_assoc.call(null, b, c - 5, cljs.core.pv_aget.call(null, d, h), e, f)) | |
} | |
return g | |
}; | |
cljs.core.pop_tail = function pop_tail(b, c, d) { | |
var e = b.cnt - 2 >>> c & 31; | |
if(5 < c) { | |
b = pop_tail.call(null, b, c - 5, cljs.core.pv_aget.call(null, d, e)); | |
c = null == b; | |
if(c ? 0 === e : c) { | |
return null | |
} | |
d = cljs.core.pv_clone_node.call(null, d); | |
cljs.core.pv_aset.call(null, d, e, b); | |
return d | |
} | |
if(0 === e) { | |
return null | |
} | |
d = cljs.core.pv_clone_node.call(null, d); | |
cljs.core.pv_aset.call(null, d, e, null); | |
return d | |
}; | |
cljs.core.PersistentVector = function(a, b, c, d, e, f) { | |
this.meta = a; | |
this.cnt = b; | |
this.shift = c; | |
this.root = d; | |
this.tail = e; | |
this.__hash = f; | |
this.cljs$lang$protocol_mask$partition1$ = 4; | |
this.cljs$lang$protocol_mask$partition0$ = 167668511 | |
}; | |
cljs.core.PersistentVector.cljs$lang$type = !0; | |
cljs.core.PersistentVector.cljs$lang$ctorStr = "cljs.core/PersistentVector"; | |
cljs.core.PersistentVector.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/PersistentVector") | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IEditableCollection$_as_transient$arity$1 = function(a) { | |
return new cljs.core.TransientVector(this.cnt, this.shift, cljs.core.tv_editable_root.call(null, this.root), cljs.core.tv_editable_tail.call(null, this.tail)) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$IIndexed$_nth$arity$3(a, b, null) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
return a.cljs$core$IIndexed$_nth$arity$3(a, b, c) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IAssociative$_assoc$arity$3 = function(a, b, c) { | |
var d; | |
d = (d = 0 <= b) ? b < this.cnt : d; | |
if(d) { | |
return cljs.core.tail_off.call(null, a) <= b ? (a = this.tail.slice(), a[b & 31] = c, new cljs.core.PersistentVector(this.meta, this.cnt, this.shift, this.root, a, null)) : new cljs.core.PersistentVector(this.meta, this.cnt, this.shift, cljs.core.do_assoc.call(null, a, this.shift, this.root, b, c), this.tail, null) | |
} | |
if(b === this.cnt) { | |
return a.cljs$core$ICollection$_conj$arity$2(a, c) | |
} | |
throw Error([cljs.core.str("Index "), cljs.core.str(b), cljs.core.str(" out of bounds [0,"), cljs.core.str(this.cnt), cljs.core.str("]")].join("")); | |
}; | |
cljs.core.PersistentVector.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return this.cljs$core$IIndexed$_nth$arity$2(this, c); | |
case 3: | |
return this.cljs$core$IIndexed$_nth$arity$3(this, c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.PersistentVector.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IKVReduce$_kv_reduce$arity$3 = function(a, b, c) { | |
c = [0, c]; | |
for(var d = 0;;) { | |
if(d < this.cnt) { | |
var e = cljs.core.array_for.call(null, a, d), f = e.length; | |
a: { | |
for(var g = 0, h = c[1];;) { | |
if(g < f) { | |
if(h = b.call(null, h, g + d, e[g]), cljs.core.reduced_QMARK_.call(null, h)) { | |
e = h; | |
break a | |
}else { | |
g += 1 | |
} | |
}else { | |
c[0] = f; | |
e = c[1] = h; | |
break a | |
} | |
} | |
e = void 0 | |
} | |
if(cljs.core.reduced_QMARK_.call(null, e)) { | |
return cljs.core.deref.call(null, e) | |
} | |
d += c[0] | |
}else { | |
return c[1] | |
} | |
} | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
if(32 > this.cnt - cljs.core.tail_off.call(null, a)) { | |
var c = this.tail.slice(); | |
c.push(b); | |
return new cljs.core.PersistentVector(this.meta, this.cnt + 1, this.shift, this.root, c, null) | |
} | |
var d = this.cnt >>> 5 > 1 << this.shift, c = d ? this.shift + 5 : this.shift; | |
d ? (d = cljs.core.pv_fresh_node.call(null, null), cljs.core.pv_aset.call(null, d, 0, this.root), cljs.core.pv_aset.call(null, d, 1, cljs.core.new_path.call(null, null, this.shift, new cljs.core.VectorNode(null, this.tail)))) : d = cljs.core.push_tail.call(null, a, this.shift, this.root, new cljs.core.VectorNode(null, this.tail)); | |
return new cljs.core.PersistentVector(this.meta, this.cnt + 1, c, d, [b], null) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IReversible$_rseq$arity$1 = function(a) { | |
return 0 < this.cnt ? new cljs.core.RSeq(a, this.cnt - 1, null) : cljs.core.List.EMPTY | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IMapEntry$_key$arity$1 = function(a) { | |
return a.cljs$core$IIndexed$_nth$arity$2(a, 0) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IMapEntry$_val$arity$1 = function(a) { | |
return a.cljs$core$IIndexed$_nth$arity$2(a, 1) | |
}; | |
cljs.core.PersistentVector.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.ci_reduce.call(null, a, b) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.ci_reduce.call(null, a, b, c) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return 0 === this.cnt ? null : 32 > this.cnt ? cljs.core.array_seq.call(null, this.tail) : cljs.core.chunked_seq.call(null, a, 0, 0) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.cnt | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IStack$_peek$arity$1 = function(a) { | |
return 0 < this.cnt ? a.cljs$core$IIndexed$_nth$arity$2(a, this.cnt - 1) : null | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IStack$_pop$arity$1 = function(a) { | |
if(0 === this.cnt) { | |
throw Error("Can't pop empty vector"); | |
} | |
if(1 === this.cnt) { | |
return cljs.core._with_meta.call(null, cljs.core.PersistentVector.EMPTY, this.meta) | |
} | |
if(1 < this.cnt - cljs.core.tail_off.call(null, a)) { | |
return new cljs.core.PersistentVector(this.meta, this.cnt - 1, this.shift, this.root, this.tail.slice(0, -1), null) | |
} | |
var b = cljs.core.array_for.call(null, a, this.cnt - 2); | |
a = cljs.core.pop_tail.call(null, a, this.shift, this.root); | |
a = null == a ? cljs.core.PersistentVector.EMPTY_NODE : a; | |
var c = this.cnt - 1, d; | |
d = (d = 5 < this.shift) ? null == cljs.core.pv_aget.call(null, a, 1) : d; | |
return d ? new cljs.core.PersistentVector(this.meta, c, this.shift - 5, cljs.core.pv_aget.call(null, a, 0), b, null) : new cljs.core.PersistentVector(this.meta, c, this.shift, a, b, null) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IVector$_assoc_n$arity$3 = function(a, b, c) { | |
return a.cljs$core$IAssociative$_assoc$arity$3(a, b, c) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.PersistentVector(b, this.cnt, this.shift, this.root, this.tail, this.__hash) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IIndexed$_nth$arity$2 = function(a, b) { | |
return cljs.core.array_for.call(null, a, b)[b & 31] | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IIndexed$_nth$arity$3 = function(a, b, c) { | |
var d; | |
d = (d = 0 <= b) ? b < this.cnt : d; | |
return d ? a.cljs$core$IIndexed$_nth$arity$2(a, b) : c | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.PersistentVector.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_PersistentVector = function(a, b, c, d, e, f) { | |
return new cljs.core.PersistentVector(a, b, c, d, e, f) | |
}; | |
cljs.core.PersistentVector.EMPTY_NODE = new cljs.core.VectorNode(null, Array(32)); | |
cljs.core.PersistentVector.EMPTY = new cljs.core.PersistentVector(null, 0, 5, cljs.core.PersistentVector.EMPTY_NODE, [], 0); | |
cljs.core.PersistentVector.fromArray = function(a, b) { | |
var c = a.length, d = b ? a : a.slice(); | |
if(32 > c) { | |
return new cljs.core.PersistentVector(null, c, 5, cljs.core.PersistentVector.EMPTY_NODE, d, null) | |
} | |
for(var e = d.slice(0, 32), f = new cljs.core.PersistentVector(null, 32, 5, cljs.core.PersistentVector.EMPTY_NODE, e, null), e = 32, g = cljs.core._as_transient.call(null, f);;) { | |
if(e < c) { | |
f = e + 1, g = cljs.core.conj_BANG_.call(null, g, d[e]), e = f | |
}else { | |
return cljs.core.persistent_BANG_.call(null, g) | |
} | |
} | |
}; | |
cljs.core.vec = function(a) { | |
return cljs.core._persistent_BANG_.call(null, cljs.core.reduce.call(null, cljs.core._conj_BANG_, cljs.core._as_transient.call(null, cljs.core.PersistentVector.EMPTY), a)) | |
}; | |
cljs.core.vector = function() { | |
var a = function(a) { | |
return cljs.core.vec.call(null, a) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.ChunkedSeq = function(a, b, c, d, e, f) { | |
this.vec = a; | |
this.node = b; | |
this.i = c; | |
this.off = d; | |
this.meta = e; | |
this.__hash = f; | |
this.cljs$lang$protocol_mask$partition0$ = 32243948; | |
this.cljs$lang$protocol_mask$partition1$ = 1536 | |
}; | |
cljs.core.ChunkedSeq.cljs$lang$type = !0; | |
cljs.core.ChunkedSeq.cljs$lang$ctorStr = "cljs.core/ChunkedSeq"; | |
cljs.core.ChunkedSeq.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/ChunkedSeq") | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$INext$_next$arity$1 = function(a) { | |
return this.off + 1 < this.node.length ? (a = cljs.core.chunked_seq.call(null, this.vec, this.node, this.i, this.off + 1), null == a ? null : a) : a.cljs$core$IChunkedNext$_chunked_next$arity$1(a) | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.ChunkedSeq.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.ci_reduce.call(null, cljs.core.subvec.call(null, this.vec, this.i + this.off, cljs.core.count.call(null, this.vec)), b) | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.ci_reduce.call(null, cljs.core.subvec.call(null, this.vec, this.i + this.off, cljs.core.count.call(null, this.vec)), b, c) | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return this.node[this.off] | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return this.off + 1 < this.node.length ? (a = cljs.core.chunked_seq.call(null, this.vec, this.node, this.i, this.off + 1), null == a ? cljs.core.List.EMPTY : a) : a.cljs$core$IChunkedSeq$_chunked_rest$arity$1(a) | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IChunkedNext$_chunked_next$arity$1 = function(a) { | |
a = this.node.length; | |
a = this.i + a < cljs.core._count.call(null, this.vec) ? cljs.core.chunked_seq.call(null, this.vec, this.i + a, 0) : null; | |
return null == a ? null : a | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return cljs.core.chunked_seq.call(null, this.vec, this.node, this.i, this.off, b) | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IWithMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.PersistentVector.EMPTY, this.meta) | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IChunkedSeq$_chunked_first$arity$1 = function(a) { | |
return cljs.core.array_chunk.call(null, this.node, this.off) | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IChunkedSeq$_chunked_rest$arity$1 = function(a) { | |
a = this.node.length; | |
a = this.i + a < cljs.core._count.call(null, this.vec) ? cljs.core.chunked_seq.call(null, this.vec, this.i + a, 0) : null; | |
return null == a ? cljs.core.List.EMPTY : a | |
}; | |
cljs.core.__GT_ChunkedSeq = function(a, b, c, d, e, f) { | |
return new cljs.core.ChunkedSeq(a, b, c, d, e, f) | |
}; | |
cljs.core.chunked_seq = function() { | |
var a = null, b = function(a, b, c) { | |
return new cljs.core.ChunkedSeq(a, cljs.core.array_for.call(null, a, b), b, c, null, null) | |
}, c = function(a, b, c, d) { | |
return new cljs.core.ChunkedSeq(a, b, c, d, null, null) | |
}, d = function(a, b, c, d, k) { | |
return new cljs.core.ChunkedSeq(a, b, c, d, k, null) | |
}, a = function(a, f, g, h, k) { | |
switch(arguments.length) { | |
case 3: | |
return b.call(this, a, f, g); | |
case 4: | |
return c.call(this, a, f, g, h); | |
case 5: | |
return d.call(this, a, f, g, h, k) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$3 = b; | |
a.cljs$core$IFn$_invoke$arity$4 = c; | |
a.cljs$core$IFn$_invoke$arity$5 = d; | |
return a | |
}(); | |
cljs.core.Subvec = function(a, b, c, d, e) { | |
this.meta = a; | |
this.v = b; | |
this.start = c; | |
this.end = d; | |
this.__hash = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32400159 | |
}; | |
cljs.core.Subvec.cljs$lang$type = !0; | |
cljs.core.Subvec.cljs$lang$ctorStr = "cljs.core/Subvec"; | |
cljs.core.Subvec.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/Subvec") | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$IIndexed$_nth$arity$3(a, b, null) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
return a.cljs$core$IIndexed$_nth$arity$3(a, b, c) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IAssociative$_assoc$arity$3 = function(a, b, c) { | |
var d = this, e = d.start + b; | |
return cljs.core.build_subvec.call(null, d.meta, cljs.core.assoc.call(null, d.v, e, c), d.start, function() { | |
var a = d.end, b = e + 1; | |
return a > b ? a : b | |
}(), null) | |
}; | |
cljs.core.Subvec.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return this.cljs$core$IIndexed$_nth$arity$2(this, c); | |
case 3: | |
return this.cljs$core$IIndexed$_nth$arity$3(this, c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.Subvec.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.build_subvec.call(null, this.meta, cljs.core._assoc_n.call(null, this.v, this.end, b), this.start, this.end + 1, null) | |
}; | |
cljs.core.Subvec.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.ci_reduce.call(null, a, b) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.ci_reduce.call(null, a, b, c) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
var b = this; | |
return function d(a) { | |
return a === b.end ? null : cljs.core.cons.call(null, cljs.core._nth.call(null, b.v, a), new cljs.core.LazySeq(null, !1, function() { | |
return d.call(null, a + 1) | |
}, null)) | |
}.call(null, b.start) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.end - this.start | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IStack$_peek$arity$1 = function(a) { | |
return cljs.core._nth.call(null, this.v, this.end - 1) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IStack$_pop$arity$1 = function(a) { | |
if(this.start === this.end) { | |
throw Error("Can't pop empty vector"); | |
} | |
return cljs.core.build_subvec.call(null, this.meta, this.v, this.start, this.end - 1, null) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IVector$_assoc_n$arity$3 = function(a, b, c) { | |
return a.cljs$core$IAssociative$_assoc$arity$3(a, b, c) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return cljs.core.build_subvec.call(null, b, this.v, this.start, this.end, this.__hash) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IIndexed$_nth$arity$2 = function(a, b) { | |
var c; | |
c = (c = 0 > b) ? c : this.end <= this.start + b; | |
return c ? cljs.core.vector_index_out_of_bounds.call(null, b, this.end - this.start) : cljs.core._nth.call(null, this.v, this.start + b) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IIndexed$_nth$arity$3 = function(a, b, c) { | |
a = (a = 0 > b) ? a : this.end <= this.start + b; | |
return a ? c : cljs.core._nth.call(null, this.v, this.start + b, c) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.PersistentVector.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_Subvec = function(a, b, c, d, e) { | |
return new cljs.core.Subvec(a, b, c, d, e) | |
}; | |
cljs.core.build_subvec = function(a, b, c, d, e) { | |
for(;;) { | |
if(b instanceof cljs.core.Subvec) { | |
var f = b.start + c, g = b.start + d; | |
b = b.v; | |
c = f; | |
d = g | |
}else { | |
var h = cljs.core.count.call(null, b); | |
if(function() { | |
var a = 0 > c; | |
return a || (a = 0 > d) ? a : (a = c > h) ? a : d > h | |
}()) { | |
throw Error("Index out of bounds"); | |
} | |
return new cljs.core.Subvec(a, b, c, d, e) | |
} | |
} | |
}; | |
cljs.core.subvec = function() { | |
var a = null, b = function(b, c) { | |
return a.call(null, b, c, cljs.core.count.call(null, b)) | |
}, c = function(a, b, c) { | |
return cljs.core.build_subvec.call(null, null, a, b, c, null) | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.tv_ensure_editable = function(a, b) { | |
return a === b.edit ? b : new cljs.core.VectorNode(a, b.arr.slice()) | |
}; | |
cljs.core.tv_editable_root = function(a) { | |
return new cljs.core.VectorNode({}, a.arr.slice()) | |
}; | |
cljs.core.tv_editable_tail = function(a) { | |
var b = Array(32); | |
cljs.core.array_copy.call(null, a, 0, b, 0, a.length); | |
return b | |
}; | |
cljs.core.tv_push_tail = function tv_push_tail(b, c, d, e) { | |
var f = cljs.core.tv_ensure_editable.call(null, b.root.edit, d), g = b.cnt - 1 >>> c & 31; | |
cljs.core.pv_aset.call(null, f, g, 5 === c ? e : function() { | |
var d = cljs.core.pv_aget.call(null, f, g); | |
return null != d ? tv_push_tail.call(null, b, c - 5, d, e) : cljs.core.new_path.call(null, b.root.edit, c - 5, e) | |
}()); | |
return f | |
}; | |
cljs.core.tv_pop_tail = function tv_pop_tail(b, c, d) { | |
d = cljs.core.tv_ensure_editable.call(null, b.root.edit, d); | |
var e = b.cnt - 2 >>> c & 31; | |
if(5 < c) { | |
b = tv_pop_tail.call(null, b, c - 5, cljs.core.pv_aget.call(null, d, e)); | |
c = null == b; | |
if(c ? 0 === e : c) { | |
return null | |
} | |
cljs.core.pv_aset.call(null, d, e, b); | |
return d | |
} | |
if(0 === e) { | |
return null | |
} | |
cljs.core.pv_aset.call(null, d, e, null); | |
return d | |
}; | |
cljs.core.editable_array_for = function(a, b) { | |
var c; | |
c = (c = 0 <= b) ? b < a.cnt : c; | |
if(c) { | |
if(b >= cljs.core.tail_off.call(null, a)) { | |
return a.tail | |
} | |
for(var d = c = a.root, e = a.shift;;) { | |
if(0 < e) { | |
d = cljs.core.tv_ensure_editable.call(null, c.edit, cljs.core.pv_aget.call(null, d, b >>> e & 31)), e -= 5 | |
}else { | |
return d.arr | |
} | |
} | |
}else { | |
throw Error([cljs.core.str("No item "), cljs.core.str(b), cljs.core.str(" in transient vector of length "), cljs.core.str(a.cnt)].join("")); | |
} | |
}; | |
cljs.core.TransientVector = function(a, b, c, d) { | |
this.cnt = a; | |
this.shift = b; | |
this.root = c; | |
this.tail = d; | |
this.cljs$lang$protocol_mask$partition0$ = 275; | |
this.cljs$lang$protocol_mask$partition1$ = 88 | |
}; | |
cljs.core.TransientVector.cljs$lang$type = !0; | |
cljs.core.TransientVector.cljs$lang$ctorStr = "cljs.core/TransientVector"; | |
cljs.core.TransientVector.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/TransientVector") | |
}; | |
cljs.core.TransientVector.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return this.cljs$core$ILookup$_lookup$arity$2(this, c); | |
case 3: | |
return this.cljs$core$ILookup$_lookup$arity$3(this, c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.TransientVector.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.TransientVector.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$IIndexed$_nth$arity$3(a, b, null) | |
}; | |
cljs.core.TransientVector.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
return a.cljs$core$IIndexed$_nth$arity$3(a, b, c) | |
}; | |
cljs.core.TransientVector.prototype.cljs$core$IIndexed$_nth$arity$2 = function(a, b) { | |
if(this.root.edit) { | |
return cljs.core.array_for.call(null, a, b)[b & 31] | |
} | |
throw Error("nth after persistent!"); | |
}; | |
cljs.core.TransientVector.prototype.cljs$core$IIndexed$_nth$arity$3 = function(a, b, c) { | |
var d; | |
d = (d = 0 <= b) ? b < this.cnt : d; | |
return d ? a.cljs$core$IIndexed$_nth$arity$2(a, b) : c | |
}; | |
cljs.core.TransientVector.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
if(this.root.edit) { | |
return this.cnt | |
} | |
throw Error("count after persistent!"); | |
}; | |
cljs.core.TransientVector.prototype.cljs$core$ITransientVector$_assoc_n_BANG_$arity$3 = function(a, b, c) { | |
var d = this; | |
if(d.root.edit) { | |
if(function() { | |
var a = 0 <= b; | |
return a ? b < d.cnt : a | |
}()) { | |
if(cljs.core.tail_off.call(null, a) <= b) { | |
d.tail[b & 31] = c | |
}else { | |
var e = function g(a, e) { | |
var l = cljs.core.tv_ensure_editable.call(null, d.root.edit, e); | |
if(0 === a) { | |
cljs.core.pv_aset.call(null, l, b & 31, c) | |
}else { | |
var m = b >>> a & 31; | |
cljs.core.pv_aset.call(null, l, m, g.call(null, a - 5, cljs.core.pv_aget.call(null, l, m))) | |
} | |
return l | |
}.call(null, d.shift, d.root); | |
d.root = e | |
} | |
return a | |
} | |
if(b === d.cnt) { | |
return a.cljs$core$ITransientCollection$_conj_BANG_$arity$2(a, c) | |
} | |
throw Error([cljs.core.str("Index "), cljs.core.str(b), cljs.core.str(" out of bounds for TransientVector of length"), cljs.core.str(d.cnt)].join("")); | |
} | |
throw Error("assoc! after persistent!"); | |
}; | |
cljs.core.TransientVector.prototype.cljs$core$ITransientVector$_pop_BANG_$arity$1 = function(a) { | |
var b = this; | |
if(b.root.edit) { | |
if(0 === b.cnt) { | |
throw Error("Can't pop empty vector"); | |
} | |
if(1 === b.cnt) { | |
b.cnt = 0 | |
}else { | |
if(0 < (b.cnt - 1 & 31)) { | |
b.cnt -= 1 | |
}else { | |
var c = cljs.core.editable_array_for.call(null, a, b.cnt - 2), d = function() { | |
var c = cljs.core.tv_pop_tail.call(null, a, b.shift, b.root); | |
return null != c ? c : new cljs.core.VectorNode(b.root.edit, Array(32)) | |
}(); | |
if(function() { | |
var a = 5 < b.shift; | |
return a ? null == cljs.core.pv_aget.call(null, d, 1) : a | |
}()) { | |
var e = cljs.core.tv_ensure_editable.call(null, b.root.edit, cljs.core.pv_aget.call(null, d, 0)); | |
b.root = e; | |
b.shift -= 5 | |
}else { | |
b.root = d | |
} | |
b.cnt -= 1; | |
b.tail = c | |
} | |
} | |
return a | |
} | |
throw Error("pop! after persistent!"); | |
}; | |
cljs.core.TransientVector.prototype.cljs$core$ITransientAssociative$_assoc_BANG_$arity$3 = function(a, b, c) { | |
return a.cljs$core$ITransientVector$_assoc_n_BANG_$arity$3(a, b, c) | |
}; | |
cljs.core.TransientVector.prototype.cljs$core$ITransientCollection$_conj_BANG_$arity$2 = function(a, b) { | |
if(this.root.edit) { | |
if(32 > this.cnt - cljs.core.tail_off.call(null, a)) { | |
this.tail[this.cnt & 31] = b | |
}else { | |
var c = new cljs.core.VectorNode(this.root.edit, this.tail), d = Array(32); | |
d[0] = b; | |
this.tail = d; | |
if(this.cnt >>> 5 > 1 << this.shift) { | |
var d = Array(32), e = this.shift + 5; | |
d[0] = this.root; | |
d[1] = cljs.core.new_path.call(null, this.root.edit, this.shift, c); | |
this.root = new cljs.core.VectorNode(this.root.edit, d); | |
this.shift = e | |
}else { | |
this.root = cljs.core.tv_push_tail.call(null, a, this.shift, this.root, c) | |
} | |
} | |
this.cnt += 1; | |
return a | |
} | |
throw Error("conj! after persistent!"); | |
}; | |
cljs.core.TransientVector.prototype.cljs$core$ITransientCollection$_persistent_BANG_$arity$1 = function(a) { | |
if(this.root.edit) { | |
this.root.edit = null; | |
a = this.cnt - cljs.core.tail_off.call(null, a); | |
var b = Array(a); | |
cljs.core.array_copy.call(null, this.tail, 0, b, 0, a); | |
return new cljs.core.PersistentVector(null, this.cnt, this.shift, this.root, b, null) | |
} | |
throw Error("persistent! called twice"); | |
}; | |
cljs.core.__GT_TransientVector = function(a, b, c, d) { | |
return new cljs.core.TransientVector(a, b, c, d) | |
}; | |
cljs.core.PersistentQueueSeq = function(a, b, c, d) { | |
this.meta = a; | |
this.front = b; | |
this.rear = c; | |
this.__hash = d; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 31850572 | |
}; | |
cljs.core.PersistentQueueSeq.cljs$lang$type = !0; | |
cljs.core.PersistentQueueSeq.cljs$lang$ctorStr = "cljs.core/PersistentQueueSeq"; | |
cljs.core.PersistentQueueSeq.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/PersistentQueueSeq") | |
}; | |
cljs.core.PersistentQueueSeq.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.PersistentQueueSeq.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.PersistentQueueSeq.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.PersistentQueueSeq.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.PersistentQueueSeq.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return cljs.core.first.call(null, this.front) | |
}; | |
cljs.core.PersistentQueueSeq.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
var b = cljs.core.next.call(null, this.front); | |
return b ? new cljs.core.PersistentQueueSeq(this.meta, b, this.rear, null) : null == this.rear ? a.cljs$core$IEmptyableCollection$_empty$arity$1(a) : new cljs.core.PersistentQueueSeq(this.meta, this.rear, null, null) | |
}; | |
cljs.core.PersistentQueueSeq.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.PersistentQueueSeq.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.PersistentQueueSeq(b, this.front, this.rear, this.__hash) | |
}; | |
cljs.core.PersistentQueueSeq.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.PersistentQueueSeq.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_PersistentQueueSeq = function(a, b, c, d) { | |
return new cljs.core.PersistentQueueSeq(a, b, c, d) | |
}; | |
cljs.core.PersistentQueue = function(a, b, c, d, e) { | |
this.meta = a; | |
this.count = b; | |
this.front = c; | |
this.rear = d; | |
this.__hash = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 31858766 | |
}; | |
cljs.core.PersistentQueue.cljs$lang$type = !0; | |
cljs.core.PersistentQueue.cljs$lang$ctorStr = "cljs.core/PersistentQueue"; | |
cljs.core.PersistentQueue.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/PersistentQueue") | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
var c = this; | |
return cljs.core.truth_(c.front) ? new cljs.core.PersistentQueue(c.meta, c.count + 1, c.front, cljs.core.conj.call(null, function() { | |
var a = c.rear; | |
return cljs.core.truth_(a) ? a : cljs.core.PersistentVector.EMPTY | |
}(), b), null) : new cljs.core.PersistentQueue(c.meta, c.count + 1, cljs.core.conj.call(null, c.front, b), cljs.core.PersistentVector.EMPTY, null) | |
}; | |
cljs.core.PersistentQueue.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
var b = this, c = cljs.core.seq.call(null, b.rear); | |
return cljs.core.truth_(function() { | |
var a = b.front; | |
return cljs.core.truth_(a) ? a : c | |
}()) ? new cljs.core.PersistentQueueSeq(null, b.front, cljs.core.seq.call(null, c), null) : null | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.count | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$IStack$_peek$arity$1 = function(a) { | |
return cljs.core.first.call(null, this.front) | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$IStack$_pop$arity$1 = function(a) { | |
return cljs.core.truth_(this.front) ? (a = cljs.core.next.call(null, this.front)) ? new cljs.core.PersistentQueue(this.meta, this.count - 1, a, this.rear, null) : new cljs.core.PersistentQueue(this.meta, this.count - 1, cljs.core.seq.call(null, this.rear), cljs.core.PersistentVector.EMPTY, null) : a | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return cljs.core.first.call(null, this.front) | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return cljs.core.rest.call(null, cljs.core.seq.call(null, a)) | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.PersistentQueue(b, this.count, this.front, this.rear, this.__hash) | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.PersistentQueue.EMPTY | |
}; | |
cljs.core.__GT_PersistentQueue = function(a, b, c, d, e) { | |
return new cljs.core.PersistentQueue(a, b, c, d, e) | |
}; | |
cljs.core.PersistentQueue.EMPTY = new cljs.core.PersistentQueue(null, 0, null, cljs.core.PersistentVector.EMPTY, 0); | |
cljs.core.NeverEquiv = function() { | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 2097152 | |
}; | |
cljs.core.NeverEquiv.cljs$lang$type = !0; | |
cljs.core.NeverEquiv.cljs$lang$ctorStr = "cljs.core/NeverEquiv"; | |
cljs.core.NeverEquiv.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/NeverEquiv") | |
}; | |
cljs.core.NeverEquiv.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return!1 | |
}; | |
cljs.core.__GT_NeverEquiv = function() { | |
return new cljs.core.NeverEquiv | |
}; | |
cljs.core.never_equiv = new cljs.core.NeverEquiv; | |
cljs.core.equiv_map = function(a, b) { | |
return cljs.core.boolean$.call(null, cljs.core.map_QMARK_.call(null, b) ? cljs.core.count.call(null, a) === cljs.core.count.call(null, b) ? cljs.core.every_QMARK_.call(null, cljs.core.identity, cljs.core.map.call(null, function(a) { | |
return cljs.core._EQ_.call(null, cljs.core.get.call(null, b, cljs.core.first.call(null, a), cljs.core.never_equiv), cljs.core.second.call(null, a)) | |
}, a)) : null : null) | |
}; | |
cljs.core.scan_array = function(a, b, c) { | |
for(var d = c.length, e = 0;;) { | |
if(e < d) { | |
if(b === c[e]) { | |
return e | |
} | |
e += a | |
}else { | |
return null | |
} | |
} | |
}; | |
cljs.core.obj_map_compare_keys = function(a, b) { | |
var c = cljs.core.hash.call(null, a), d = cljs.core.hash.call(null, b); | |
return c < d ? -1 : c > d ? 1 : 0 | |
}; | |
cljs.core.obj_map__GT_hash_map = function(a, b, c) { | |
var d = a.keys, e = d.length, f = a.strobj; | |
a = cljs.core.meta.call(null, a); | |
for(var g = 0, h = cljs.core.transient$.call(null, cljs.core.PersistentHashMap.EMPTY);;) { | |
if(g < e) { | |
var k = d[g], g = g + 1, h = cljs.core.assoc_BANG_.call(null, h, k, f[k]) | |
}else { | |
return cljs.core.with_meta.call(null, cljs.core.persistent_BANG_.call(null, cljs.core.assoc_BANG_.call(null, h, b, c)), a) | |
} | |
} | |
}; | |
cljs.core.obj_clone = function(a, b) { | |
for(var c = {}, d = b.length, e = 0;;) { | |
if(e < d) { | |
var f = b[e]; | |
c[f] = a[f]; | |
e += 1 | |
}else { | |
break | |
} | |
} | |
return c | |
}; | |
cljs.core.ObjMap = function(a, b, c, d, e) { | |
this.meta = a; | |
this.keys = b; | |
this.strobj = c; | |
this.update_count = d; | |
this.__hash = e; | |
this.cljs$lang$protocol_mask$partition1$ = 4; | |
this.cljs$lang$protocol_mask$partition0$ = 16123663 | |
}; | |
cljs.core.ObjMap.cljs$lang$type = !0; | |
cljs.core.ObjMap.cljs$lang$ctorStr = "cljs.core/ObjMap"; | |
cljs.core.ObjMap.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/ObjMap") | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$IEditableCollection$_as_transient$arity$1 = function(a) { | |
return cljs.core.transient$.call(null, cljs.core.into.call(null, cljs.core.hash_map.call(null), a)) | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_imap.call(null, a) | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$ILookup$_lookup$arity$3(a, b, null) | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
a = (a = goog.isString(b)) ? null != cljs.core.scan_array.call(null, 1, b, this.keys) : a; | |
return a ? this.strobj[b] : c | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$IAssociative$_assoc$arity$3 = function(a, b, c) { | |
if(goog.isString(b)) { | |
var d; | |
d = (d = this.update_count > cljs.core.ObjMap.HASHMAP_THRESHOLD) ? d : this.keys.length >= cljs.core.ObjMap.HASHMAP_THRESHOLD; | |
if(d) { | |
return cljs.core.obj_map__GT_hash_map.call(null, a, b, c) | |
} | |
if(null != cljs.core.scan_array.call(null, 1, b, this.keys)) { | |
return a = cljs.core.obj_clone.call(null, this.strobj, this.keys), a[b] = c, new cljs.core.ObjMap(this.meta, this.keys, a, this.update_count + 1, null) | |
} | |
a = cljs.core.obj_clone.call(null, this.strobj, this.keys); | |
d = this.keys.slice(); | |
a[b] = c; | |
d.push(b); | |
return new cljs.core.ObjMap(this.meta, d, a, this.update_count + 1, null) | |
} | |
return cljs.core.obj_map__GT_hash_map.call(null, a, b, c) | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$IAssociative$_contains_key_QMARK_$arity$2 = function(a, b) { | |
var c; | |
c = (c = goog.isString(b)) ? null != cljs.core.scan_array.call(null, 1, b, this.keys) : c; | |
return c ? !0 : !1 | |
}; | |
cljs.core.ObjMap.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return this.cljs$core$ILookup$_lookup$arity$2(this, c); | |
case 3: | |
return this.cljs$core$ILookup$_lookup$arity$3(this, c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.ObjMap.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$IKVReduce$_kv_reduce$arity$3 = function(a, b, c) { | |
for(a = this.keys.sort(cljs.core.obj_map_compare_keys);;) { | |
if(cljs.core.seq.call(null, a)) { | |
var d = cljs.core.first.call(null, a); | |
c = b.call(null, c, d, this.strobj[d]); | |
if(cljs.core.reduced_QMARK_.call(null, c)) { | |
return cljs.core.deref.call(null, c) | |
} | |
a = cljs.core.rest.call(null, a) | |
}else { | |
return c | |
} | |
} | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.vector_QMARK_.call(null, b) ? a.cljs$core$IAssociative$_assoc$arity$3(a, cljs.core._nth.call(null, b, 0), cljs.core._nth.call(null, b, 1)) : cljs.core.reduce.call(null, cljs.core._conj, a, b) | |
}; | |
cljs.core.ObjMap.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
var b = this; | |
return 0 < b.keys.length ? cljs.core.map.call(null, function(a) { | |
return cljs.core.vector.call(null, a, b.strobj[a]) | |
}, b.keys.sort(cljs.core.obj_map_compare_keys)) : null | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.keys.length | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_map.call(null, a, b) | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.ObjMap(b, this.keys, this.strobj, this.update_count, this.__hash) | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.ObjMap.EMPTY, this.meta) | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$IMap$_dissoc$arity$2 = function(a, b) { | |
var c; | |
c = (c = goog.isString(b)) ? null != cljs.core.scan_array.call(null, 1, b, this.keys) : c; | |
if(c) { | |
c = this.keys.slice(); | |
var d = cljs.core.obj_clone.call(null, this.strobj, this.keys); | |
c.splice(cljs.core.scan_array.call(null, 1, b, c), 1); | |
delete d[b]; | |
return new cljs.core.ObjMap(this.meta, c, d, this.update_count + 1, null) | |
} | |
return a | |
}; | |
cljs.core.__GT_ObjMap = function(a, b, c, d, e) { | |
return new cljs.core.ObjMap(a, b, c, d, e) | |
}; | |
cljs.core.ObjMap.EMPTY = new cljs.core.ObjMap(null, [], {}, 0, 0); | |
cljs.core.ObjMap.HASHMAP_THRESHOLD = 8; | |
cljs.core.ObjMap.fromObject = function(a, b) { | |
return new cljs.core.ObjMap(null, a, b, 0, null) | |
}; | |
cljs.core.array_map_index_of_nil_QMARK_ = function(a, b, c) { | |
b = a.length; | |
for(c = 0;;) { | |
if(b <= c) { | |
return-1 | |
} | |
if(null == a[c]) { | |
return c | |
} | |
c += 2 | |
} | |
}; | |
cljs.core.array_map_index_of_symbol_QMARK_ = function(a, b, c) { | |
b = a.length; | |
c = c.str; | |
for(var d = 0;;) { | |
if(b <= d) { | |
return-1 | |
} | |
var e; | |
e = a[d]; | |
var f = e instanceof cljs.core.Symbol; | |
e = f ? c === e.str : f; | |
if(e) { | |
return d | |
} | |
d += 2 | |
} | |
}; | |
cljs.core.array_map_index_of_identical_QMARK_ = function(a, b, c) { | |
b = a.length; | |
for(var d = 0;;) { | |
if(b <= d) { | |
return-1 | |
} | |
if(c === a[d]) { | |
return d | |
} | |
d += 2 | |
} | |
}; | |
cljs.core.array_map_index_of_equiv_QMARK_ = function(a, b, c) { | |
b = a.length; | |
for(var d = 0;;) { | |
if(b <= d) { | |
return-1 | |
} | |
if(cljs.core._EQ_.call(null, c, a[d])) { | |
return d | |
} | |
d += 2 | |
} | |
}; | |
cljs.core.array_map_index_of = function(a, b) { | |
var c = a.arr; | |
var d = goog.isString(b); | |
return(d ? d : "number" === typeof b) ? cljs.core.array_map_index_of_identical_QMARK_.call(null, c, a, b) : b instanceof cljs.core.Symbol ? cljs.core.array_map_index_of_symbol_QMARK_.call(null, c, a, b) : null == b ? cljs.core.array_map_index_of_nil_QMARK_.call(null, c, a, b) : cljs.core.array_map_index_of_equiv_QMARK_.call(null, c, a, b) | |
}; | |
cljs.core.array_map_extend_kv = function(a, b, c) { | |
a = a.arr; | |
for(var d = a.length, e = Array(d + 2), f = 0;;) { | |
if(f < d) { | |
e[f] = a[f], f += 1 | |
}else { | |
break | |
} | |
} | |
e[d] = b; | |
e[d + 1] = c; | |
return e | |
}; | |
cljs.core.PersistentArrayMapSeq = function(a, b, c) { | |
this.arr = a; | |
this.i = b; | |
this._meta = c; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32374990 | |
}; | |
cljs.core.PersistentArrayMapSeq.cljs$lang$type = !0; | |
cljs.core.PersistentArrayMapSeq.cljs$lang$ctorStr = "cljs.core/PersistentArrayMapSeq"; | |
cljs.core.PersistentArrayMapSeq.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/PersistentArrayMapSeq") | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
return cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$INext$_next$arity$1 = function(a) { | |
return this.i < this.arr.length - 2 ? new cljs.core.PersistentArrayMapSeq(this.arr, this.i + 2, this._meta) : null | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.seq_reduce.call(null, b, a) | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.seq_reduce.call(null, b, c, a) | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return(this.arr.length - this.i) / 2 | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return cljs.core.PersistentVector.fromArray([this.arr[this.i], this.arr[this.i + 1]], !0) | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return this.i < this.arr.length - 2 ? new cljs.core.PersistentArrayMapSeq(this.arr, this.i + 2, this._meta) : cljs.core.List.EMPTY | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.PersistentArrayMapSeq(this.arr, this.i, b) | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this._meta | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this._meta) | |
}; | |
cljs.core.__GT_PersistentArrayMapSeq = function(a, b, c) { | |
return new cljs.core.PersistentArrayMapSeq(a, b, c) | |
}; | |
cljs.core.persistent_array_map_seq = function(a, b, c) { | |
return b <= a.length - 2 ? new cljs.core.PersistentArrayMapSeq(a, b, c) : null | |
}; | |
cljs.core.PersistentArrayMap = function(a, b, c, d) { | |
this.meta = a; | |
this.cnt = b; | |
this.arr = c; | |
this.__hash = d; | |
this.cljs$lang$protocol_mask$partition1$ = 4; | |
this.cljs$lang$protocol_mask$partition0$ = 16123663 | |
}; | |
cljs.core.PersistentArrayMap.cljs$lang$type = !0; | |
cljs.core.PersistentArrayMap.cljs$lang$ctorStr = "cljs.core/PersistentArrayMap"; | |
cljs.core.PersistentArrayMap.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/PersistentArrayMap") | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IEditableCollection$_as_transient$arity$1 = function(a) { | |
return new cljs.core.TransientArrayMap({}, this.arr.length, this.arr.slice()) | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_imap.call(null, a) | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$ILookup$_lookup$arity$3(a, b, null) | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
a = cljs.core.array_map_index_of.call(null, a, b); | |
return-1 === a ? c : this.arr[a + 1] | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IAssociative$_assoc$arity$3 = function(a, b, c) { | |
var d = cljs.core.array_map_index_of.call(null, a, b); | |
if(-1 === d) { | |
return this.cnt < cljs.core.PersistentArrayMap.HASHMAP_THRESHOLD ? (c = cljs.core.array_map_extend_kv.call(null, a, b, c), new cljs.core.PersistentArrayMap(this.meta, this.cnt + 1, c, null)) : cljs.core._with_meta.call(null, cljs.core._assoc.call(null, cljs.core.into.call(null, cljs.core.PersistentHashMap.EMPTY, a), b, c), this.meta) | |
} | |
if(c === this.arr[d + 1]) { | |
return a | |
} | |
a = this.arr.slice(); | |
a[d + 1] = c; | |
return new cljs.core.PersistentArrayMap(this.meta, this.cnt, a, null) | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IAssociative$_contains_key_QMARK_$arity$2 = function(a, b) { | |
return-1 !== cljs.core.array_map_index_of.call(null, a, b) | |
}; | |
cljs.core.PersistentArrayMap.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return this.cljs$core$ILookup$_lookup$arity$2(this, c); | |
case 3: | |
return this.cljs$core$ILookup$_lookup$arity$3(this, c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.PersistentArrayMap.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IKVReduce$_kv_reduce$arity$3 = function(a, b, c) { | |
a = this.arr.length; | |
for(var d = 0;;) { | |
if(d < a) { | |
c = b.call(null, c, this.arr[d], this.arr[d + 1]); | |
if(cljs.core.reduced_QMARK_.call(null, c)) { | |
return cljs.core.deref.call(null, c) | |
} | |
d += 2 | |
}else { | |
return c | |
} | |
} | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.vector_QMARK_.call(null, b) ? a.cljs$core$IAssociative$_assoc$arity$3(a, cljs.core._nth.call(null, b, 0), cljs.core._nth.call(null, b, 1)) : cljs.core.reduce.call(null, cljs.core._conj, a, b) | |
}; | |
cljs.core.PersistentArrayMap.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return cljs.core.persistent_array_map_seq.call(null, this.arr, 0, null) | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.cnt | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_map.call(null, a, b) | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.PersistentArrayMap(b, this.cnt, this.arr, this.__hash) | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core._with_meta.call(null, cljs.core.PersistentArrayMap.EMPTY, this.meta) | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IMap$_dissoc$arity$2 = function(a, b) { | |
if(0 <= cljs.core.array_map_index_of.call(null, a, b)) { | |
var c = this.arr.length, d = c - 2; | |
if(0 === d) { | |
return a.cljs$core$IEmptyableCollection$_empty$arity$1(a) | |
} | |
for(var d = Array(d), e = 0, f = 0;;) { | |
if(e >= c) { | |
return new cljs.core.PersistentArrayMap(this.meta, this.cnt - 1, d, null) | |
} | |
cljs.core._EQ_.call(null, b, this.arr[e]) || (d[f] = this.arr[e], d[f + 1] = this.arr[e + 1], f += 2); | |
e += 2 | |
} | |
}else { | |
return a | |
} | |
}; | |
cljs.core.__GT_PersistentArrayMap = function(a, b, c, d) { | |
return new cljs.core.PersistentArrayMap(a, b, c, d) | |
}; | |
cljs.core.PersistentArrayMap.EMPTY = new cljs.core.PersistentArrayMap(null, 0, [], null); | |
cljs.core.PersistentArrayMap.HASHMAP_THRESHOLD = 8; | |
cljs.core.PersistentArrayMap.fromArray = function(a, b) { | |
var c = b ? a : a.slice(); | |
return new cljs.core.PersistentArrayMap(null, c.length / 2, c, null) | |
}; | |
cljs.core.TransientArrayMap = function(a, b, c) { | |
this.editable_QMARK_ = a; | |
this.len = b; | |
this.arr = c; | |
this.cljs$lang$protocol_mask$partition1$ = 56; | |
this.cljs$lang$protocol_mask$partition0$ = 258 | |
}; | |
cljs.core.TransientArrayMap.cljs$lang$type = !0; | |
cljs.core.TransientArrayMap.cljs$lang$ctorStr = "cljs.core/TransientArrayMap"; | |
cljs.core.TransientArrayMap.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/TransientArrayMap") | |
}; | |
cljs.core.TransientArrayMap.prototype.cljs$core$ITransientMap$_dissoc_BANG_$arity$2 = function(a, b) { | |
if(cljs.core.truth_(this.editable_QMARK_)) { | |
var c = cljs.core.array_map_index_of.call(null, a, b); | |
0 <= c && (this.arr[c] = this.arr[this.len - 2], this.arr[c + 1] = this.arr[this.len - 1], c = this.arr, c.pop(), c.pop(), this.len -= 2); | |
return a | |
} | |
throw Error("dissoc! after persistent!"); | |
}; | |
cljs.core.TransientArrayMap.prototype.cljs$core$ITransientAssociative$_assoc_BANG_$arity$3 = function(a, b, c) { | |
if(cljs.core.truth_(this.editable_QMARK_)) { | |
var d = cljs.core.array_map_index_of.call(null, a, b); | |
if(-1 === d) { | |
return this.len + 2 <= 2 * cljs.core.PersistentArrayMap.HASHMAP_THRESHOLD ? (this.len += 2, this.arr.push(b), this.arr.push(c), a) : cljs.core.assoc_BANG_.call(null, cljs.core.array__GT_transient_hash_map.call(null, this.len, this.arr), b, c) | |
} | |
c !== this.arr[d + 1] && (this.arr[d + 1] = c); | |
return a | |
} | |
throw Error("assoc! after persistent!"); | |
}; | |
cljs.core.TransientArrayMap.prototype.cljs$core$ITransientCollection$_conj_BANG_$arity$2 = function(a, b) { | |
if(cljs.core.truth_(this.editable_QMARK_)) { | |
var c; | |
b ? (c = (c = b.cljs$lang$protocol_mask$partition0$ & 2048) ? c : b.cljs$core$IMapEntry$, c = c ? !0 : b.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IMapEntry, b)) : c = cljs.core.type_satisfies_.call(null, cljs.core.IMapEntry, b); | |
if(c) { | |
return a.cljs$core$ITransientAssociative$_assoc_BANG_$arity$3(a, cljs.core.key.call(null, b), cljs.core.val.call(null, b)) | |
} | |
c = cljs.core.seq.call(null, b); | |
for(var d = a;;) { | |
var e = cljs.core.first.call(null, c); | |
if(cljs.core.truth_(e)) { | |
c = cljs.core.next.call(null, c), d = d.cljs$core$ITransientAssociative$_assoc_BANG_$arity$3(d, cljs.core.key.call(null, e), cljs.core.val.call(null, e)) | |
}else { | |
return d | |
} | |
} | |
}else { | |
throw Error("conj! after persistent!"); | |
} | |
}; | |
cljs.core.TransientArrayMap.prototype.cljs$core$ITransientCollection$_persistent_BANG_$arity$1 = function(a) { | |
if(cljs.core.truth_(this.editable_QMARK_)) { | |
return this.editable_QMARK_ = !1, new cljs.core.PersistentArrayMap(null, cljs.core.quot.call(null, this.len, 2), this.arr, null) | |
} | |
throw Error("persistent! called twice"); | |
}; | |
cljs.core.TransientArrayMap.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$ILookup$_lookup$arity$3(a, b, null) | |
}; | |
cljs.core.TransientArrayMap.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
if(cljs.core.truth_(this.editable_QMARK_)) { | |
return a = cljs.core.array_map_index_of.call(null, a, b), -1 === a ? c : this.arr[a + 1] | |
} | |
throw Error("lookup after persistent!"); | |
}; | |
cljs.core.TransientArrayMap.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
if(cljs.core.truth_(this.editable_QMARK_)) { | |
return cljs.core.quot.call(null, this.len, 2) | |
} | |
throw Error("count after persistent!"); | |
}; | |
cljs.core.__GT_TransientArrayMap = function(a, b, c) { | |
return new cljs.core.TransientArrayMap(a, b, c) | |
}; | |
cljs.core.array__GT_transient_hash_map = function(a, b) { | |
for(var c = cljs.core.transient$.call(null, cljs.core.PersistentHashMap.EMPTY), d = 0;;) { | |
if(d < a) { | |
c = cljs.core.assoc_BANG_.call(null, c, b[d], b[d + 1]), d += 2 | |
}else { | |
return c | |
} | |
} | |
}; | |
cljs.core.Box = function(a) { | |
this.val = a | |
}; | |
cljs.core.Box.cljs$lang$type = !0; | |
cljs.core.Box.cljs$lang$ctorStr = "cljs.core/Box"; | |
cljs.core.Box.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/Box") | |
}; | |
cljs.core.__GT_Box = function(a) { | |
return new cljs.core.Box(a) | |
}; | |
cljs.core.key_test = function(a, b) { | |
return goog.isString(a) ? a === b : cljs.core._EQ_.call(null, a, b) | |
}; | |
cljs.core.mask = function(a, b) { | |
return a >>> b & 31 | |
}; | |
cljs.core.clone_and_set = function() { | |
var a = null, b = function(a, b, c) { | |
a = a.slice(); | |
a[b] = c; | |
return a | |
}, c = function(a, b, c, g, h) { | |
a = a.slice(); | |
a[b] = c; | |
a[g] = h; | |
return a | |
}, a = function(a, e, f, g, h) { | |
switch(arguments.length) { | |
case 3: | |
return b.call(this, a, e, f); | |
case 5: | |
return c.call(this, a, e, f, g, h) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$3 = b; | |
a.cljs$core$IFn$_invoke$arity$5 = c; | |
return a | |
}(); | |
cljs.core.remove_pair = function(a, b) { | |
var c = Array(a.length - 2); | |
cljs.core.array_copy.call(null, a, 0, c, 0, 2 * b); | |
cljs.core.array_copy.call(null, a, 2 * (b + 1), c, 2 * b, c.length - 2 * b); | |
return c | |
}; | |
cljs.core.bitmap_indexed_node_index = function(a, b) { | |
return cljs.core.bit_count.call(null, a & b - 1) | |
}; | |
cljs.core.bitpos = function(a, b) { | |
return 1 << (a >>> b & 31) | |
}; | |
cljs.core.edit_and_set = function() { | |
var a = null, b = function(a, b, c, g) { | |
a = a.ensure_editable(b); | |
a.arr[c] = g; | |
return a | |
}, c = function(a, b, c, g, h, k) { | |
a = a.ensure_editable(b); | |
a.arr[c] = g; | |
a.arr[h] = k; | |
return a | |
}, a = function(a, e, f, g, h, k) { | |
switch(arguments.length) { | |
case 4: | |
return b.call(this, a, e, f, g); | |
case 6: | |
return c.call(this, a, e, f, g, h, k) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$4 = b; | |
a.cljs$core$IFn$_invoke$arity$6 = c; | |
return a | |
}(); | |
cljs.core.inode_kv_reduce = function(a, b, c) { | |
for(var d = a.length, e = 0;;) { | |
if(e < d) { | |
var f = a[e]; | |
null != f ? c = b.call(null, c, f, a[e + 1]) : (f = a[e + 1], c = null != f ? f.kv_reduce(b, c) : c); | |
if(cljs.core.reduced_QMARK_.call(null, c)) { | |
return cljs.core.deref.call(null, c) | |
} | |
e += 2 | |
}else { | |
return c | |
} | |
} | |
}; | |
cljs.core.BitmapIndexedNode = function(a, b, c) { | |
this.edit = a; | |
this.bitmap = b; | |
this.arr = c | |
}; | |
cljs.core.BitmapIndexedNode.cljs$lang$type = !0; | |
cljs.core.BitmapIndexedNode.cljs$lang$ctorStr = "cljs.core/BitmapIndexedNode"; | |
cljs.core.BitmapIndexedNode.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/BitmapIndexedNode") | |
}; | |
cljs.core.BitmapIndexedNode.prototype.edit_and_remove_pair = function(a, b, c) { | |
if(this.bitmap === b) { | |
return null | |
} | |
a = this.ensure_editable(a); | |
var d = a.arr, e = d.length; | |
a.bitmap ^= b; | |
cljs.core.array_copy.call(null, d, 2 * (c + 1), d, 2 * c, e - 2 * (c + 1)); | |
d[e - 2] = null; | |
d[e - 1] = null; | |
return a | |
}; | |
cljs.core.BitmapIndexedNode.prototype.inode_assoc_BANG_ = function(a, b, c, d, e, f) { | |
var g = 1 << (c >>> b & 31), h = cljs.core.bitmap_indexed_node_index.call(null, this.bitmap, g); | |
if(0 === (this.bitmap & g)) { | |
var k = cljs.core.bit_count.call(null, this.bitmap); | |
if(2 * k < this.arr.length) { | |
return a = this.ensure_editable(a), b = a.arr, f.val = !0, cljs.core.array_copy_downward.call(null, b, 2 * h, b, 2 * (h + 1), 2 * (k - h)), b[2 * h] = d, b[2 * h + 1] = e, a.bitmap |= g, a | |
} | |
if(16 <= k) { | |
h = Array(32); | |
h[c >>> b & 31] = cljs.core.BitmapIndexedNode.EMPTY.inode_assoc_BANG_(a, b + 5, c, d, e, f); | |
for(e = d = 0;;) { | |
if(32 > d) { | |
0 !== (this.bitmap >>> d & 1) && (h[d] = null != this.arr[e] ? cljs.core.BitmapIndexedNode.EMPTY.inode_assoc_BANG_(a, b + 5, cljs.core.hash.call(null, this.arr[e]), this.arr[e], this.arr[e + 1], f) : this.arr[e + 1], e += 2), d += 1 | |
}else { | |
break | |
} | |
} | |
return new cljs.core.ArrayNode(a, k + 1, h) | |
} | |
b = Array(2 * (k + 4)); | |
cljs.core.array_copy.call(null, this.arr, 0, b, 0, 2 * h); | |
b[2 * h] = d; | |
b[2 * h + 1] = e; | |
cljs.core.array_copy.call(null, this.arr, 2 * h, b, 2 * (h + 1), 2 * (k - h)); | |
f.val = !0; | |
a = this.ensure_editable(a); | |
a.arr = b; | |
a.bitmap |= g; | |
return a | |
} | |
k = this.arr[2 * h]; | |
g = this.arr[2 * h + 1]; | |
if(null == k) { | |
return k = g.inode_assoc_BANG_(a, b + 5, c, d, e, f), k === g ? this : cljs.core.edit_and_set.call(null, this, a, 2 * h + 1, k) | |
} | |
if(cljs.core.key_test.call(null, d, k)) { | |
return e === g ? this : cljs.core.edit_and_set.call(null, this, a, 2 * h + 1, e) | |
} | |
f.val = !0; | |
return cljs.core.edit_and_set.call(null, this, a, 2 * h, null, 2 * h + 1, cljs.core.create_node.call(null, a, b + 5, k, g, c, d, e)) | |
}; | |
cljs.core.BitmapIndexedNode.prototype.inode_seq = function() { | |
return cljs.core.create_inode_seq.call(null, this.arr) | |
}; | |
cljs.core.BitmapIndexedNode.prototype.inode_without_BANG_ = function(a, b, c, d, e) { | |
var f = 1 << (c >>> b & 31); | |
if(0 === (this.bitmap & f)) { | |
return this | |
} | |
var g = cljs.core.bitmap_indexed_node_index.call(null, this.bitmap, f), h = this.arr[2 * g], k = this.arr[2 * g + 1]; | |
return null == h ? (b = k.inode_without_BANG_(a, b + 5, c, d, e), b === k ? this : null != b ? cljs.core.edit_and_set.call(null, this, a, 2 * g + 1, b) : this.bitmap === f ? null : this.edit_and_remove_pair(a, f, g)) : cljs.core.key_test.call(null, d, h) ? (e[0] = !0, this.edit_and_remove_pair(a, f, g)) : this | |
}; | |
cljs.core.BitmapIndexedNode.prototype.ensure_editable = function(a) { | |
if(a === this.edit) { | |
return this | |
} | |
var b = cljs.core.bit_count.call(null, this.bitmap), c = Array(0 > b ? 4 : 2 * (b + 1)); | |
cljs.core.array_copy.call(null, this.arr, 0, c, 0, 2 * b); | |
return new cljs.core.BitmapIndexedNode(a, this.bitmap, c) | |
}; | |
cljs.core.BitmapIndexedNode.prototype.kv_reduce = function(a, b) { | |
return cljs.core.inode_kv_reduce.call(null, this.arr, a, b) | |
}; | |
cljs.core.BitmapIndexedNode.prototype.inode_find = function(a, b, c, d) { | |
var e = 1 << (b >>> a & 31); | |
if(0 === (this.bitmap & e)) { | |
return d | |
} | |
var f = cljs.core.bitmap_indexed_node_index.call(null, this.bitmap, e), e = this.arr[2 * f], f = this.arr[2 * f + 1]; | |
return null == e ? f.inode_find(a + 5, b, c, d) : cljs.core.key_test.call(null, c, e) ? cljs.core.PersistentVector.fromArray([e, f], !0) : d | |
}; | |
cljs.core.BitmapIndexedNode.prototype.inode_without = function(a, b, c) { | |
var d = 1 << (b >>> a & 31); | |
if(0 === (this.bitmap & d)) { | |
return this | |
} | |
var e = cljs.core.bitmap_indexed_node_index.call(null, this.bitmap, d), f = this.arr[2 * e], g = this.arr[2 * e + 1]; | |
return null == f ? (a = g.inode_without(a + 5, b, c), a === g ? this : null != a ? new cljs.core.BitmapIndexedNode(null, this.bitmap, cljs.core.clone_and_set.call(null, this.arr, 2 * e + 1, a)) : this.bitmap === d ? null : new cljs.core.BitmapIndexedNode(null, this.bitmap ^ d, cljs.core.remove_pair.call(null, this.arr, e))) : cljs.core.key_test.call(null, c, f) ? new cljs.core.BitmapIndexedNode(null, this.bitmap ^ d, cljs.core.remove_pair.call(null, this.arr, e)) : this | |
}; | |
cljs.core.BitmapIndexedNode.prototype.inode_assoc = function(a, b, c, d, e) { | |
var f = 1 << (b >>> a & 31), g = cljs.core.bitmap_indexed_node_index.call(null, this.bitmap, f); | |
if(0 === (this.bitmap & f)) { | |
var h = cljs.core.bit_count.call(null, this.bitmap); | |
if(16 <= h) { | |
g = Array(32); | |
g[b >>> a & 31] = cljs.core.BitmapIndexedNode.EMPTY.inode_assoc(a + 5, b, c, d, e); | |
for(d = c = 0;;) { | |
if(32 > c) { | |
0 !== (this.bitmap >>> c & 1) && (g[c] = null != this.arr[d] ? cljs.core.BitmapIndexedNode.EMPTY.inode_assoc(a + 5, cljs.core.hash.call(null, this.arr[d]), this.arr[d], this.arr[d + 1], e) : this.arr[d + 1], d += 2), c += 1 | |
}else { | |
break | |
} | |
} | |
return new cljs.core.ArrayNode(null, h + 1, g) | |
} | |
a = Array(2 * (h + 1)); | |
cljs.core.array_copy.call(null, this.arr, 0, a, 0, 2 * g); | |
a[2 * g] = c; | |
a[2 * g + 1] = d; | |
cljs.core.array_copy.call(null, this.arr, 2 * g, a, 2 * (g + 1), 2 * (h - g)); | |
e.val = !0; | |
return new cljs.core.BitmapIndexedNode(null, this.bitmap | f, a) | |
} | |
h = this.arr[2 * g]; | |
f = this.arr[2 * g + 1]; | |
if(null == h) { | |
return h = f.inode_assoc(a + 5, b, c, d, e), h === f ? this : new cljs.core.BitmapIndexedNode(null, this.bitmap, cljs.core.clone_and_set.call(null, this.arr, 2 * g + 1, h)) | |
} | |
if(cljs.core.key_test.call(null, c, h)) { | |
return d === f ? this : new cljs.core.BitmapIndexedNode(null, this.bitmap, cljs.core.clone_and_set.call(null, this.arr, 2 * g + 1, d)) | |
} | |
e.val = !0; | |
return new cljs.core.BitmapIndexedNode(null, this.bitmap, cljs.core.clone_and_set.call(null, this.arr, 2 * g, null, 2 * g + 1, cljs.core.create_node.call(null, a + 5, h, f, b, c, d))) | |
}; | |
cljs.core.BitmapIndexedNode.prototype.inode_lookup = function(a, b, c, d) { | |
var e = 1 << (b >>> a & 31); | |
if(0 === (this.bitmap & e)) { | |
return d | |
} | |
var f = cljs.core.bitmap_indexed_node_index.call(null, this.bitmap, e), e = this.arr[2 * f], f = this.arr[2 * f + 1]; | |
return null == e ? f.inode_lookup(a + 5, b, c, d) : cljs.core.key_test.call(null, c, e) ? f : d | |
}; | |
cljs.core.__GT_BitmapIndexedNode = function(a, b, c) { | |
return new cljs.core.BitmapIndexedNode(a, b, c) | |
}; | |
cljs.core.BitmapIndexedNode.EMPTY = new cljs.core.BitmapIndexedNode(null, 0, []); | |
cljs.core.pack_array_node = function(a, b, c) { | |
var d = a.arr; | |
a = 2 * (a.cnt - 1); | |
for(var e = Array(a), f = 0, g = 1, h = 0;;) { | |
if(f < a) { | |
var k; | |
k = (k = f !== c) ? null != d[f] : k; | |
k && (e[g] = d[f], g += 2, h |= 1 << f); | |
f += 1 | |
}else { | |
return new cljs.core.BitmapIndexedNode(b, h, e) | |
} | |
} | |
}; | |
cljs.core.ArrayNode = function(a, b, c) { | |
this.edit = a; | |
this.cnt = b; | |
this.arr = c | |
}; | |
cljs.core.ArrayNode.cljs$lang$type = !0; | |
cljs.core.ArrayNode.cljs$lang$ctorStr = "cljs.core/ArrayNode"; | |
cljs.core.ArrayNode.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/ArrayNode") | |
}; | |
cljs.core.ArrayNode.prototype.inode_assoc_BANG_ = function(a, b, c, d, e, f) { | |
var g = c >>> b & 31, h = this.arr[g]; | |
if(null == h) { | |
return a = cljs.core.edit_and_set.call(null, this, a, g, cljs.core.BitmapIndexedNode.EMPTY.inode_assoc_BANG_(a, b + 5, c, d, e, f)), a.cnt += 1, a | |
} | |
b = h.inode_assoc_BANG_(a, b + 5, c, d, e, f); | |
return b === h ? this : cljs.core.edit_and_set.call(null, this, a, g, b) | |
}; | |
cljs.core.ArrayNode.prototype.inode_seq = function() { | |
return cljs.core.create_array_node_seq.call(null, this.arr) | |
}; | |
cljs.core.ArrayNode.prototype.inode_without_BANG_ = function(a, b, c, d, e) { | |
var f = c >>> b & 31, g = this.arr[f]; | |
if(null == g) { | |
return this | |
} | |
b = g.inode_without_BANG_(a, b + 5, c, d, e); | |
if(b === g) { | |
return this | |
} | |
if(null == b) { | |
if(8 >= this.cnt) { | |
return cljs.core.pack_array_node.call(null, this, a, f) | |
} | |
a = cljs.core.edit_and_set.call(null, this, a, f, b); | |
a.cnt -= 1; | |
return a | |
} | |
return cljs.core.edit_and_set.call(null, this, a, f, b) | |
}; | |
cljs.core.ArrayNode.prototype.ensure_editable = function(a) { | |
return a === this.edit ? this : new cljs.core.ArrayNode(a, this.cnt, this.arr.slice()) | |
}; | |
cljs.core.ArrayNode.prototype.kv_reduce = function(a, b) { | |
for(var c = this.arr.length, d = 0, e = b;;) { | |
if(d < c) { | |
var f = this.arr[d]; | |
if(null != f && (e = f.kv_reduce(a, e), cljs.core.reduced_QMARK_.call(null, e))) { | |
return cljs.core.deref.call(null, e) | |
} | |
d += 1 | |
}else { | |
return e | |
} | |
} | |
}; | |
cljs.core.ArrayNode.prototype.inode_find = function(a, b, c, d) { | |
var e = this.arr[b >>> a & 31]; | |
return null != e ? e.inode_find(a + 5, b, c, d) : d | |
}; | |
cljs.core.ArrayNode.prototype.inode_without = function(a, b, c) { | |
var d = b >>> a & 31, e = this.arr[d]; | |
return null != e ? (a = e.inode_without(a + 5, b, c), a === e ? this : null == a ? 8 >= this.cnt ? cljs.core.pack_array_node.call(null, this, null, d) : new cljs.core.ArrayNode(null, this.cnt - 1, cljs.core.clone_and_set.call(null, this.arr, d, a)) : new cljs.core.ArrayNode(null, this.cnt, cljs.core.clone_and_set.call(null, this.arr, d, a))) : this | |
}; | |
cljs.core.ArrayNode.prototype.inode_assoc = function(a, b, c, d, e) { | |
var f = b >>> a & 31, g = this.arr[f]; | |
if(null == g) { | |
return new cljs.core.ArrayNode(null, this.cnt + 1, cljs.core.clone_and_set.call(null, this.arr, f, cljs.core.BitmapIndexedNode.EMPTY.inode_assoc(a + 5, b, c, d, e))) | |
} | |
a = g.inode_assoc(a + 5, b, c, d, e); | |
return a === g ? this : new cljs.core.ArrayNode(null, this.cnt, cljs.core.clone_and_set.call(null, this.arr, f, a)) | |
}; | |
cljs.core.ArrayNode.prototype.inode_lookup = function(a, b, c, d) { | |
var e = this.arr[b >>> a & 31]; | |
return null != e ? e.inode_lookup(a + 5, b, c, d) : d | |
}; | |
cljs.core.__GT_ArrayNode = function(a, b, c) { | |
return new cljs.core.ArrayNode(a, b, c) | |
}; | |
cljs.core.hash_collision_node_find_index = function(a, b, c) { | |
b *= 2; | |
for(var d = 0;;) { | |
if(d < b) { | |
if(cljs.core.key_test.call(null, c, a[d])) { | |
return d | |
} | |
d += 2 | |
}else { | |
return-1 | |
} | |
} | |
}; | |
cljs.core.HashCollisionNode = function(a, b, c, d) { | |
this.edit = a; | |
this.collision_hash = b; | |
this.cnt = c; | |
this.arr = d | |
}; | |
cljs.core.HashCollisionNode.cljs$lang$type = !0; | |
cljs.core.HashCollisionNode.cljs$lang$ctorStr = "cljs.core/HashCollisionNode"; | |
cljs.core.HashCollisionNode.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/HashCollisionNode") | |
}; | |
cljs.core.HashCollisionNode.prototype.inode_assoc_BANG_ = function(a, b, c, d, e, f) { | |
if(c === this.collision_hash) { | |
b = cljs.core.hash_collision_node_find_index.call(null, this.arr, this.cnt, d); | |
if(-1 === b) { | |
if(this.arr.length > 2 * this.cnt) { | |
return a = cljs.core.edit_and_set.call(null, this, a, 2 * this.cnt, d, 2 * this.cnt + 1, e), f.val = !0, a.cnt += 1, a | |
} | |
b = this.arr.length; | |
c = Array(b + 2); | |
cljs.core.array_copy.call(null, this.arr, 0, c, 0, b); | |
c[b] = d; | |
c[b + 1] = e; | |
f.val = !0; | |
return this.ensure_editable_array(a, this.cnt + 1, c) | |
} | |
return this.arr[b + 1] === e ? this : cljs.core.edit_and_set.call(null, this, a, b + 1, e) | |
} | |
return(new cljs.core.BitmapIndexedNode(a, 1 << (this.collision_hash >>> b & 31), [null, this, null, null])).inode_assoc_BANG_(a, b, c, d, e, f) | |
}; | |
cljs.core.HashCollisionNode.prototype.inode_seq = function() { | |
return cljs.core.create_inode_seq.call(null, this.arr) | |
}; | |
cljs.core.HashCollisionNode.prototype.inode_without_BANG_ = function(a, b, c, d, e) { | |
b = cljs.core.hash_collision_node_find_index.call(null, this.arr, this.cnt, d); | |
if(-1 === b) { | |
return this | |
} | |
e[0] = !0; | |
if(1 === this.cnt) { | |
return null | |
} | |
a = this.ensure_editable(a); | |
e = a.arr; | |
e[b] = e[2 * this.cnt - 2]; | |
e[b + 1] = e[2 * this.cnt - 1]; | |
e[2 * this.cnt - 1] = null; | |
e[2 * this.cnt - 2] = null; | |
a.cnt -= 1; | |
return a | |
}; | |
cljs.core.HashCollisionNode.prototype.ensure_editable = function(a) { | |
if(a === this.edit) { | |
return this | |
} | |
var b = Array(2 * (this.cnt + 1)); | |
cljs.core.array_copy.call(null, this.arr, 0, b, 0, 2 * this.cnt); | |
return new cljs.core.HashCollisionNode(a, this.collision_hash, this.cnt, b) | |
}; | |
cljs.core.HashCollisionNode.prototype.kv_reduce = function(a, b) { | |
return cljs.core.inode_kv_reduce.call(null, this.arr, a, b) | |
}; | |
cljs.core.HashCollisionNode.prototype.inode_find = function(a, b, c, d) { | |
a = cljs.core.hash_collision_node_find_index.call(null, this.arr, this.cnt, c); | |
return 0 > a ? d : cljs.core.key_test.call(null, c, this.arr[a]) ? cljs.core.PersistentVector.fromArray([this.arr[a], this.arr[a + 1]], !0) : d | |
}; | |
cljs.core.HashCollisionNode.prototype.inode_without = function(a, b, c) { | |
a = cljs.core.hash_collision_node_find_index.call(null, this.arr, this.cnt, c); | |
return-1 === a ? this : 1 === this.cnt ? null : new cljs.core.HashCollisionNode(null, this.collision_hash, this.cnt - 1, cljs.core.remove_pair.call(null, this.arr, cljs.core.quot.call(null, a, 2))) | |
}; | |
cljs.core.HashCollisionNode.prototype.inode_assoc = function(a, b, c, d, e) { | |
return b === this.collision_hash ? (a = cljs.core.hash_collision_node_find_index.call(null, this.arr, this.cnt, c), -1 === a ? (a = this.arr.length, b = Array(a + 2), cljs.core.array_copy.call(null, this.arr, 0, b, 0, a), b[a] = c, b[a + 1] = d, e.val = !0, new cljs.core.HashCollisionNode(null, this.collision_hash, this.cnt + 1, b)) : cljs.core._EQ_.call(null, this.arr[a], d) ? this : new cljs.core.HashCollisionNode(null, this.collision_hash, this.cnt, cljs.core.clone_and_set.call(null, this.arr, | |
a + 1, d))) : (new cljs.core.BitmapIndexedNode(null, 1 << (this.collision_hash >>> a & 31), [null, this])).inode_assoc(a, b, c, d, e) | |
}; | |
cljs.core.HashCollisionNode.prototype.inode_lookup = function(a, b, c, d) { | |
a = cljs.core.hash_collision_node_find_index.call(null, this.arr, this.cnt, c); | |
return 0 > a ? d : cljs.core.key_test.call(null, c, this.arr[a]) ? this.arr[a + 1] : d | |
}; | |
cljs.core.HashCollisionNode.prototype.ensure_editable_array = function(a, b, c) { | |
return a === this.edit ? (this.arr = c, this.cnt = b, this) : new cljs.core.HashCollisionNode(this.edit, this.collision_hash, b, c) | |
}; | |
cljs.core.__GT_HashCollisionNode = function(a, b, c, d) { | |
return new cljs.core.HashCollisionNode(a, b, c, d) | |
}; | |
cljs.core.create_node = function() { | |
var a = null, b = function(a, b, c, g, h, k) { | |
var l = cljs.core.hash.call(null, b); | |
if(l === g) { | |
return new cljs.core.HashCollisionNode(null, l, 2, [b, c, h, k]) | |
} | |
var m = new cljs.core.Box(!1); | |
return cljs.core.BitmapIndexedNode.EMPTY.inode_assoc(a, l, b, c, m).inode_assoc(a, g, h, k, m) | |
}, c = function(a, b, c, g, h, k, l) { | |
var m = cljs.core.hash.call(null, c); | |
if(m === h) { | |
return new cljs.core.HashCollisionNode(null, m, 2, [c, g, k, l]) | |
} | |
var n = new cljs.core.Box(!1); | |
return cljs.core.BitmapIndexedNode.EMPTY.inode_assoc_BANG_(a, b, m, c, g, n).inode_assoc_BANG_(a, b, h, k, l, n) | |
}, a = function(a, e, f, g, h, k, l) { | |
switch(arguments.length) { | |
case 6: | |
return b.call(this, a, e, f, g, h, k); | |
case 7: | |
return c.call(this, a, e, f, g, h, k, l) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$6 = b; | |
a.cljs$core$IFn$_invoke$arity$7 = c; | |
return a | |
}(); | |
cljs.core.NodeSeq = function(a, b, c, d, e) { | |
this.meta = a; | |
this.nodes = b; | |
this.i = c; | |
this.s = d; | |
this.__hash = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32374860 | |
}; | |
cljs.core.NodeSeq.cljs$lang$type = !0; | |
cljs.core.NodeSeq.cljs$lang$ctorStr = "cljs.core/NodeSeq"; | |
cljs.core.NodeSeq.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/NodeSeq") | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.NodeSeq.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.seq_reduce.call(null, b, a) | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.seq_reduce.call(null, b, c, a) | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return null == this.s ? cljs.core.PersistentVector.fromArray([this.nodes[this.i], this.nodes[this.i + 1]], !0) : cljs.core.first.call(null, this.s) | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return null == this.s ? cljs.core.create_inode_seq.call(null, this.nodes, this.i + 2, null) : cljs.core.create_inode_seq.call(null, this.nodes, this.i, cljs.core.next.call(null, this.s)) | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.NodeSeq(b, this.nodes, this.i, this.s, this.__hash) | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_NodeSeq = function(a, b, c, d, e) { | |
return new cljs.core.NodeSeq(a, b, c, d, e) | |
}; | |
cljs.core.create_inode_seq = function() { | |
var a = null, b = function(b) { | |
return a.call(null, b, 0, null) | |
}, c = function(a, b, c) { | |
if(null == c) { | |
for(c = a.length;;) { | |
if(b < c) { | |
if(null != a[b]) { | |
return new cljs.core.NodeSeq(null, a, b, null, null) | |
} | |
var g = a[b + 1]; | |
if(cljs.core.truth_(g) && (g = g.inode_seq(), cljs.core.truth_(g))) { | |
return new cljs.core.NodeSeq(null, a, b + 2, g, null) | |
} | |
b += 2 | |
}else { | |
return null | |
} | |
} | |
}else { | |
return new cljs.core.NodeSeq(null, a, b, c, null) | |
} | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.ArrayNodeSeq = function(a, b, c, d, e) { | |
this.meta = a; | |
this.nodes = b; | |
this.i = c; | |
this.s = d; | |
this.__hash = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32374860 | |
}; | |
cljs.core.ArrayNodeSeq.cljs$lang$type = !0; | |
cljs.core.ArrayNodeSeq.cljs$lang$ctorStr = "cljs.core/ArrayNodeSeq"; | |
cljs.core.ArrayNodeSeq.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/ArrayNodeSeq") | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.ArrayNodeSeq.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.seq_reduce.call(null, b, a) | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.seq_reduce.call(null, b, c, a) | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return cljs.core.first.call(null, this.s) | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return cljs.core.create_array_node_seq.call(null, null, this.nodes, this.i, cljs.core.next.call(null, this.s)) | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.ArrayNodeSeq(b, this.nodes, this.i, this.s, this.__hash) | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_ArrayNodeSeq = function(a, b, c, d, e) { | |
return new cljs.core.ArrayNodeSeq(a, b, c, d, e) | |
}; | |
cljs.core.create_array_node_seq = function() { | |
var a = null, b = function(b) { | |
return a.call(null, null, b, 0, null) | |
}, c = function(a, b, c, g) { | |
if(null == g) { | |
for(g = b.length;;) { | |
if(c < g) { | |
var h = b[c]; | |
if(cljs.core.truth_(h) && (h = h.inode_seq(), cljs.core.truth_(h))) { | |
return new cljs.core.ArrayNodeSeq(a, b, c + 1, h, null) | |
} | |
c += 1 | |
}else { | |
return null | |
} | |
} | |
}else { | |
return new cljs.core.ArrayNodeSeq(a, b, c, g, null) | |
} | |
}, a = function(a, e, f, g) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 4: | |
return c.call(this, a, e, f, g) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$4 = c; | |
return a | |
}(); | |
cljs.core.PersistentHashMap = function(a, b, c, d, e, f) { | |
this.meta = a; | |
this.cnt = b; | |
this.root = c; | |
this.has_nil_QMARK_ = d; | |
this.nil_val = e; | |
this.__hash = f; | |
this.cljs$lang$protocol_mask$partition1$ = 4; | |
this.cljs$lang$protocol_mask$partition0$ = 16123663 | |
}; | |
cljs.core.PersistentHashMap.cljs$lang$type = !0; | |
cljs.core.PersistentHashMap.cljs$lang$ctorStr = "cljs.core/PersistentHashMap"; | |
cljs.core.PersistentHashMap.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/PersistentHashMap") | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IEditableCollection$_as_transient$arity$1 = function(a) { | |
return new cljs.core.TransientHashMap({}, this.root, this.cnt, this.has_nil_QMARK_, this.nil_val) | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_imap.call(null, a) | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$ILookup$_lookup$arity$3(a, b, null) | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
return null == b ? this.has_nil_QMARK_ ? this.nil_val : c : null == this.root ? c : this.root.inode_lookup(0, cljs.core.hash.call(null, b), b, c) | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IAssociative$_assoc$arity$3 = function(a, b, c) { | |
if(null == b) { | |
var d; | |
d = (d = this.has_nil_QMARK_) ? c === this.nil_val : d; | |
return d ? a : new cljs.core.PersistentHashMap(this.meta, this.has_nil_QMARK_ ? this.cnt : this.cnt + 1, this.root, !0, c, null) | |
} | |
d = new cljs.core.Box(!1); | |
c = (null == this.root ? cljs.core.BitmapIndexedNode.EMPTY : this.root).inode_assoc(0, cljs.core.hash.call(null, b), b, c, d); | |
return c === this.root ? a : new cljs.core.PersistentHashMap(this.meta, d.val ? this.cnt + 1 : this.cnt, c, this.has_nil_QMARK_, this.nil_val, null) | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IAssociative$_contains_key_QMARK_$arity$2 = function(a, b) { | |
return null == b ? this.has_nil_QMARK_ : null == this.root ? !1 : this.root.inode_lookup(0, cljs.core.hash.call(null, b), b, cljs.core.lookup_sentinel) !== cljs.core.lookup_sentinel | |
}; | |
cljs.core.PersistentHashMap.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return this.cljs$core$ILookup$_lookup$arity$2(this, c); | |
case 3: | |
return this.cljs$core$ILookup$_lookup$arity$3(this, c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.PersistentHashMap.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IKVReduce$_kv_reduce$arity$3 = function(a, b, c) { | |
a = this.has_nil_QMARK_ ? b.call(null, c, null, this.nil_val) : c; | |
return cljs.core.reduced_QMARK_.call(null, a) ? cljs.core.deref.call(null, a) : null != this.root ? this.root.kv_reduce(b, a) : a | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.vector_QMARK_.call(null, b) ? a.cljs$core$IAssociative$_assoc$arity$3(a, cljs.core._nth.call(null, b, 0), cljs.core._nth.call(null, b, 1)) : cljs.core.reduce.call(null, cljs.core._conj, a, b) | |
}; | |
cljs.core.PersistentHashMap.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return 0 < this.cnt ? (a = null != this.root ? this.root.inode_seq() : null, this.has_nil_QMARK_ ? cljs.core.cons.call(null, cljs.core.PersistentVector.fromArray([null, this.nil_val], !0), a) : a) : null | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.cnt | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_map.call(null, a, b) | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.PersistentHashMap(b, this.cnt, this.root, this.has_nil_QMARK_, this.nil_val, this.__hash) | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core._with_meta.call(null, cljs.core.PersistentHashMap.EMPTY, this.meta) | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IMap$_dissoc$arity$2 = function(a, b) { | |
if(null == b) { | |
return this.has_nil_QMARK_ ? new cljs.core.PersistentHashMap(this.meta, this.cnt - 1, this.root, !1, null, null) : a | |
} | |
if(null == this.root) { | |
return a | |
} | |
var c = this.root.inode_without(0, cljs.core.hash.call(null, b), b); | |
return c === this.root ? a : new cljs.core.PersistentHashMap(this.meta, this.cnt - 1, c, this.has_nil_QMARK_, this.nil_val, null) | |
}; | |
cljs.core.__GT_PersistentHashMap = function(a, b, c, d, e, f) { | |
return new cljs.core.PersistentHashMap(a, b, c, d, e, f) | |
}; | |
cljs.core.PersistentHashMap.EMPTY = new cljs.core.PersistentHashMap(null, 0, null, !1, null, 0); | |
cljs.core.PersistentHashMap.fromArrays = function(a, b) { | |
for(var c = a.length, d = 0, e = cljs.core.transient$.call(null, cljs.core.PersistentHashMap.EMPTY);;) { | |
if(d < c) { | |
var f = d + 1, e = cljs.core.assoc_BANG_.call(null, e, a[d], b[d]), d = f | |
}else { | |
return cljs.core.persistent_BANG_.call(null, e) | |
} | |
} | |
}; | |
cljs.core.TransientHashMap = function(a, b, c, d, e) { | |
this.edit = a; | |
this.root = b; | |
this.count = c; | |
this.has_nil_QMARK_ = d; | |
this.nil_val = e; | |
this.cljs$lang$protocol_mask$partition1$ = 56; | |
this.cljs$lang$protocol_mask$partition0$ = 258 | |
}; | |
cljs.core.TransientHashMap.cljs$lang$type = !0; | |
cljs.core.TransientHashMap.cljs$lang$ctorStr = "cljs.core/TransientHashMap"; | |
cljs.core.TransientHashMap.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/TransientHashMap") | |
}; | |
cljs.core.TransientHashMap.prototype.cljs$core$ITransientMap$_dissoc_BANG_$arity$2 = function(a, b) { | |
return a.without_BANG_(b) | |
}; | |
cljs.core.TransientHashMap.prototype.cljs$core$ITransientAssociative$_assoc_BANG_$arity$3 = function(a, b, c) { | |
return a.assoc_BANG_(b, c) | |
}; | |
cljs.core.TransientHashMap.prototype.cljs$core$ITransientCollection$_conj_BANG_$arity$2 = function(a, b) { | |
return a.conj_BANG_(b) | |
}; | |
cljs.core.TransientHashMap.prototype.cljs$core$ITransientCollection$_persistent_BANG_$arity$1 = function(a) { | |
return a.persistent_BANG_() | |
}; | |
cljs.core.TransientHashMap.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return null == b ? this.has_nil_QMARK_ ? this.nil_val : null : null == this.root ? null : this.root.inode_lookup(0, cljs.core.hash.call(null, b), b) | |
}; | |
cljs.core.TransientHashMap.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
return null == b ? this.has_nil_QMARK_ ? this.nil_val : c : null == this.root ? c : this.root.inode_lookup(0, cljs.core.hash.call(null, b), b, c) | |
}; | |
cljs.core.TransientHashMap.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
if(this.edit) { | |
return this.count | |
} | |
throw Error("count after persistent!"); | |
}; | |
cljs.core.TransientHashMap.prototype.conj_BANG_ = function(a) { | |
if(this.edit) { | |
var b; | |
a ? (b = (b = a.cljs$lang$protocol_mask$partition0$ & 2048) ? b : a.cljs$core$IMapEntry$, b = b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IMapEntry, a)) : b = cljs.core.type_satisfies_.call(null, cljs.core.IMapEntry, a); | |
if(b) { | |
return this.assoc_BANG_(cljs.core.key.call(null, a), cljs.core.val.call(null, a)) | |
} | |
a = cljs.core.seq.call(null, a); | |
for(b = this;;) { | |
var c = cljs.core.first.call(null, a); | |
if(cljs.core.truth_(c)) { | |
a = cljs.core.next.call(null, a), b = b.assoc_BANG_(cljs.core.key.call(null, c), cljs.core.val.call(null, c)) | |
}else { | |
return b | |
} | |
} | |
}else { | |
throw Error("conj! after persistent"); | |
} | |
}; | |
cljs.core.TransientHashMap.prototype.assoc_BANG_ = function(a, b) { | |
if(this.edit) { | |
if(null == a) { | |
this.nil_val !== b && (this.nil_val = b), this.has_nil_QMARK_ || (this.count += 1, this.has_nil_QMARK_ = !0) | |
}else { | |
var c = new cljs.core.Box(!1), d = (null == this.root ? cljs.core.BitmapIndexedNode.EMPTY : this.root).inode_assoc_BANG_(this.edit, 0, cljs.core.hash.call(null, a), a, b, c); | |
d !== this.root && (this.root = d); | |
c.val && (this.count += 1) | |
} | |
return this | |
} | |
throw Error("assoc! after persistent!"); | |
}; | |
cljs.core.TransientHashMap.prototype.without_BANG_ = function(a) { | |
if(this.edit) { | |
if(null == a) { | |
this.has_nil_QMARK_ && (this.has_nil_QMARK_ = !1, this.nil_val = null, this.count -= 1) | |
}else { | |
if(null != this.root) { | |
var b = new cljs.core.Box(!1); | |
a = this.root.inode_without_BANG_(this.edit, 0, cljs.core.hash.call(null, a), a, b); | |
a !== this.root && (this.root = a); | |
cljs.core.truth_(b[0]) && (this.count -= 1) | |
} | |
} | |
return this | |
} | |
throw Error("dissoc! after persistent!"); | |
}; | |
cljs.core.TransientHashMap.prototype.persistent_BANG_ = function() { | |
if(this.edit) { | |
return this.edit = null, new cljs.core.PersistentHashMap(null, this.count, this.root, this.has_nil_QMARK_, this.nil_val, null) | |
} | |
throw Error("persistent! called twice"); | |
}; | |
cljs.core.__GT_TransientHashMap = function(a, b, c, d, e) { | |
return new cljs.core.TransientHashMap(a, b, c, d, e) | |
}; | |
cljs.core.tree_map_seq_push = function(a, b, c) { | |
for(var d = b;;) { | |
if(null != a) { | |
b = c ? a.left : a.right, d = cljs.core.conj.call(null, d, a), a = b | |
}else { | |
return d | |
} | |
} | |
}; | |
cljs.core.PersistentTreeMapSeq = function(a, b, c, d, e) { | |
this.meta = a; | |
this.stack = b; | |
this.ascending_QMARK_ = c; | |
this.cnt = d; | |
this.__hash = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32374862 | |
}; | |
cljs.core.PersistentTreeMapSeq.cljs$lang$type = !0; | |
cljs.core.PersistentTreeMapSeq.cljs$lang$ctorStr = "cljs.core/PersistentTreeMapSeq"; | |
cljs.core.PersistentTreeMapSeq.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/PersistentTreeMapSeq") | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.seq_reduce.call(null, b, a) | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.seq_reduce.call(null, b, c, a) | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return 0 > this.cnt ? cljs.core.count.call(null, cljs.core.next.call(null, a)) + 1 : this.cnt | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return cljs.core.peek.call(null, this.stack) | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
a = cljs.core.first.call(null, this.stack); | |
a = cljs.core.tree_map_seq_push.call(null, this.ascending_QMARK_ ? a.right : a.left, cljs.core.next.call(null, this.stack), this.ascending_QMARK_); | |
return null != a ? new cljs.core.PersistentTreeMapSeq(null, a, this.ascending_QMARK_, this.cnt - 1, null) : cljs.core.List.EMPTY | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.PersistentTreeMapSeq(b, this.stack, this.ascending_QMARK_, this.cnt, this.__hash) | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_PersistentTreeMapSeq = function(a, b, c, d, e) { | |
return new cljs.core.PersistentTreeMapSeq(a, b, c, d, e) | |
}; | |
cljs.core.create_tree_map_seq = function(a, b, c) { | |
return new cljs.core.PersistentTreeMapSeq(null, cljs.core.tree_map_seq_push.call(null, a, null, b), b, c, null) | |
}; | |
cljs.core.balance_left = function(a, b, c, d) { | |
return c instanceof cljs.core.RedNode ? c.left instanceof cljs.core.RedNode ? new cljs.core.RedNode(c.key, c.val, c.left.blacken(), new cljs.core.BlackNode(a, b, c.right, d, null), null) : c.right instanceof cljs.core.RedNode ? new cljs.core.RedNode(c.right.key, c.right.val, new cljs.core.BlackNode(c.key, c.val, c.left, c.right.left, null), new cljs.core.BlackNode(a, b, c.right.right, d, null), null) : new cljs.core.BlackNode(a, b, c, d, null) : new cljs.core.BlackNode(a, b, c, d, null) | |
}; | |
cljs.core.balance_right = function(a, b, c, d) { | |
return d instanceof cljs.core.RedNode ? d.right instanceof cljs.core.RedNode ? new cljs.core.RedNode(d.key, d.val, new cljs.core.BlackNode(a, b, c, d.left, null), d.right.blacken(), null) : d.left instanceof cljs.core.RedNode ? new cljs.core.RedNode(d.left.key, d.left.val, new cljs.core.BlackNode(a, b, c, d.left.left, null), new cljs.core.BlackNode(d.key, d.val, d.left.right, d.right, null), null) : new cljs.core.BlackNode(a, b, c, d, null) : new cljs.core.BlackNode(a, b, c, d, null) | |
}; | |
cljs.core.balance_left_del = function(a, b, c, d) { | |
if(c instanceof cljs.core.RedNode) { | |
return new cljs.core.RedNode(a, b, c.blacken(), d, null) | |
} | |
if(d instanceof cljs.core.BlackNode) { | |
return cljs.core.balance_right.call(null, a, b, c, d.redden()) | |
} | |
var e; | |
e = (e = d instanceof cljs.core.RedNode) ? d.left instanceof cljs.core.BlackNode : e; | |
if(e) { | |
return new cljs.core.RedNode(d.left.key, d.left.val, new cljs.core.BlackNode(a, b, c, d.left.left, null), cljs.core.balance_right.call(null, d.key, d.val, d.left.right, d.right.redden()), null) | |
} | |
throw Error("red-black tree invariant violation"); | |
}; | |
cljs.core.balance_right_del = function(a, b, c, d) { | |
if(d instanceof cljs.core.RedNode) { | |
return new cljs.core.RedNode(a, b, c, d.blacken(), null) | |
} | |
if(c instanceof cljs.core.BlackNode) { | |
return cljs.core.balance_left.call(null, a, b, c.redden(), d) | |
} | |
var e; | |
e = (e = c instanceof cljs.core.RedNode) ? c.right instanceof cljs.core.BlackNode : e; | |
if(e) { | |
return new cljs.core.RedNode(c.right.key, c.right.val, cljs.core.balance_left.call(null, c.key, c.val, c.left.redden(), c.right.left), new cljs.core.BlackNode(a, b, c.right.right, d, null), null) | |
} | |
throw Error("red-black tree invariant violation"); | |
}; | |
cljs.core.tree_map_kv_reduce = function tree_map_kv_reduce(b, c, d) { | |
d = null != b.left ? tree_map_kv_reduce.call(null, b.left, c, d) : d; | |
if(cljs.core.reduced_QMARK_.call(null, d)) { | |
return cljs.core.deref.call(null, d) | |
} | |
d = c.call(null, d, b.key, b.val); | |
if(cljs.core.reduced_QMARK_.call(null, d)) { | |
return cljs.core.deref.call(null, d) | |
} | |
b = null != b.right ? tree_map_kv_reduce.call(null, b.right, c, d) : d; | |
return cljs.core.reduced_QMARK_.call(null, b) ? cljs.core.deref.call(null, b) : b | |
}; | |
cljs.core.BlackNode = function(a, b, c, d, e) { | |
this.key = a; | |
this.val = b; | |
this.left = c; | |
this.right = d; | |
this.__hash = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32402207 | |
}; | |
cljs.core.BlackNode.cljs$lang$type = !0; | |
cljs.core.BlackNode.cljs$lang$ctorStr = "cljs.core/BlackNode"; | |
cljs.core.BlackNode.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/BlackNode") | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$IIndexed$_nth$arity$3(a, b, null) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
return a.cljs$core$IIndexed$_nth$arity$3(a, b, c) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IAssociative$_assoc$arity$3 = function(a, b, c) { | |
return cljs.core.assoc.call(null, cljs.core.PersistentVector.fromArray([this.key, this.val], !0), b, c) | |
}; | |
cljs.core.BlackNode.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return this.cljs$core$ILookup$_lookup$arity$2(this, c); | |
case 3: | |
return this.cljs$core$ILookup$_lookup$arity$3(this, c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.BlackNode.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.PersistentVector.fromArray([this.key, this.val, b], !0) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IMapEntry$_key$arity$1 = function(a) { | |
return this.key | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IMapEntry$_val$arity$1 = function(a) { | |
return this.val | |
}; | |
cljs.core.BlackNode.prototype.add_right = function(a) { | |
return a.balance_right(this) | |
}; | |
cljs.core.BlackNode.prototype.redden = function() { | |
return new cljs.core.RedNode(this.key, this.val, this.left, this.right, null) | |
}; | |
cljs.core.BlackNode.prototype.remove_right = function(a) { | |
return cljs.core.balance_right_del.call(null, this.key, this.val, this.left, a) | |
}; | |
cljs.core.BlackNode.prototype.replace = function(a, b, c, d) { | |
return new cljs.core.BlackNode(a, b, c, d, null) | |
}; | |
cljs.core.BlackNode.prototype.kv_reduce = function(a, b) { | |
return cljs.core.tree_map_kv_reduce.call(null, this, a, b) | |
}; | |
cljs.core.BlackNode.prototype.remove_left = function(a) { | |
return cljs.core.balance_left_del.call(null, this.key, this.val, a, this.right) | |
}; | |
cljs.core.BlackNode.prototype.add_left = function(a) { | |
return a.balance_left(this) | |
}; | |
cljs.core.BlackNode.prototype.balance_left = function(a) { | |
return new cljs.core.BlackNode(a.key, a.val, this, a.right, null) | |
}; | |
cljs.core.BlackNode.prototype.balance_right = function(a) { | |
return new cljs.core.BlackNode(a.key, a.val, a.left, this, null) | |
}; | |
cljs.core.BlackNode.prototype.blacken = function() { | |
return this | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.ci_reduce.call(null, a, b) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.ci_reduce.call(null, a, b, c) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return cljs.core.list.call(null, this.key, this.val) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return 2 | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IStack$_peek$arity$1 = function(a) { | |
return this.val | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IStack$_pop$arity$1 = function(a) { | |
return cljs.core.PersistentVector.fromArray([this.key], !0) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IVector$_assoc_n$arity$3 = function(a, b, c) { | |
return cljs.core._assoc_n.call(null, cljs.core.PersistentVector.fromArray([this.key, this.val], !0), b, c) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return cljs.core.with_meta.call(null, cljs.core.PersistentVector.fromArray([this.key, this.val], !0), b) | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return null | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IIndexed$_nth$arity$2 = function(a, b) { | |
return 0 === b ? this.key : 1 === b ? this.val : null | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IIndexed$_nth$arity$3 = function(a, b, c) { | |
return 0 === b ? this.key : 1 === b ? this.val : c | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.PersistentVector.EMPTY | |
}; | |
cljs.core.__GT_BlackNode = function(a, b, c, d, e) { | |
return new cljs.core.BlackNode(a, b, c, d, e) | |
}; | |
cljs.core.RedNode = function(a, b, c, d, e) { | |
this.key = a; | |
this.val = b; | |
this.left = c; | |
this.right = d; | |
this.__hash = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32402207 | |
}; | |
cljs.core.RedNode.cljs$lang$type = !0; | |
cljs.core.RedNode.cljs$lang$ctorStr = "cljs.core/RedNode"; | |
cljs.core.RedNode.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/RedNode") | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$IIndexed$_nth$arity$3(a, b, null) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
return a.cljs$core$IIndexed$_nth$arity$3(a, b, c) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IAssociative$_assoc$arity$3 = function(a, b, c) { | |
return cljs.core.assoc.call(null, cljs.core.PersistentVector.fromArray([this.key, this.val], !0), b, c) | |
}; | |
cljs.core.RedNode.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return this.cljs$core$ILookup$_lookup$arity$2(this, c); | |
case 3: | |
return this.cljs$core$ILookup$_lookup$arity$3(this, c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.RedNode.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.PersistentVector.fromArray([this.key, this.val, b], !0) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IMapEntry$_key$arity$1 = function(a) { | |
return this.key | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IMapEntry$_val$arity$1 = function(a) { | |
return this.val | |
}; | |
cljs.core.RedNode.prototype.add_right = function(a) { | |
return new cljs.core.RedNode(this.key, this.val, this.left, a, null) | |
}; | |
cljs.core.RedNode.prototype.redden = function() { | |
throw Error("red-black tree invariant violation"); | |
}; | |
cljs.core.RedNode.prototype.remove_right = function(a) { | |
return new cljs.core.RedNode(this.key, this.val, this.left, a, null) | |
}; | |
cljs.core.RedNode.prototype.replace = function(a, b, c, d) { | |
return new cljs.core.RedNode(a, b, c, d, null) | |
}; | |
cljs.core.RedNode.prototype.kv_reduce = function(a, b) { | |
return cljs.core.tree_map_kv_reduce.call(null, this, a, b) | |
}; | |
cljs.core.RedNode.prototype.remove_left = function(a) { | |
return new cljs.core.RedNode(this.key, this.val, a, this.right, null) | |
}; | |
cljs.core.RedNode.prototype.add_left = function(a) { | |
return new cljs.core.RedNode(this.key, this.val, a, this.right, null) | |
}; | |
cljs.core.RedNode.prototype.balance_left = function(a) { | |
return this.left instanceof cljs.core.RedNode ? new cljs.core.RedNode(this.key, this.val, this.left.blacken(), new cljs.core.BlackNode(a.key, a.val, this.right, a.right, null), null) : this.right instanceof cljs.core.RedNode ? new cljs.core.RedNode(this.right.key, this.right.val, new cljs.core.BlackNode(this.key, this.val, this.left, this.right.left, null), new cljs.core.BlackNode(a.key, a.val, this.right.right, a.right, null), null) : new cljs.core.BlackNode(a.key, a.val, this, a.right, null) | |
}; | |
cljs.core.RedNode.prototype.balance_right = function(a) { | |
return this.right instanceof cljs.core.RedNode ? new cljs.core.RedNode(this.key, this.val, new cljs.core.BlackNode(a.key, a.val, a.left, this.left, null), this.right.blacken(), null) : this.left instanceof cljs.core.RedNode ? new cljs.core.RedNode(this.left.key, this.left.val, new cljs.core.BlackNode(a.key, a.val, a.left, this.left.left, null), new cljs.core.BlackNode(this.key, this.val, this.left.right, this.right, null), null) : new cljs.core.BlackNode(a.key, a.val, a.left, this, null) | |
}; | |
cljs.core.RedNode.prototype.blacken = function() { | |
return new cljs.core.BlackNode(this.key, this.val, this.left, this.right, null) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.ci_reduce.call(null, a, b) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.ci_reduce.call(null, a, b, c) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return cljs.core.list.call(null, this.key, this.val) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return 2 | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IStack$_peek$arity$1 = function(a) { | |
return this.val | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IStack$_pop$arity$1 = function(a) { | |
return cljs.core.PersistentVector.fromArray([this.key], !0) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IVector$_assoc_n$arity$3 = function(a, b, c) { | |
return cljs.core._assoc_n.call(null, cljs.core.PersistentVector.fromArray([this.key, this.val], !0), b, c) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return cljs.core.with_meta.call(null, cljs.core.PersistentVector.fromArray([this.key, this.val], !0), b) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return null | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IIndexed$_nth$arity$2 = function(a, b) { | |
return 0 === b ? this.key : 1 === b ? this.val : null | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IIndexed$_nth$arity$3 = function(a, b, c) { | |
return 0 === b ? this.key : 1 === b ? this.val : c | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.PersistentVector.EMPTY | |
}; | |
cljs.core.__GT_RedNode = function(a, b, c, d, e) { | |
return new cljs.core.RedNode(a, b, c, d, e) | |
}; | |
cljs.core.tree_map_add = function tree_map_add(b, c, d, e, f) { | |
if(null == c) { | |
return new cljs.core.RedNode(d, e, null, null, null) | |
} | |
var g = b.call(null, d, c.key); | |
if(0 === g) { | |
return f[0] = c, null | |
} | |
if(0 > g) { | |
return b = tree_map_add.call(null, b, c.left, d, e, f), null != b ? c.add_left(b) : null | |
} | |
b = tree_map_add.call(null, b, c.right, d, e, f); | |
return null != b ? c.add_right(b) : null | |
}; | |
cljs.core.tree_map_append = function tree_map_append(b, c) { | |
if(null == b) { | |
return c | |
} | |
if(null == c) { | |
return b | |
} | |
if(b instanceof cljs.core.RedNode) { | |
if(c instanceof cljs.core.RedNode) { | |
var d = tree_map_append.call(null, b.right, c.left); | |
return d instanceof cljs.core.RedNode ? new cljs.core.RedNode(d.key, d.val, new cljs.core.RedNode(b.key, b.val, b.left, d.left, null), new cljs.core.RedNode(c.key, c.val, d.right, c.right, null), null) : new cljs.core.RedNode(b.key, b.val, b.left, new cljs.core.RedNode(c.key, c.val, d, c.right, null), null) | |
} | |
return new cljs.core.RedNode(b.key, b.val, b.left, tree_map_append.call(null, b.right, c), null) | |
} | |
if(c instanceof cljs.core.RedNode) { | |
return new cljs.core.RedNode(c.key, c.val, tree_map_append.call(null, b, c.left), c.right, null) | |
} | |
d = tree_map_append.call(null, b.right, c.left); | |
return d instanceof cljs.core.RedNode ? new cljs.core.RedNode(d.key, d.val, new cljs.core.BlackNode(b.key, b.val, b.left, d.left, null), new cljs.core.BlackNode(c.key, c.val, d.right, c.right, null), null) : cljs.core.balance_left_del.call(null, b.key, b.val, b.left, new cljs.core.BlackNode(c.key, c.val, d, c.right, null)) | |
}; | |
cljs.core.tree_map_remove = function tree_map_remove(b, c, d, e) { | |
if(null != c) { | |
var f = b.call(null, d, c.key); | |
if(0 === f) { | |
return e[0] = c, cljs.core.tree_map_append.call(null, c.left, c.right) | |
} | |
if(0 > f) { | |
var g = tree_map_remove.call(null, b, c.left, d, e); | |
return function() { | |
var b = null != g; | |
return b ? b : null != e[0] | |
}() ? c.left instanceof cljs.core.BlackNode ? cljs.core.balance_left_del.call(null, c.key, c.val, g, c.right) : new cljs.core.RedNode(c.key, c.val, g, c.right, null) : null | |
} | |
g = tree_map_remove.call(null, b, c.right, d, e); | |
return function() { | |
var b = null != g; | |
return b ? b : null != e[0] | |
}() ? c.right instanceof cljs.core.BlackNode ? cljs.core.balance_right_del.call(null, c.key, c.val, c.left, g) : new cljs.core.RedNode(c.key, c.val, c.left, g, null) : null | |
} | |
return null | |
}; | |
cljs.core.tree_map_replace = function tree_map_replace(b, c, d, e) { | |
var f = c.key, g = b.call(null, d, f); | |
return 0 === g ? c.replace(f, e, c.left, c.right) : 0 > g ? c.replace(f, c.val, tree_map_replace.call(null, b, c.left, d, e), c.right) : c.replace(f, c.val, c.left, tree_map_replace.call(null, b, c.right, d, e)) | |
}; | |
cljs.core.PersistentTreeMap = function(a, b, c, d, e) { | |
this.comp = a; | |
this.tree = b; | |
this.cnt = c; | |
this.meta = d; | |
this.__hash = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 418776847 | |
}; | |
cljs.core.PersistentTreeMap.cljs$lang$type = !0; | |
cljs.core.PersistentTreeMap.cljs$lang$ctorStr = "cljs.core/PersistentTreeMap"; | |
cljs.core.PersistentTreeMap.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/PersistentTreeMap") | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_imap.call(null, a) | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$ILookup$_lookup$arity$3(a, b, null) | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
a = a.entry_at(b); | |
return null != a ? a.val : c | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IAssociative$_assoc$arity$3 = function(a, b, c) { | |
var d = [null], e = cljs.core.tree_map_add.call(null, this.comp, this.tree, b, c, d); | |
return null == e ? (d = cljs.core.nth.call(null, d, 0), cljs.core._EQ_.call(null, c, d.val) ? a : new cljs.core.PersistentTreeMap(this.comp, cljs.core.tree_map_replace.call(null, this.comp, this.tree, b, c), this.cnt, this.meta, null)) : new cljs.core.PersistentTreeMap(this.comp, e.blacken(), this.cnt + 1, this.meta, null) | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IAssociative$_contains_key_QMARK_$arity$2 = function(a, b) { | |
return null != a.entry_at(b) | |
}; | |
cljs.core.PersistentTreeMap.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return this.cljs$core$ILookup$_lookup$arity$2(this, c); | |
case 3: | |
return this.cljs$core$ILookup$_lookup$arity$3(this, c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.PersistentTreeMap.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IKVReduce$_kv_reduce$arity$3 = function(a, b, c) { | |
return null != this.tree ? cljs.core.tree_map_kv_reduce.call(null, this.tree, b, c) : c | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.vector_QMARK_.call(null, b) ? a.cljs$core$IAssociative$_assoc$arity$3(a, cljs.core._nth.call(null, b, 0), cljs.core._nth.call(null, b, 1)) : cljs.core.reduce.call(null, cljs.core._conj, a, b) | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IReversible$_rseq$arity$1 = function(a) { | |
return 0 < this.cnt ? cljs.core.create_tree_map_seq.call(null, this.tree, !1, this.cnt) : null | |
}; | |
cljs.core.PersistentTreeMap.prototype.entry_at = function(a) { | |
for(var b = this.tree;;) { | |
if(null != b) { | |
var c = this.comp.call(null, a, b.key); | |
if(0 === c) { | |
return b | |
} | |
b = 0 > c ? b.left : b.right | |
}else { | |
return null | |
} | |
} | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$ISorted$_sorted_seq$arity$2 = function(a, b) { | |
return 0 < this.cnt ? cljs.core.create_tree_map_seq.call(null, this.tree, b, this.cnt) : null | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$ISorted$_sorted_seq_from$arity$3 = function(a, b, c) { | |
if(0 < this.cnt) { | |
a = null; | |
for(var d = this.tree;;) { | |
if(null != d) { | |
var e = this.comp.call(null, b, d.key); | |
if(0 === e) { | |
return new cljs.core.PersistentTreeMapSeq(null, cljs.core.conj.call(null, a, d), c, -1, null) | |
} | |
cljs.core.truth_(c) ? 0 > e ? (a = cljs.core.conj.call(null, a, d), d = d.left) : d = d.right : 0 < e ? (a = cljs.core.conj.call(null, a, d), d = d.right) : d = d.left | |
}else { | |
return null == a ? null : new cljs.core.PersistentTreeMapSeq(null, a, c, -1, null) | |
} | |
} | |
}else { | |
return null | |
} | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$ISorted$_entry_key$arity$2 = function(a, b) { | |
return cljs.core.key.call(null, b) | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$ISorted$_comparator$arity$1 = function(a) { | |
return this.comp | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return 0 < this.cnt ? cljs.core.create_tree_map_seq.call(null, this.tree, !0, this.cnt) : null | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.cnt | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_map.call(null, a, b) | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.PersistentTreeMap(this.comp, this.tree, this.cnt, b, this.__hash) | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.PersistentTreeMap.EMPTY, this.meta) | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IMap$_dissoc$arity$2 = function(a, b) { | |
var c = [null], d = cljs.core.tree_map_remove.call(null, this.comp, this.tree, b, c); | |
return null == d ? null == cljs.core.nth.call(null, c, 0) ? a : new cljs.core.PersistentTreeMap(this.comp, null, 0, this.meta, null) : new cljs.core.PersistentTreeMap(this.comp, d.blacken(), this.cnt - 1, this.meta, null) | |
}; | |
cljs.core.__GT_PersistentTreeMap = function(a, b, c, d, e) { | |
return new cljs.core.PersistentTreeMap(a, b, c, d, e) | |
}; | |
cljs.core.PersistentTreeMap.EMPTY = new cljs.core.PersistentTreeMap(cljs.core.compare, null, 0, null, 0); | |
cljs.core.hash_map = function() { | |
var a = function(a) { | |
a = cljs.core.seq.call(null, a); | |
for(var b = cljs.core.transient$.call(null, cljs.core.PersistentHashMap.EMPTY);;) { | |
if(a) { | |
var e = cljs.core.nnext.call(null, a), b = cljs.core.assoc_BANG_.call(null, b, cljs.core.first.call(null, a), cljs.core.second.call(null, a)); | |
a = e | |
}else { | |
return cljs.core.persistent_BANG_.call(null, b) | |
} | |
} | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.array_map = function() { | |
var a = function(a) { | |
return new cljs.core.PersistentArrayMap(null, cljs.core.quot.call(null, cljs.core.count.call(null, a), 2), cljs.core.apply.call(null, cljs.core.array, a), null) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.obj_map = function() { | |
var a = function(a) { | |
var b = [], e = {}; | |
for(a = cljs.core.seq.call(null, a);;) { | |
if(a) { | |
b.push(cljs.core.first.call(null, a)), e[cljs.core.first.call(null, a)] = cljs.core.second.call(null, a), a = cljs.core.nnext.call(null, a) | |
}else { | |
return cljs.core.ObjMap.fromObject.call(null, b, e) | |
} | |
} | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.sorted_map = function() { | |
var a = function(a) { | |
a = cljs.core.seq.call(null, a); | |
for(var b = cljs.core.PersistentTreeMap.EMPTY;;) { | |
if(a) { | |
var e = cljs.core.nnext.call(null, a), b = cljs.core.assoc.call(null, b, cljs.core.first.call(null, a), cljs.core.second.call(null, a)); | |
a = e | |
}else { | |
return b | |
} | |
} | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.sorted_map_by = function() { | |
var a = function(a, b) { | |
for(var e = cljs.core.seq.call(null, b), f = new cljs.core.PersistentTreeMap(cljs.core.fn__GT_comparator.call(null, a), null, 0, null, 0);;) { | |
if(e) { | |
var g = cljs.core.nnext.call(null, e), f = cljs.core.assoc.call(null, f, cljs.core.first.call(null, e), cljs.core.second.call(null, e)), e = g | |
}else { | |
return f | |
} | |
} | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.KeySeq = function(a, b) { | |
this.mseq = a; | |
this._meta = b; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32374988 | |
}; | |
cljs.core.KeySeq.cljs$lang$type = !0; | |
cljs.core.KeySeq.cljs$lang$ctorStr = "cljs.core/KeySeq"; | |
cljs.core.KeySeq.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/KeySeq") | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
return cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$INext$_next$arity$1 = function(a) { | |
if(a = this.mseq) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 128) ? b : a.cljs$core$INext$; | |
a = b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.INext, a) | |
}else { | |
a = cljs.core.type_satisfies_.call(null, cljs.core.INext, a) | |
} | |
a = a ? cljs.core._next.call(null, this.mseq) : cljs.core.next.call(null, this.mseq); | |
return null == a ? null : new cljs.core.KeySeq(a, this._meta) | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.KeySeq.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.seq_reduce.call(null, b, a) | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.seq_reduce.call(null, b, c, a) | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
a = cljs.core._first.call(null, this.mseq); | |
return cljs.core._key.call(null, a) | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
if(a = this.mseq) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 128) ? b : a.cljs$core$INext$; | |
a = b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.INext, a) | |
}else { | |
a = cljs.core.type_satisfies_.call(null, cljs.core.INext, a) | |
} | |
a = a ? cljs.core._next.call(null, this.mseq) : cljs.core.next.call(null, this.mseq); | |
return null != a ? new cljs.core.KeySeq(a, this._meta) : cljs.core.List.EMPTY | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.KeySeq(this.mseq, b) | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this._meta | |
}; | |
cljs.core.KeySeq.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this._meta) | |
}; | |
cljs.core.__GT_KeySeq = function(a, b) { | |
return new cljs.core.KeySeq(a, b) | |
}; | |
cljs.core.keys = function(a) { | |
return(a = cljs.core.seq.call(null, a)) ? new cljs.core.KeySeq(a, null) : null | |
}; | |
cljs.core.key = function(a) { | |
return cljs.core._key.call(null, a) | |
}; | |
cljs.core.ValSeq = function(a, b) { | |
this.mseq = a; | |
this._meta = b; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32374988 | |
}; | |
cljs.core.ValSeq.cljs$lang$type = !0; | |
cljs.core.ValSeq.cljs$lang$ctorStr = "cljs.core/ValSeq"; | |
cljs.core.ValSeq.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/ValSeq") | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
return cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$INext$_next$arity$1 = function(a) { | |
if(a = this.mseq) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 128) ? b : a.cljs$core$INext$; | |
a = b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.INext, a) | |
}else { | |
a = cljs.core.type_satisfies_.call(null, cljs.core.INext, a) | |
} | |
a = a ? cljs.core._next.call(null, this.mseq) : cljs.core.next.call(null, this.mseq); | |
return null == a ? null : new cljs.core.ValSeq(a, this._meta) | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.ValSeq.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.seq_reduce.call(null, b, a) | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.seq_reduce.call(null, b, c, a) | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return a | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
a = cljs.core._first.call(null, this.mseq); | |
return cljs.core._val.call(null, a) | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
if(a = this.mseq) { | |
var b; | |
b = (b = a.cljs$lang$protocol_mask$partition0$ & 128) ? b : a.cljs$core$INext$; | |
a = b ? !0 : a.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.INext, a) | |
}else { | |
a = cljs.core.type_satisfies_.call(null, cljs.core.INext, a) | |
} | |
a = a ? cljs.core._next.call(null, this.mseq) : cljs.core.next.call(null, this.mseq); | |
return null != a ? new cljs.core.ValSeq(a, this._meta) : cljs.core.List.EMPTY | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.ValSeq(this.mseq, b) | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this._meta | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this._meta) | |
}; | |
cljs.core.__GT_ValSeq = function(a, b) { | |
return new cljs.core.ValSeq(a, b) | |
}; | |
cljs.core.vals = function(a) { | |
return(a = cljs.core.seq.call(null, a)) ? new cljs.core.ValSeq(a, null) : null | |
}; | |
cljs.core.val = function(a) { | |
return cljs.core._val.call(null, a) | |
}; | |
cljs.core.merge = function() { | |
var a = function(a) { | |
return cljs.core.truth_(cljs.core.some.call(null, cljs.core.identity, a)) ? cljs.core.reduce.call(null, function(a, b) { | |
return cljs.core.conj.call(null, cljs.core.truth_(a) ? a : cljs.core.PersistentArrayMap.EMPTY, b) | |
}, a) : null | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.merge_with = function() { | |
var a = function(a, b) { | |
if(cljs.core.truth_(cljs.core.some.call(null, cljs.core.identity, b))) { | |
var e = function(a) { | |
return function(b, c) { | |
return cljs.core.reduce.call(null, a, cljs.core.truth_(b) ? b : cljs.core.PersistentArrayMap.EMPTY, cljs.core.seq.call(null, c)) | |
} | |
}(function(b, d) { | |
var e = cljs.core.first.call(null, d), k = cljs.core.second.call(null, d); | |
return cljs.core.contains_QMARK_.call(null, b, e) ? cljs.core.assoc.call(null, b, e, a.call(null, cljs.core.get.call(null, b, e), k)) : cljs.core.assoc.call(null, b, e, k) | |
}); | |
return cljs.core.reduce.call(null, e, b) | |
} | |
return null | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.select_keys = function(a, b) { | |
for(var c = cljs.core.PersistentArrayMap.EMPTY, d = cljs.core.seq.call(null, b);;) { | |
if(d) { | |
var e = cljs.core.first.call(null, d), f = cljs.core.get.call(null, a, e, "\ufdd0:cljs.core/not-found"), c = cljs.core.not_EQ_.call(null, f, "\ufdd0:cljs.core/not-found") ? cljs.core.assoc.call(null, c, e, f) : c, d = cljs.core.next.call(null, d) | |
}else { | |
return c | |
} | |
} | |
}; | |
cljs.core.PersistentHashSet = function(a, b, c) { | |
this.meta = a; | |
this.hash_map = b; | |
this.__hash = c; | |
this.cljs$lang$protocol_mask$partition1$ = 4; | |
this.cljs$lang$protocol_mask$partition0$ = 15077647 | |
}; | |
cljs.core.PersistentHashSet.cljs$lang$type = !0; | |
cljs.core.PersistentHashSet.cljs$lang$ctorStr = "cljs.core/PersistentHashSet"; | |
cljs.core.PersistentHashSet.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/PersistentHashSet") | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$IEditableCollection$_as_transient$arity$1 = function(a) { | |
return new cljs.core.TransientHashSet(cljs.core._as_transient.call(null, this.hash_map)) | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_iset.call(null, a) | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$ILookup$_lookup$arity$3(a, b, null) | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
return cljs.core.truth_(cljs.core._contains_key_QMARK_.call(null, this.hash_map, b)) ? b : c | |
}; | |
cljs.core.PersistentHashSet.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return this.cljs$core$ILookup$_lookup$arity$2(this, c); | |
case 3: | |
return this.cljs$core$ILookup$_lookup$arity$3(this, c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.PersistentHashSet.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return new cljs.core.PersistentHashSet(this.meta, cljs.core.assoc.call(null, this.hash_map, b, null), null) | |
}; | |
cljs.core.PersistentHashSet.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return cljs.core.keys.call(null, this.hash_map) | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$ISet$_disjoin$arity$2 = function(a, b) { | |
return new cljs.core.PersistentHashSet(this.meta, cljs.core._dissoc.call(null, this.hash_map, b), null) | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return cljs.core._count.call(null, this.hash_map) | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
var c = cljs.core.set_QMARK_.call(null, b); | |
return c ? (c = cljs.core.count.call(null, a) === cljs.core.count.call(null, b)) ? cljs.core.every_QMARK_.call(null, function(b) { | |
return cljs.core.contains_QMARK_.call(null, a, b) | |
}, b) : c : c | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.PersistentHashSet(b, this.hash_map, this.__hash) | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.PersistentHashSet.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_PersistentHashSet = function(a, b, c) { | |
return new cljs.core.PersistentHashSet(a, b, c) | |
}; | |
cljs.core.PersistentHashSet.EMPTY = new cljs.core.PersistentHashSet(null, cljs.core.PersistentArrayMap.EMPTY, 0); | |
cljs.core.PersistentHashSet.fromArray = function(a, b) { | |
var c = a.length; | |
if(c / 2 <= cljs.core.PersistentArrayMap.HASHMAP_THRESHOLD) { | |
return c = b ? a : a.slice(), new cljs.core.PersistentHashSet(null, cljs.core.PersistentArrayMap.fromArray.call(null, c, !0), null) | |
} | |
for(var d = 0, e = cljs.core.transient$.call(null, cljs.core.PersistentHashSet.EMPTY);;) { | |
if(d < c) { | |
var f = d + 2, e = cljs.core.conj_BANG_.call(null, e, a[d]), d = f | |
}else { | |
return cljs.core.persistent_BANG_.call(null, e) | |
} | |
} | |
}; | |
cljs.core.TransientHashSet = function(a) { | |
this.transient_map = a; | |
this.cljs$lang$protocol_mask$partition0$ = 259; | |
this.cljs$lang$protocol_mask$partition1$ = 136 | |
}; | |
cljs.core.TransientHashSet.cljs$lang$type = !0; | |
cljs.core.TransientHashSet.cljs$lang$ctorStr = "cljs.core/TransientHashSet"; | |
cljs.core.TransientHashSet.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/TransientHashSet") | |
}; | |
cljs.core.TransientHashSet.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
var e; | |
e = cljs.core._lookup.call(null, this.transient_map, c, cljs.core.lookup_sentinel) === cljs.core.lookup_sentinel ? null : c; | |
return e; | |
case 3: | |
return e = cljs.core._lookup.call(null, this.transient_map, c, cljs.core.lookup_sentinel) === cljs.core.lookup_sentinel ? d : c, e | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.TransientHashSet.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.TransientHashSet.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$ILookup$_lookup$arity$3(a, b, null) | |
}; | |
cljs.core.TransientHashSet.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
return cljs.core._lookup.call(null, this.transient_map, b, cljs.core.lookup_sentinel) === cljs.core.lookup_sentinel ? c : b | |
}; | |
cljs.core.TransientHashSet.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return cljs.core.count.call(null, this.transient_map) | |
}; | |
cljs.core.TransientHashSet.prototype.cljs$core$ITransientSet$_disjoin_BANG_$arity$2 = function(a, b) { | |
this.transient_map = cljs.core.dissoc_BANG_.call(null, this.transient_map, b); | |
return a | |
}; | |
cljs.core.TransientHashSet.prototype.cljs$core$ITransientCollection$_conj_BANG_$arity$2 = function(a, b) { | |
this.transient_map = cljs.core.assoc_BANG_.call(null, this.transient_map, b, null); | |
return a | |
}; | |
cljs.core.TransientHashSet.prototype.cljs$core$ITransientCollection$_persistent_BANG_$arity$1 = function(a) { | |
return new cljs.core.PersistentHashSet(null, cljs.core.persistent_BANG_.call(null, this.transient_map), null) | |
}; | |
cljs.core.__GT_TransientHashSet = function(a) { | |
return new cljs.core.TransientHashSet(a) | |
}; | |
cljs.core.PersistentTreeSet = function(a, b, c) { | |
this.meta = a; | |
this.tree_map = b; | |
this.__hash = c; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 417730831 | |
}; | |
cljs.core.PersistentTreeSet.cljs$lang$type = !0; | |
cljs.core.PersistentTreeSet.cljs$lang$ctorStr = "cljs.core/PersistentTreeSet"; | |
cljs.core.PersistentTreeSet.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/PersistentTreeSet") | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_iset.call(null, a) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$ILookup$_lookup$arity$2 = function(a, b) { | |
return a.cljs$core$ILookup$_lookup$arity$3(a, b, null) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$ILookup$_lookup$arity$3 = function(a, b, c) { | |
a = this.tree_map.entry_at(b); | |
return null != a ? a.key : c | |
}; | |
cljs.core.PersistentTreeSet.prototype.call = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return this.cljs$core$ILookup$_lookup$arity$2(this, c); | |
case 3: | |
return this.cljs$core$ILookup$_lookup$arity$3(this, c, d) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.PersistentTreeSet.prototype.apply = function(a, b) { | |
a = this; | |
return a.call.apply(a, [a].concat(b.slice())) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return new cljs.core.PersistentTreeSet(this.meta, cljs.core.assoc.call(null, this.tree_map, b, null), null) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$IReversible$_rseq$arity$1 = function(a) { | |
return cljs.core.map.call(null, cljs.core.key, cljs.core.rseq.call(null, this.tree_map)) | |
}; | |
cljs.core.PersistentTreeSet.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$ISorted$_sorted_seq$arity$2 = function(a, b) { | |
return cljs.core.map.call(null, cljs.core.key, cljs.core._sorted_seq.call(null, this.tree_map, b)) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$ISorted$_sorted_seq_from$arity$3 = function(a, b, c) { | |
return cljs.core.map.call(null, cljs.core.key, cljs.core._sorted_seq_from.call(null, this.tree_map, b, c)) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$ISorted$_entry_key$arity$2 = function(a, b) { | |
return b | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$ISorted$_comparator$arity$1 = function(a) { | |
return cljs.core._comparator.call(null, this.tree_map) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return cljs.core.keys.call(null, this.tree_map) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$ISet$_disjoin$arity$2 = function(a, b) { | |
return new cljs.core.PersistentTreeSet(this.meta, cljs.core.dissoc.call(null, this.tree_map, b), null) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return cljs.core.count.call(null, this.tree_map) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
var c = cljs.core.set_QMARK_.call(null, b); | |
return c ? (c = cljs.core.count.call(null, a) === cljs.core.count.call(null, b)) ? cljs.core.every_QMARK_.call(null, function(b) { | |
return cljs.core.contains_QMARK_.call(null, a, b) | |
}, b) : c : c | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.PersistentTreeSet(b, this.tree_map, this.__hash) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.PersistentTreeSet.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_PersistentTreeSet = function(a, b, c) { | |
return new cljs.core.PersistentTreeSet(a, b, c) | |
}; | |
cljs.core.PersistentTreeSet.EMPTY = new cljs.core.PersistentTreeSet(null, cljs.core.PersistentTreeMap.EMPTY, 0); | |
cljs.core.hash_set = function() { | |
var a = null, b = function() { | |
return cljs.core.PersistentHashSet.EMPTY | |
}, c = function() { | |
var a = function(a) { | |
var b; | |
b = (b = a instanceof cljs.core.IndexedSeq) ? a.arr.length < cljs.core.PersistentArrayMap.HASHMAP_THRESHOLD : b; | |
if(b) { | |
a = a.arr; | |
b = a.length; | |
for(var c = Array(2 * b), d = 0;;) { | |
if(d < b) { | |
var e = 2 * d; | |
c[e] = a[d]; | |
c[e + 1] = null; | |
d += 1 | |
}else { | |
return cljs.core.PersistentHashSet.fromArray.call(null, c, !0) | |
} | |
} | |
}else { | |
for(c = cljs.core._as_transient.call(null, cljs.core.PersistentHashSet.EMPTY);;) { | |
if(null != a) { | |
b = cljs.core._next.call(null, a), c = cljs.core._conj_BANG_.call(null, c, cljs.core._first.call(null, a)), a = b | |
}else { | |
return cljs.core._persistent_BANG_.call(null, c) | |
} | |
} | |
} | |
}, b = function(b) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, c) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a) { | |
switch(arguments.length) { | |
case 0: | |
return b.call(this); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(cljs.core.array_seq(arguments, 0)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 0; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.set = function(a) { | |
return cljs.core.apply.call(null, cljs.core.hash_set, a) | |
}; | |
cljs.core.sorted_set = function() { | |
var a = function(a) { | |
return cljs.core.reduce.call(null, cljs.core._conj, cljs.core.PersistentTreeSet.EMPTY, a) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.sorted_set_by = function() { | |
var a = function(a, b) { | |
return cljs.core.reduce.call(null, cljs.core._conj, new cljs.core.PersistentTreeSet(null, cljs.core.sorted_map_by.call(null, a), 0), b) | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.replace = function(a, b) { | |
if(cljs.core.vector_QMARK_.call(null, b)) { | |
var c = cljs.core.count.call(null, b); | |
return cljs.core.reduce.call(null, function(b, c) { | |
var f = cljs.core.find.call(null, a, cljs.core.nth.call(null, b, c)); | |
return cljs.core.truth_(f) ? cljs.core.assoc.call(null, b, c, cljs.core.second.call(null, f)) : b | |
}, b, cljs.core.take.call(null, c, cljs.core.iterate.call(null, cljs.core.inc, 0))) | |
} | |
return cljs.core.map.call(null, function(b) { | |
var c = cljs.core.find.call(null, a, b); | |
return cljs.core.truth_(c) ? cljs.core.second.call(null, c) : b | |
}, b) | |
}; | |
cljs.core.distinct = function(a) { | |
return function c(a, e) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
return function(a, d) { | |
for(;;) { | |
var e = a, k = cljs.core.nth.call(null, e, 0, null); | |
if(e = cljs.core.seq.call(null, e)) { | |
if(cljs.core.contains_QMARK_.call(null, d, k)) { | |
k = cljs.core.rest.call(null, e), e = d, a = k, d = e | |
}else { | |
return cljs.core.cons.call(null, k, c.call(null, cljs.core.rest.call(null, e), cljs.core.conj.call(null, d, k))) | |
} | |
}else { | |
return null | |
} | |
} | |
}.call(null, a, e) | |
}, null) | |
}.call(null, a, cljs.core.PersistentHashSet.EMPTY) | |
}; | |
cljs.core.butlast = function(a) { | |
for(var b = cljs.core.PersistentVector.EMPTY;;) { | |
if(cljs.core.next.call(null, a)) { | |
b = cljs.core.conj.call(null, b, cljs.core.first.call(null, a)), a = cljs.core.next.call(null, a) | |
}else { | |
return cljs.core.seq.call(null, b) | |
} | |
} | |
}; | |
cljs.core.name = function(a) { | |
var b; | |
a ? (b = (b = a.cljs$lang$protocol_mask$partition1$ & 4096) ? b : a.cljs$core$INamed$, b = b ? !0 : !1) : b = !1; | |
if(b) { | |
return cljs.core._name.call(null, a) | |
} | |
if(cljs.core.string_QMARK_.call(null, a)) { | |
return a | |
} | |
if(cljs.core.keyword_QMARK_.call(null, a)) { | |
return b = a.lastIndexOf("/", a.length - 2), 0 > b ? cljs.core.subs.call(null, a, 2) : cljs.core.subs.call(null, a, b + 1) | |
} | |
throw Error([cljs.core.str("Doesn't support name: "), cljs.core.str(a)].join("")); | |
}; | |
cljs.core.namespace = function(a) { | |
var b; | |
a ? (b = (b = a.cljs$lang$protocol_mask$partition1$ & 4096) ? b : a.cljs$core$INamed$, b = b ? !0 : !1) : b = !1; | |
if(b) { | |
return cljs.core._namespace.call(null, a) | |
} | |
if(cljs.core.keyword_QMARK_.call(null, a)) { | |
return b = a.lastIndexOf("/", a.length - 2), -1 < b ? cljs.core.subs.call(null, a, 2, b) : null | |
} | |
throw Error([cljs.core.str("Doesn't support namespace: "), cljs.core.str(a)].join("")); | |
}; | |
cljs.core.zipmap = function(a, b) { | |
for(var c = cljs.core.transient$.call(null, cljs.core.PersistentArrayMap.EMPTY), d = cljs.core.seq.call(null, a), e = cljs.core.seq.call(null, b);;) { | |
var f; | |
f = (f = d) ? e : f; | |
if(f) { | |
c = cljs.core.assoc_BANG_.call(null, c, cljs.core.first.call(null, d), cljs.core.first.call(null, e)), d = cljs.core.next.call(null, d), e = cljs.core.next.call(null, e) | |
}else { | |
return cljs.core.persistent_BANG_.call(null, c) | |
} | |
} | |
}; | |
cljs.core.max_key = function() { | |
var a = null, b = function(a, b, c) { | |
return a.call(null, b) > a.call(null, c) ? b : c | |
}, c = function() { | |
var b = function(b, c, d, e) { | |
return cljs.core.reduce.call(null, function(c, d) { | |
return a.call(null, b, c, d) | |
}, a.call(null, b, c, d), e) | |
}, c = function(a, c, e, k) { | |
var l = null; | |
3 < arguments.length && (l = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return b.call(this, a, c, e, l) | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var k = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, k, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f, g) { | |
switch(arguments.length) { | |
case 2: | |
return e; | |
case 3: | |
return b.call(this, a, e, f); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, f, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return b | |
}; | |
a.cljs$core$IFn$_invoke$arity$3 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.min_key = function() { | |
var a = null, b = function(a, b, c) { | |
return a.call(null, b) < a.call(null, c) ? b : c | |
}, c = function() { | |
var b = function(b, c, d, e) { | |
return cljs.core.reduce.call(null, function(c, d) { | |
return a.call(null, b, c, d) | |
}, a.call(null, b, c, d), e) | |
}, c = function(a, c, e, k) { | |
var l = null; | |
3 < arguments.length && (l = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return b.call(this, a, c, e, l) | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var k = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, k, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f, g) { | |
switch(arguments.length) { | |
case 2: | |
return e; | |
case 3: | |
return b.call(this, a, e, f); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, f, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$2 = function(a, b) { | |
return b | |
}; | |
a.cljs$core$IFn$_invoke$arity$3 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.partition_all = function() { | |
var a = null, b = function(b, c) { | |
return a.call(null, b, b, c) | |
}, c = function(b, c, f) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var g = cljs.core.seq.call(null, f); | |
return g ? cljs.core.cons.call(null, cljs.core.take.call(null, b, g), a.call(null, b, c, cljs.core.drop.call(null, c, g))) : null | |
}, null) | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.take_while = function take_while(b, c) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var d = cljs.core.seq.call(null, c); | |
return d ? cljs.core.truth_(b.call(null, cljs.core.first.call(null, d))) ? cljs.core.cons.call(null, cljs.core.first.call(null, d), take_while.call(null, b, cljs.core.rest.call(null, d))) : null : null | |
}, null) | |
}; | |
cljs.core.mk_bound_fn = function(a, b, c) { | |
return function(d) { | |
var e = cljs.core._comparator.call(null, a); | |
return b.call(null, e.call(null, cljs.core._entry_key.call(null, a, d), c), 0) | |
} | |
}; | |
cljs.core.subseq = function() { | |
var a = null, b = function(a, b, c) { | |
var g = cljs.core.mk_bound_fn.call(null, a, b, c); | |
return cljs.core.truth_(cljs.core.PersistentHashSet.fromArray([cljs.core._GT_, null, cljs.core._GT__EQ_, null], !0).call(null, b)) ? (a = cljs.core._sorted_seq_from.call(null, a, c, !0), cljs.core.truth_(a) ? (b = cljs.core.nth.call(null, a, 0, null), cljs.core.truth_(g.call(null, b)) ? a : cljs.core.next.call(null, a)) : null) : cljs.core.take_while.call(null, g, cljs.core._sorted_seq.call(null, a, !0)) | |
}, c = function(a, b, c, g, h) { | |
var k = cljs.core._sorted_seq_from.call(null, a, c, !0); | |
if(cljs.core.truth_(k)) { | |
var l = cljs.core.nth.call(null, k, 0, null); | |
return cljs.core.take_while.call(null, cljs.core.mk_bound_fn.call(null, a, g, h), cljs.core.truth_(cljs.core.mk_bound_fn.call(null, a, b, c).call(null, l)) ? k : cljs.core.next.call(null, k)) | |
} | |
return null | |
}, a = function(a, e, f, g, h) { | |
switch(arguments.length) { | |
case 3: | |
return b.call(this, a, e, f); | |
case 5: | |
return c.call(this, a, e, f, g, h) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$3 = b; | |
a.cljs$core$IFn$_invoke$arity$5 = c; | |
return a | |
}(); | |
cljs.core.rsubseq = function() { | |
var a = null, b = function(a, b, c) { | |
var g = cljs.core.mk_bound_fn.call(null, a, b, c); | |
return cljs.core.truth_(cljs.core.PersistentHashSet.fromArray([cljs.core._LT_, null, cljs.core._LT__EQ_, null], !0).call(null, b)) ? (a = cljs.core._sorted_seq_from.call(null, a, c, !1), cljs.core.truth_(a) ? (b = cljs.core.nth.call(null, a, 0, null), cljs.core.truth_(g.call(null, b)) ? a : cljs.core.next.call(null, a)) : null) : cljs.core.take_while.call(null, g, cljs.core._sorted_seq.call(null, a, !1)) | |
}, c = function(a, b, c, g, h) { | |
var k = cljs.core._sorted_seq_from.call(null, a, h, !1); | |
if(cljs.core.truth_(k)) { | |
var l = cljs.core.nth.call(null, k, 0, null); | |
return cljs.core.take_while.call(null, cljs.core.mk_bound_fn.call(null, a, b, c), cljs.core.truth_(cljs.core.mk_bound_fn.call(null, a, g, h).call(null, l)) ? k : cljs.core.next.call(null, k)) | |
} | |
return null | |
}, a = function(a, e, f, g, h) { | |
switch(arguments.length) { | |
case 3: | |
return b.call(this, a, e, f); | |
case 5: | |
return c.call(this, a, e, f, g, h) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$3 = b; | |
a.cljs$core$IFn$_invoke$arity$5 = c; | |
return a | |
}(); | |
cljs.core.Range = function(a, b, c, d, e) { | |
this.meta = a; | |
this.start = b; | |
this.end = c; | |
this.step = d; | |
this.__hash = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 32375006 | |
}; | |
cljs.core.Range.cljs$lang$type = !0; | |
cljs.core.Range.cljs$lang$ctorStr = "cljs.core/Range"; | |
cljs.core.Range.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/Range") | |
}; | |
cljs.core.Range.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
var b = this.__hash; | |
return null != b ? b : this.__hash = a = cljs.core.hash_coll.call(null, a) | |
}; | |
cljs.core.Range.prototype.cljs$core$INext$_next$arity$1 = function(a) { | |
return 0 < this.step ? this.start + this.step < this.end ? new cljs.core.Range(this.meta, this.start + this.step, this.end, this.step, null) : null : this.start + this.step > this.end ? new cljs.core.Range(this.meta, this.start + this.step, this.end, this.step, null) : null | |
}; | |
cljs.core.Range.prototype.cljs$core$ICollection$_conj$arity$2 = function(a, b) { | |
return cljs.core.cons.call(null, b, a) | |
}; | |
cljs.core.Range.prototype.toString = function() { | |
return cljs.core.pr_str_STAR_.call(null, this) | |
}; | |
cljs.core.Range.prototype.cljs$core$IReduce$_reduce$arity$2 = function(a, b) { | |
return cljs.core.ci_reduce.call(null, a, b) | |
}; | |
cljs.core.Range.prototype.cljs$core$IReduce$_reduce$arity$3 = function(a, b, c) { | |
return cljs.core.ci_reduce.call(null, a, b, c) | |
}; | |
cljs.core.Range.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return 0 < this.step ? this.start < this.end ? a : null : this.start > this.end ? a : null | |
}; | |
cljs.core.Range.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return cljs.core.not.call(null, a.cljs$core$ISeqable$_seq$arity$1(a)) ? 0 : Math.ceil((this.end - this.start) / this.step) | |
}; | |
cljs.core.Range.prototype.cljs$core$ISeq$_first$arity$1 = function(a) { | |
return this.start | |
}; | |
cljs.core.Range.prototype.cljs$core$ISeq$_rest$arity$1 = function(a) { | |
return null != a.cljs$core$ISeqable$_seq$arity$1(a) ? new cljs.core.Range(this.meta, this.start + this.step, this.end, this.step, null) : cljs.core.List.EMPTY | |
}; | |
cljs.core.Range.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return cljs.core.equiv_sequential.call(null, a, b) | |
}; | |
cljs.core.Range.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(a, b) { | |
return new cljs.core.Range(b, this.start, this.end, this.step, this.__hash) | |
}; | |
cljs.core.Range.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.Range.prototype.cljs$core$IIndexed$_nth$arity$2 = function(a, b) { | |
if(b < a.cljs$core$ICounted$_count$arity$1(a)) { | |
return this.start + b * this.step | |
} | |
var c; | |
c = (c = this.start > this.end) ? 0 === this.step : c; | |
if(c) { | |
return this.start | |
} | |
throw Error("Index out of bounds"); | |
}; | |
cljs.core.Range.prototype.cljs$core$IIndexed$_nth$arity$3 = function(a, b, c) { | |
if(b < a.cljs$core$ICounted$_count$arity$1(a)) { | |
return this.start + b * this.step | |
} | |
a = (a = this.start > this.end) ? 0 === this.step : a; | |
return a ? this.start : c | |
}; | |
cljs.core.Range.prototype.cljs$core$IEmptyableCollection$_empty$arity$1 = function(a) { | |
return cljs.core.with_meta.call(null, cljs.core.List.EMPTY, this.meta) | |
}; | |
cljs.core.__GT_Range = function(a, b, c, d, e) { | |
return new cljs.core.Range(a, b, c, d, e) | |
}; | |
cljs.core.range = function() { | |
var a = null, b = function() { | |
return a.call(null, 0, Number.MAX_VALUE, 1) | |
}, c = function(b) { | |
return a.call(null, 0, b, 1) | |
}, d = function(b, c) { | |
return a.call(null, b, c, 1) | |
}, e = function(a, b, c) { | |
return new cljs.core.Range(null, a, b, c, null) | |
}, a = function(a, g, h) { | |
switch(arguments.length) { | |
case 0: | |
return b.call(this); | |
case 1: | |
return c.call(this, a); | |
case 2: | |
return d.call(this, a, g); | |
case 3: | |
return e.call(this, a, g, h) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$0 = b; | |
a.cljs$core$IFn$_invoke$arity$1 = c; | |
a.cljs$core$IFn$_invoke$arity$2 = d; | |
a.cljs$core$IFn$_invoke$arity$3 = e; | |
return a | |
}(); | |
cljs.core.take_nth = function take_nth(b, c) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var d = cljs.core.seq.call(null, c); | |
return d ? cljs.core.cons.call(null, cljs.core.first.call(null, d), take_nth.call(null, b, cljs.core.drop.call(null, b, d))) : null | |
}, null) | |
}; | |
cljs.core.split_with = function(a, b) { | |
return cljs.core.PersistentVector.fromArray([cljs.core.take_while.call(null, a, b), cljs.core.drop_while.call(null, a, b)], !0) | |
}; | |
cljs.core.partition_by = function partition_by(b, c) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var d = cljs.core.seq.call(null, c); | |
if(d) { | |
var e = cljs.core.first.call(null, d), f = b.call(null, e), e = cljs.core.cons.call(null, e, cljs.core.take_while.call(null, function(c, d) { | |
return function(c) { | |
return cljs.core._EQ_.call(null, d, b.call(null, c)) | |
} | |
}(e, f), cljs.core.next.call(null, d))); | |
return cljs.core.cons.call(null, e, partition_by.call(null, b, cljs.core.seq.call(null, cljs.core.drop.call(null, cljs.core.count.call(null, e), d)))) | |
} | |
return null | |
}, null) | |
}; | |
cljs.core.frequencies = function(a) { | |
return cljs.core.persistent_BANG_.call(null, cljs.core.reduce.call(null, function(a, c) { | |
return cljs.core.assoc_BANG_.call(null, a, c, cljs.core.get.call(null, a, c, 0) + 1) | |
}, cljs.core.transient$.call(null, cljs.core.PersistentArrayMap.EMPTY), a)) | |
}; | |
cljs.core.reductions = function() { | |
var a = null, b = function(b, c) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
var f = cljs.core.seq.call(null, c); | |
return f ? a.call(null, b, cljs.core.first.call(null, f), cljs.core.rest.call(null, f)) : cljs.core.list.call(null, b.call(null)) | |
}, null) | |
}, c = function(b, c, f) { | |
return cljs.core.cons.call(null, c, new cljs.core.LazySeq(null, !1, function() { | |
var g = cljs.core.seq.call(null, f); | |
return g ? a.call(null, b, b.call(null, c, cljs.core.first.call(null, g)), cljs.core.rest.call(null, g)) : null | |
}, null)) | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.juxt = function() { | |
var a = null, b = function(a) { | |
return function() { | |
var b = null, c = function() { | |
var b = function(b, c, d, e) { | |
return cljs.core.vector.call(null, cljs.core.apply.call(null, a, b, c, d, e)) | |
}, c = function(a, c, d, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return b.call(this, a, c, d, f) | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, d, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), b = function(b, d, e, g) { | |
switch(arguments.length) { | |
case 0: | |
return cljs.core.vector.call(null, a.call(null)); | |
case 1: | |
return cljs.core.vector.call(null, a.call(null, b)); | |
case 2: | |
return cljs.core.vector.call(null, a.call(null, b, d)); | |
case 3: | |
return cljs.core.vector.call(null, a.call(null, b, d, e)); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(b, d, e, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
b.cljs$lang$maxFixedArity = 3; | |
b.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
return b | |
}() | |
}, c = function(a, b) { | |
return function() { | |
var c = null, d = function() { | |
var c = function(c, d, e, h) { | |
return cljs.core.vector.call(null, cljs.core.apply.call(null, a, c, d, e, h), cljs.core.apply.call(null, b, c, d, e, h)) | |
}, d = function(a, b, d, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return c.call(this, a, b, d, f) | |
}; | |
d.cljs$lang$maxFixedArity = 3; | |
d.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var d = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return c(b, d, e, a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = c; | |
return d | |
}(), c = function(c, e, h, p) { | |
switch(arguments.length) { | |
case 0: | |
return cljs.core.vector.call(null, a.call(null), b.call(null)); | |
case 1: | |
return cljs.core.vector.call(null, a.call(null, c), b.call(null, c)); | |
case 2: | |
return cljs.core.vector.call(null, a.call(null, c, e), b.call(null, c, e)); | |
case 3: | |
return cljs.core.vector.call(null, a.call(null, c, e, h), b.call(null, c, e, h)); | |
default: | |
return d.cljs$core$IFn$_invoke$arity$variadic(c, e, h, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = d.cljs$lang$applyTo; | |
return c | |
}() | |
}, d = function(a, b, c) { | |
return function() { | |
var d = null, e = function() { | |
var d = function(d, e, k, l) { | |
return cljs.core.vector.call(null, cljs.core.apply.call(null, a, d, e, k, l), cljs.core.apply.call(null, b, d, e, k, l), cljs.core.apply.call(null, c, d, e, k, l)) | |
}, e = function(a, b, c, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return d.call(this, a, b, c, f) | |
}; | |
e.cljs$lang$maxFixedArity = 3; | |
e.cljs$lang$applyTo = function(a) { | |
var b = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return d(b, c, e, a) | |
}; | |
e.cljs$core$IFn$_invoke$arity$variadic = d; | |
return e | |
}(), d = function(d, k, p, q) { | |
switch(arguments.length) { | |
case 0: | |
return cljs.core.vector.call(null, a.call(null), b.call(null), c.call(null)); | |
case 1: | |
return cljs.core.vector.call(null, a.call(null, d), b.call(null, d), c.call(null, d)); | |
case 2: | |
return cljs.core.vector.call(null, a.call(null, d, k), b.call(null, d, k), c.call(null, d, k)); | |
case 3: | |
return cljs.core.vector.call(null, a.call(null, d, k, p), b.call(null, d, k, p), c.call(null, d, k, p)); | |
default: | |
return e.cljs$core$IFn$_invoke$arity$variadic(d, k, p, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
d.cljs$lang$maxFixedArity = 3; | |
d.cljs$lang$applyTo = e.cljs$lang$applyTo; | |
return d | |
}() | |
}, e = function() { | |
var a = function(a, b, c, d) { | |
var e = cljs.core.list_STAR_.call(null, a, b, c, d); | |
return function() { | |
var a = null, b = function() { | |
return cljs.core.reduce.call(null, function(a, b) { | |
return cljs.core.conj.call(null, a, b.call(null)) | |
}, cljs.core.PersistentVector.EMPTY, e) | |
}, c = function(a) { | |
return cljs.core.reduce.call(null, function(b, c) { | |
return cljs.core.conj.call(null, b, c.call(null, a)) | |
}, cljs.core.PersistentVector.EMPTY, e) | |
}, d = function(a, b) { | |
return cljs.core.reduce.call(null, function(c, d) { | |
return cljs.core.conj.call(null, c, d.call(null, a, b)) | |
}, cljs.core.PersistentVector.EMPTY, e) | |
}, f = function(a, b, c) { | |
return cljs.core.reduce.call(null, function(d, e) { | |
return cljs.core.conj.call(null, d, e.call(null, a, b, c)) | |
}, cljs.core.PersistentVector.EMPTY, e) | |
}, g = function() { | |
var a = function(a, b, c, d) { | |
return cljs.core.reduce.call(null, function(e, f) { | |
return cljs.core.conj.call(null, e, cljs.core.apply.call(null, f, a, b, c, d)) | |
}, cljs.core.PersistentVector.EMPTY, e) | |
}, b = function(b, c, d, e) { | |
var f = null; | |
3 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return a.call(this, b, c, d, f) | |
}; | |
b.cljs$lang$maxFixedArity = 3; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, e, h, k) { | |
switch(arguments.length) { | |
case 0: | |
return b.call(this); | |
case 1: | |
return c.call(this, a); | |
case 2: | |
return d.call(this, a, e); | |
case 3: | |
return f.call(this, a, e, h); | |
default: | |
return g.cljs$core$IFn$_invoke$arity$variadic(a, e, h, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = g.cljs$lang$applyTo; | |
return a | |
}() | |
}, b = function(b, c, d, e) { | |
var g = null; | |
3 < arguments.length && (g = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return a.call(this, b, c, d, g) | |
}; | |
b.cljs$lang$maxFixedArity = 3; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, g, h, k) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, g); | |
case 3: | |
return d.call(this, a, g, h); | |
default: | |
return e.cljs$core$IFn$_invoke$arity$variadic(a, g, h, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = e.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
a.cljs$core$IFn$_invoke$arity$3 = d; | |
a.cljs$core$IFn$_invoke$arity$variadic = e.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.dorun = function() { | |
var a = null, b = function(a) { | |
for(;;) { | |
if(cljs.core.seq.call(null, a)) { | |
a = cljs.core.next.call(null, a) | |
}else { | |
return null | |
} | |
} | |
}, c = function(a, b) { | |
for(;;) { | |
if(cljs.core.truth_(function() { | |
var c = cljs.core.seq.call(null, b); | |
return c ? 0 < a : c | |
}())) { | |
var c = a - 1, g = cljs.core.next.call(null, b); | |
a = c; | |
b = g | |
}else { | |
return null | |
} | |
} | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.doall = function() { | |
var a = null, b = function(a) { | |
cljs.core.dorun.call(null, a); | |
return a | |
}, c = function(a, b) { | |
cljs.core.dorun.call(null, a, b); | |
return b | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.regexp_QMARK_ = function(a) { | |
return a instanceof RegExp | |
}; | |
cljs.core.re_matches = function(a, b) { | |
var c = a.exec(b); | |
return cljs.core._EQ_.call(null, cljs.core.first.call(null, c), b) ? 1 === cljs.core.count.call(null, c) ? cljs.core.first.call(null, c) : cljs.core.vec.call(null, c) : null | |
}; | |
cljs.core.re_find = function(a, b) { | |
var c = a.exec(b); | |
return null == c ? null : 1 === cljs.core.count.call(null, c) ? cljs.core.first.call(null, c) : cljs.core.vec.call(null, c) | |
}; | |
cljs.core.re_seq = function re_seq(b, c) { | |
var d = cljs.core.re_find.call(null, b, c), e = c.search(b), f = cljs.core.coll_QMARK_.call(null, d) ? cljs.core.first.call(null, d) : d, g = cljs.core.subs.call(null, c, e + cljs.core.count.call(null, f)); | |
return cljs.core.truth_(d) ? new cljs.core.LazySeq(null, !1, function() { | |
return cljs.core.cons.call(null, d, re_seq.call(null, b, g)) | |
}, null) : null | |
}; | |
cljs.core.re_pattern = function(a) { | |
var b = cljs.core.re_find.call(null, /^(?:\(\?([idmsux]*)\))?(.*)/, a); | |
cljs.core.nth.call(null, b, 0, null); | |
a = cljs.core.nth.call(null, b, 1, null); | |
b = cljs.core.nth.call(null, b, 2, null); | |
return RegExp(b, a) | |
}; | |
cljs.core.pr_sequential_writer = function(a, b, c, d, e, f, g) { | |
cljs.core._write.call(null, a, c); | |
cljs.core.seq.call(null, g) && b.call(null, cljs.core.first.call(null, g), a, f); | |
c = cljs.core.seq.call(null, cljs.core.next.call(null, g)); | |
g = null; | |
for(var h = 0, k = 0;;) { | |
if(k < h) { | |
var l = cljs.core._nth.call(null, g, k); | |
cljs.core._write.call(null, a, d); | |
b.call(null, l, a, f); | |
k += 1 | |
}else { | |
if(c = cljs.core.seq.call(null, c)) { | |
g = c, cljs.core.chunked_seq_QMARK_.call(null, g) ? (c = cljs.core.chunk_first.call(null, g), k = cljs.core.chunk_rest.call(null, g), g = c, h = cljs.core.count.call(null, c), c = k) : (c = cljs.core.first.call(null, g), cljs.core._write.call(null, a, d), b.call(null, c, a, f), c = cljs.core.next.call(null, g), g = null, h = 0), k = 0 | |
}else { | |
break | |
} | |
} | |
} | |
return cljs.core._write.call(null, a, e) | |
}; | |
cljs.core.write_all = function() { | |
var a = function(a, b) { | |
for(var e = cljs.core.seq.call(null, b), f = null, g = 0, h = 0;;) { | |
if(h < g) { | |
var k = cljs.core._nth.call(null, f, h); | |
cljs.core._write.call(null, a, k); | |
h += 1 | |
}else { | |
if(e = cljs.core.seq.call(null, e)) { | |
f = e, cljs.core.chunked_seq_QMARK_.call(null, f) ? (e = cljs.core.chunk_first.call(null, f), g = cljs.core.chunk_rest.call(null, f), f = e, k = cljs.core.count.call(null, e), e = g, g = k) : (k = cljs.core.first.call(null, f), cljs.core._write.call(null, a, k), e = cljs.core.next.call(null, f), f = null, g = 0), h = 0 | |
}else { | |
return null | |
} | |
} | |
} | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.string_print = function(a) { | |
cljs.core._STAR_print_fn_STAR_.call(null, a); | |
return null | |
}; | |
cljs.core.flush = function() { | |
return null | |
}; | |
cljs.core.char_escapes = {'"':'\\"', "\\":"\\\\", "\b":"\\b", "\f":"\\f", "\n":"\\n", "\r":"\\r", "\t":"\\t"}; | |
cljs.core.quote_string = function(a) { | |
return[cljs.core.str('"'), cljs.core.str(a.replace(RegExp('[\\\\"\b\f\n\r\t]', "g"), function(a) { | |
return cljs.core.char_escapes[a] | |
})), cljs.core.str('"')].join("") | |
}; | |
cljs.core.pr_writer = function pr_writer(b, c, d) { | |
if(null == b) { | |
return cljs.core._write.call(null, c, "nil") | |
} | |
if(void 0 === b) { | |
return cljs.core._write.call(null, c, "#\x3cundefined\x3e") | |
} | |
cljs.core.truth_(function() { | |
var c = cljs.core.get.call(null, d, "\ufdd0:meta"); | |
return cljs.core.truth_(c) ? (b ? (c = (c = b.cljs$lang$protocol_mask$partition0$ & 131072) ? c : b.cljs$core$IMeta$, c = c ? !0 : b.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IMeta, b)) : c = cljs.core.type_satisfies_.call(null, cljs.core.IMeta, b), cljs.core.truth_(c) ? cljs.core.meta.call(null, b) : c) : c | |
}()) && (cljs.core._write.call(null, c, "^"), pr_writer.call(null, cljs.core.meta.call(null, b), c, d), cljs.core._write.call(null, c, " ")); | |
if(null == b) { | |
return cljs.core._write.call(null, c, "nil") | |
} | |
if(b.cljs$lang$type) { | |
return b.cljs$lang$ctorPrWriter(b, c, d) | |
} | |
if(function() { | |
if(b) { | |
var c; | |
c = (c = b.cljs$lang$protocol_mask$partition0$ & 2147483648) ? c : b.cljs$core$IPrintWithWriter$; | |
return c ? !0 : !1 | |
} | |
return!1 | |
}()) { | |
return cljs.core._pr_writer.call(null, b, c, d) | |
} | |
if(function() { | |
var c = cljs.core.type.call(null, b) === Boolean; | |
return c ? c : "number" === typeof b | |
}()) { | |
return cljs.core._write.call(null, c, "" + cljs.core.str(b)) | |
} | |
if(b instanceof Array) { | |
return cljs.core.pr_sequential_writer.call(null, c, pr_writer, "#\x3cArray [", ", ", "]\x3e", d, b) | |
} | |
if(goog.isString(b)) { | |
if(cljs.core.keyword_QMARK_.call(null, b)) { | |
cljs.core._write.call(null, c, ":"); | |
var e = cljs.core.namespace.call(null, b); | |
cljs.core.truth_(e) && cljs.core.write_all.call(null, c, "" + cljs.core.str(e), "/"); | |
return cljs.core._write.call(null, c, cljs.core.name.call(null, b)) | |
} | |
return b instanceof cljs.core.Symbol ? (e = cljs.core.namespace.call(null, b), cljs.core.truth_(e) && cljs.core.write_all.call(null, c, "" + cljs.core.str(e), "/"), cljs.core._write.call(null, c, cljs.core.name.call(null, b))) : cljs.core.truth_((new cljs.core.Keyword("\ufdd0:readably")).call(null, d)) ? cljs.core._write.call(null, c, cljs.core.quote_string.call(null, b)) : cljs.core._write.call(null, c, b) | |
} | |
return cljs.core.fn_QMARK_.call(null, b) ? cljs.core.write_all.call(null, c, "#\x3c", "" + cljs.core.str(b), "\x3e") : b instanceof Date ? (e = function(b, c) { | |
for(var d = "" + cljs.core.str(b);;) { | |
if(cljs.core.count.call(null, d) < c) { | |
d = [cljs.core.str("0"), cljs.core.str(d)].join("") | |
}else { | |
return d | |
} | |
} | |
}, cljs.core.write_all.call(null, c, '#inst "', "" + cljs.core.str(b.getUTCFullYear()), "-", e.call(null, b.getUTCMonth() + 1, 2), "-", e.call(null, b.getUTCDate(), 2), "T", e.call(null, b.getUTCHours(), 2), ":", e.call(null, b.getUTCMinutes(), 2), ":", e.call(null, b.getUTCSeconds(), 2), ".", e.call(null, b.getUTCMilliseconds(), 3), "-", '00:00"')) : cljs.core.truth_(cljs.core.regexp_QMARK_.call(null, b)) ? cljs.core.write_all.call(null, c, '#"', b.source, '"') : function() { | |
if(b) { | |
var c; | |
c = (c = b.cljs$lang$protocol_mask$partition0$ & 2147483648) ? c : b.cljs$core$IPrintWithWriter$; | |
return c ? !0 : b.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IPrintWithWriter, b) | |
} | |
return cljs.core.type_satisfies_.call(null, cljs.core.IPrintWithWriter, b) | |
}() ? cljs.core._pr_writer.call(null, b, c, d) : cljs.core.write_all.call(null, c, "#\x3c", "" + cljs.core.str(b), "\x3e") | |
}; | |
cljs.core.pr_seq_writer = function(a, b, c) { | |
cljs.core.pr_writer.call(null, cljs.core.first.call(null, a), b, c); | |
a = cljs.core.seq.call(null, cljs.core.next.call(null, a)); | |
for(var d = null, e = 0, f = 0;;) { | |
if(f < e) { | |
var g = cljs.core._nth.call(null, d, f); | |
cljs.core._write.call(null, b, " "); | |
cljs.core.pr_writer.call(null, g, b, c); | |
f += 1 | |
}else { | |
if(a = cljs.core.seq.call(null, a)) { | |
d = a, cljs.core.chunked_seq_QMARK_.call(null, d) ? (a = cljs.core.chunk_first.call(null, d), e = cljs.core.chunk_rest.call(null, d), d = a, g = cljs.core.count.call(null, a), a = e, e = g) : (g = cljs.core.first.call(null, d), cljs.core._write.call(null, b, " "), cljs.core.pr_writer.call(null, g, b, c), a = cljs.core.next.call(null, d), d = null, e = 0), f = 0 | |
}else { | |
return null | |
} | |
} | |
} | |
}; | |
cljs.core.pr_sb_with_opts = function(a, b) { | |
var c = new goog.string.StringBuffer, d = new cljs.core.StringBufferWriter(c); | |
cljs.core.pr_seq_writer.call(null, a, d, b); | |
cljs.core._flush.call(null, d); | |
return c | |
}; | |
cljs.core.pr_str_with_opts = function(a, b) { | |
return cljs.core.empty_QMARK_.call(null, a) ? "" : "" + cljs.core.str(cljs.core.pr_sb_with_opts.call(null, a, b)) | |
}; | |
cljs.core.prn_str_with_opts = function(a, b) { | |
if(cljs.core.empty_QMARK_.call(null, a)) { | |
return"\n" | |
} | |
var c = cljs.core.pr_sb_with_opts.call(null, a, b); | |
c.append("\n"); | |
return"" + cljs.core.str(c) | |
}; | |
cljs.core.pr_with_opts = function(a, b) { | |
return cljs.core.string_print.call(null, cljs.core.pr_str_with_opts.call(null, a, b)) | |
}; | |
cljs.core.newline = function(a) { | |
cljs.core.string_print.call(null, "\n"); | |
return cljs.core.truth_(cljs.core.get.call(null, a, "\ufdd0:flush-on-newline")) ? cljs.core.flush.call(null) : null | |
}; | |
cljs.core.pr_str = function() { | |
var a = function(a) { | |
return cljs.core.pr_str_with_opts.call(null, a, cljs.core.pr_opts.call(null)) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.prn_str = function() { | |
var a = function(a) { | |
return cljs.core.prn_str_with_opts.call(null, a, cljs.core.pr_opts.call(null)) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.pr = function() { | |
var a = function(a) { | |
return cljs.core.pr_with_opts.call(null, a, cljs.core.pr_opts.call(null)) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.print = function() { | |
var a = function(a) { | |
return cljs.core.pr_with_opts.call(null, a, cljs.core.assoc.call(null, cljs.core.pr_opts.call(null), "\ufdd0:readably", !1)) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.print_str = function() { | |
var a = function(a) { | |
return cljs.core.pr_str_with_opts.call(null, a, cljs.core.assoc.call(null, cljs.core.pr_opts.call(null), "\ufdd0:readably", !1)) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.println = function() { | |
var a = function(a) { | |
cljs.core.pr_with_opts.call(null, a, cljs.core.assoc.call(null, cljs.core.pr_opts.call(null), "\ufdd0:readably", !1)); | |
return cljs.core.newline.call(null, cljs.core.pr_opts.call(null)) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.println_str = function() { | |
var a = function(a) { | |
return cljs.core.prn_str_with_opts.call(null, a, cljs.core.assoc.call(null, cljs.core.pr_opts.call(null), "\ufdd0:readably", !1)) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.prn = function() { | |
var a = function(a) { | |
cljs.core.pr_with_opts.call(null, a, cljs.core.pr_opts.call(null)); | |
return cljs.core.newline.call(null, cljs.core.pr_opts.call(null)) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.printf = function() { | |
var a = function(a, b) { | |
return cljs.core.print.call(null, cljs.core.apply.call(null, cljs.core.format, a, b)) | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.KeySeq.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.KeySeq.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.IndexedSeq.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.IndexedSeq.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.Subvec.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "[", " ", "]", c, a) | |
}; | |
cljs.core.ChunkedCons.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.ChunkedCons.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.PersistentTreeMap.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, function(a) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "", " ", "", c, a) | |
}, "{", ", ", "}", c, a) | |
}; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.PersistentArrayMap.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, function(a) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "", " ", "", c, a) | |
}, "{", ", ", "}", c, a) | |
}; | |
cljs.core.PersistentQueue.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.PersistentQueue.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "#queue [", " ", "]", c, cljs.core.seq.call(null, a)) | |
}; | |
cljs.core.LazySeq.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.LazySeq.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.RSeq.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.RSeq.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.PersistentTreeSet.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "#{", " ", "}", c, a) | |
}; | |
cljs.core.NodeSeq.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.NodeSeq.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.RedNode.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.RedNode.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "[", " ", "]", c, a) | |
}; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.ChunkedSeq.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.PersistentHashMap.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, function(a) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "", " ", "", c, a) | |
}, "{", ", ", "}", c, a) | |
}; | |
cljs.core.PersistentHashSet.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.PersistentHashSet.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "#{", " ", "}", c, a) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.PersistentVector.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "[", " ", "]", c, a) | |
}; | |
cljs.core.List.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.List.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.PersistentArrayMapSeq.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.EmptyList.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.EmptyList.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core._write.call(null, b, "()") | |
}; | |
cljs.core.BlackNode.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.BlackNode.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "[", " ", "]", c, a) | |
}; | |
cljs.core.Cons.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.Cons.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.Range.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.Range.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.ArrayNodeSeq.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.ValSeq.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.ValSeq.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.ObjMap.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.ObjMap.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, function(a) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "", " ", "", c, a) | |
}, "{", ", ", "}", c, a) | |
}; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$IPrintWithWriter$ = !0; | |
cljs.core.PersistentTreeMapSeq.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "(", " ", ")", c, a) | |
}; | |
cljs.core.PersistentVector.prototype.cljs$core$IComparable$ = !0; | |
cljs.core.PersistentVector.prototype.cljs$core$IComparable$_compare$arity$2 = function(a, b) { | |
return cljs.core.compare_indexed.call(null, a, b) | |
}; | |
cljs.core.Subvec.prototype.cljs$core$IComparable$ = !0; | |
cljs.core.Subvec.prototype.cljs$core$IComparable$_compare$arity$2 = function(a, b) { | |
return cljs.core.compare_indexed.call(null, a, b) | |
}; | |
cljs.core.Atom = function(a, b, c, d) { | |
this.state = a; | |
this.meta = b; | |
this.validator = c; | |
this.watches = d; | |
this.cljs$lang$protocol_mask$partition0$ = 2153938944; | |
this.cljs$lang$protocol_mask$partition1$ = 2 | |
}; | |
cljs.core.Atom.cljs$lang$type = !0; | |
cljs.core.Atom.cljs$lang$ctorStr = "cljs.core/Atom"; | |
cljs.core.Atom.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/Atom") | |
}; | |
cljs.core.Atom.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
return goog.getUid(a) | |
}; | |
cljs.core.Atom.prototype.cljs$core$IWatchable$_notify_watches$arity$3 = function(a, b, c) { | |
for(var d = cljs.core.seq.call(null, this.watches), e = null, f = 0, g = 0;;) { | |
if(g < f) { | |
var h = cljs.core._nth.call(null, e, g), k = cljs.core.nth.call(null, h, 0, null), h = cljs.core.nth.call(null, h, 1, null); | |
h.call(null, k, a, b, c); | |
g += 1 | |
}else { | |
if(d = cljs.core.seq.call(null, d)) { | |
cljs.core.chunked_seq_QMARK_.call(null, d) ? (e = cljs.core.chunk_first.call(null, d), d = cljs.core.chunk_rest.call(null, d), k = e, f = cljs.core.count.call(null, e), e = k) : (e = cljs.core.first.call(null, d), k = cljs.core.nth.call(null, e, 0, null), h = cljs.core.nth.call(null, e, 1, null), h.call(null, k, a, b, c), d = cljs.core.next.call(null, d), e = null, f = 0), g = 0 | |
}else { | |
return null | |
} | |
} | |
} | |
}; | |
cljs.core.Atom.prototype.cljs$core$IWatchable$_add_watch$arity$3 = function(a, b, c) { | |
return a.watches = cljs.core.assoc.call(null, this.watches, b, c) | |
}; | |
cljs.core.Atom.prototype.cljs$core$IWatchable$_remove_watch$arity$2 = function(a, b) { | |
return a.watches = cljs.core.dissoc.call(null, this.watches, b) | |
}; | |
cljs.core.Atom.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
cljs.core._write.call(null, b, "#\x3cAtom: "); | |
cljs.core.pr_writer.call(null, this.state, b, c); | |
return cljs.core._write.call(null, b, "\x3e") | |
}; | |
cljs.core.Atom.prototype.cljs$core$IMeta$_meta$arity$1 = function(a) { | |
return this.meta | |
}; | |
cljs.core.Atom.prototype.cljs$core$IDeref$_deref$arity$1 = function(a) { | |
return this.state | |
}; | |
cljs.core.Atom.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
return a === b | |
}; | |
cljs.core.__GT_Atom = function(a, b, c, d) { | |
return new cljs.core.Atom(a, b, c, d) | |
}; | |
cljs.core.atom = function() { | |
var a = null, b = function(a) { | |
return new cljs.core.Atom(a, null, null, null) | |
}, c = function() { | |
var a = function(a, b) { | |
var c = cljs.core.seq_QMARK_.call(null, b) ? cljs.core.apply.call(null, cljs.core.hash_map, b) : b, d = cljs.core.get.call(null, c, "\ufdd0:validator"), c = cljs.core.get.call(null, c, "\ufdd0:meta"); | |
return new cljs.core.Atom(a, c, d, null) | |
}, b = function(b, c) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, cljs.core.array_seq(arguments, 1)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 1; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.reset_BANG_ = function(a, b) { | |
var c = a.validator; | |
if(cljs.core.truth_(c) && !cljs.core.truth_(c.call(null, b))) { | |
throw Error([cljs.core.str("Assert failed: "), cljs.core.str("Validator rejected reference state"), cljs.core.str("\n"), cljs.core.str(cljs.core.pr_str.call(null, cljs.core.list(new cljs.core.Symbol(null, "validate", "validate", 1233162959, null), new cljs.core.Symbol(null, "new-value", "new-value", 972165309, null))))].join("")); | |
} | |
c = a.state; | |
a.state = b; | |
cljs.core._notify_watches.call(null, a, c, b); | |
return b | |
}; | |
cljs.core.swap_BANG_ = function() { | |
var a = null, b = function(a, b) { | |
return cljs.core.reset_BANG_.call(null, a, b.call(null, a.state)) | |
}, c = function(a, b, c) { | |
return cljs.core.reset_BANG_.call(null, a, b.call(null, a.state, c)) | |
}, d = function(a, b, c, d) { | |
return cljs.core.reset_BANG_.call(null, a, b.call(null, a.state, c, d)) | |
}, e = function(a, b, c, d, e) { | |
return cljs.core.reset_BANG_.call(null, a, b.call(null, a.state, c, d, e)) | |
}, f = function() { | |
var a = function(a, b, c, d, e, f) { | |
return cljs.core.reset_BANG_.call(null, a, cljs.core.apply.call(null, b, a.state, c, d, e, f)) | |
}, b = function(b, c, d, e, f, h) { | |
var r = null; | |
5 < arguments.length && (r = cljs.core.array_seq(Array.prototype.slice.call(arguments, 5), 0)); | |
return a.call(this, b, c, d, e, f, r) | |
}; | |
b.cljs$lang$maxFixedArity = 5; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var f = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var h = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, d, e, f, h, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, h, k, l, m, n) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, h); | |
case 3: | |
return c.call(this, a, h, k); | |
case 4: | |
return d.call(this, a, h, k, l); | |
case 5: | |
return e.call(this, a, h, k, l, m); | |
default: | |
return f.cljs$core$IFn$_invoke$arity$variadic(a, h, k, l, m, cljs.core.array_seq(arguments, 5)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 5; | |
a.cljs$lang$applyTo = f.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
a.cljs$core$IFn$_invoke$arity$4 = d; | |
a.cljs$core$IFn$_invoke$arity$5 = e; | |
a.cljs$core$IFn$_invoke$arity$variadic = f.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.compare_and_set_BANG_ = function(a, b, c) { | |
return cljs.core._EQ_.call(null, a.state, b) ? (cljs.core.reset_BANG_.call(null, a, c), !0) : !1 | |
}; | |
cljs.core.deref = function(a) { | |
return cljs.core._deref.call(null, a) | |
}; | |
cljs.core.set_validator_BANG_ = function(a, b) { | |
return a.validator = b | |
}; | |
cljs.core.get_validator = function(a) { | |
return a.validator | |
}; | |
cljs.core.alter_meta_BANG_ = function() { | |
var a = function(a, b, e) { | |
return a.meta = cljs.core.apply.call(null, b, a.meta, e) | |
}, b = function(b, d, e) { | |
var f = null; | |
2 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, d, f) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.reset_meta_BANG_ = function(a, b) { | |
return a.meta = b | |
}; | |
cljs.core.add_watch = function(a, b, c) { | |
return cljs.core._add_watch.call(null, a, b, c) | |
}; | |
cljs.core.remove_watch = function(a, b) { | |
return cljs.core._remove_watch.call(null, a, b) | |
}; | |
cljs.core.gensym_counter = null; | |
cljs.core.gensym = function() { | |
var a = null, b = function() { | |
return a.call(null, "G__") | |
}, c = function(a) { | |
null == cljs.core.gensym_counter && (cljs.core.gensym_counter = cljs.core.atom.call(null, 0)); | |
return cljs.core.symbol.call(null, [cljs.core.str(a), cljs.core.str(cljs.core.swap_BANG_.call(null, cljs.core.gensym_counter, cljs.core.inc))].join("")) | |
}, a = function(a) { | |
switch(arguments.length) { | |
case 0: | |
return b.call(this); | |
case 1: | |
return c.call(this, a) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$0 = b; | |
a.cljs$core$IFn$_invoke$arity$1 = c; | |
return a | |
}(); | |
cljs.core.fixture1 = 1; | |
cljs.core.fixture2 = 2; | |
cljs.core.Delay = function(a, b) { | |
this.state = a; | |
this.f = b; | |
this.cljs$lang$protocol_mask$partition1$ = 1; | |
this.cljs$lang$protocol_mask$partition0$ = 32768 | |
}; | |
cljs.core.Delay.cljs$lang$type = !0; | |
cljs.core.Delay.cljs$lang$ctorStr = "cljs.core/Delay"; | |
cljs.core.Delay.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/Delay") | |
}; | |
cljs.core.Delay.prototype.cljs$core$IPending$_realized_QMARK_$arity$1 = function(a) { | |
return(new cljs.core.Keyword("\ufdd0:done")).call(null, cljs.core.deref.call(null, this.state)) | |
}; | |
cljs.core.Delay.prototype.cljs$core$IDeref$_deref$arity$1 = function(a) { | |
var b = this; | |
return(new cljs.core.Keyword("\ufdd0:value")).call(null, cljs.core.swap_BANG_.call(null, b.state, function(a) { | |
a = cljs.core.seq_QMARK_.call(null, a) ? cljs.core.apply.call(null, cljs.core.hash_map, a) : a; | |
var d = cljs.core.get.call(null, a, "\ufdd0:done"); | |
return cljs.core.truth_(d) ? a : cljs.core.PersistentArrayMap.fromArray(["\ufdd0:done", !0, "\ufdd0:value", b.f.call(null)], !0) | |
})) | |
}; | |
cljs.core.__GT_Delay = function(a, b) { | |
return new cljs.core.Delay(a, b) | |
}; | |
cljs.core.delay_QMARK_ = function(a) { | |
return a instanceof cljs.core.Delay | |
}; | |
cljs.core.force = function(a) { | |
return cljs.core.delay_QMARK_.call(null, a) ? cljs.core.deref.call(null, a) : a | |
}; | |
cljs.core.realized_QMARK_ = function(a) { | |
return cljs.core._realized_QMARK_.call(null, a) | |
}; | |
cljs.core.IEncodeJS = {}; | |
cljs.core._clj__GT_js = function(a) { | |
if(a ? a.cljs$core$IEncodeJS$_clj__GT_js$arity$1 : a) { | |
return a.cljs$core$IEncodeJS$_clj__GT_js$arity$1(a) | |
} | |
var b; | |
b = cljs.core._clj__GT_js[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._clj__GT_js._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IEncodeJS.-clj-\x3ejs", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core._key__GT_js = function(a) { | |
if(a ? a.cljs$core$IEncodeJS$_key__GT_js$arity$1 : a) { | |
return a.cljs$core$IEncodeJS$_key__GT_js$arity$1(a) | |
} | |
var b; | |
b = cljs.core._key__GT_js[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._key__GT_js._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IEncodeJS.-key-\x3ejs", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.key__GT_js = function(a) { | |
return(a ? cljs.core.truth_(cljs.core.truth_(null) ? null : a.cljs$core$IEncodeJS$) || (a.cljs$lang$protocol_mask$partition$ ? 0 : cljs.core.type_satisfies_.call(null, cljs.core.IEncodeJS, a)) : cljs.core.type_satisfies_.call(null, cljs.core.IEncodeJS, a)) ? cljs.core._clj__GT_js.call(null, a) : function() { | |
var b = cljs.core.string_QMARK_.call(null, a); | |
return b || (b = "number" === typeof a) ? b : (b = cljs.core.keyword_QMARK_.call(null, a)) ? b : a instanceof cljs.core.Symbol | |
}() ? cljs.core.clj__GT_js.call(null, a) : cljs.core.pr_str.call(null, a) | |
}; | |
cljs.core.clj__GT_js = function clj__GT_js(b) { | |
if(null == b) { | |
return null | |
} | |
if(b ? cljs.core.truth_(cljs.core.truth_(null) ? null : b.cljs$core$IEncodeJS$) || (b.cljs$lang$protocol_mask$partition$ ? 0 : cljs.core.type_satisfies_.call(null, cljs.core.IEncodeJS, b)) : cljs.core.type_satisfies_.call(null, cljs.core.IEncodeJS, b)) { | |
return cljs.core._clj__GT_js.call(null, b) | |
} | |
if(cljs.core.keyword_QMARK_.call(null, b)) { | |
return cljs.core.name.call(null, b) | |
} | |
if(b instanceof cljs.core.Symbol) { | |
return"" + cljs.core.str(b) | |
} | |
if(cljs.core.map_QMARK_.call(null, b)) { | |
var c = {}; | |
b = cljs.core.seq.call(null, b); | |
for(var d = null, e = 0, f = 0;;) { | |
if(f < e) { | |
var g = cljs.core._nth.call(null, d, f), h = cljs.core.nth.call(null, g, 0, null), g = cljs.core.nth.call(null, g, 1, null); | |
c[cljs.core.key__GT_js.call(null, h)] = clj__GT_js.call(null, g); | |
f += 1 | |
}else { | |
if(b = cljs.core.seq.call(null, b)) { | |
cljs.core.chunked_seq_QMARK_.call(null, b) ? (e = cljs.core.chunk_first.call(null, b), b = cljs.core.chunk_rest.call(null, b), d = e, e = cljs.core.count.call(null, e)) : (e = cljs.core.first.call(null, b), d = cljs.core.nth.call(null, e, 0, null), e = cljs.core.nth.call(null, e, 1, null), c[cljs.core.key__GT_js.call(null, d)] = clj__GT_js.call(null, e), b = cljs.core.next.call(null, b), d = null, e = 0), f = 0 | |
}else { | |
break | |
} | |
} | |
} | |
return c | |
} | |
return cljs.core.coll_QMARK_.call(null, b) ? cljs.core.apply.call(null, cljs.core.array, cljs.core.map.call(null, clj__GT_js, b)) : b | |
}; | |
cljs.core.IEncodeClojure = {}; | |
cljs.core._js__GT_clj = function(a, b) { | |
if(a ? a.cljs$core$IEncodeClojure$_js__GT_clj$arity$2 : a) { | |
return a.cljs$core$IEncodeClojure$_js__GT_clj$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._js__GT_clj[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._js__GT_clj._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IEncodeClojure.-js-\x3eclj", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.js__GT_clj = function() { | |
var a = null, b = function(b) { | |
return a.call(null, b, cljs.core.PersistentArrayMap.fromArray(["\ufdd0:keywordize-keys", !1], !0)) | |
}, c = function() { | |
var a = function(a, b) { | |
if(function() { | |
var b = cljs.core.IEncodeClojure; | |
return b ? cljs.core.truth_(cljs.core.truth_(null) ? null : b.cljs$core$x$) ? !0 : b.cljs$lang$protocol_mask$partition$ ? !1 : cljs.core.type_satisfies_.call(null, a, b) : cljs.core.type_satisfies_.call(null, a, b) | |
}()) { | |
return cljs.core._js__GT_clj.call(null, a, cljs.core.apply.call(null, cljs.core.array_map, b)) | |
} | |
if(cljs.core.seq.call(null, b)) { | |
var c = cljs.core.seq_QMARK_.call(null, b) ? cljs.core.apply.call(null, cljs.core.hash_map, b) : b, d = cljs.core.get.call(null, c, "\ufdd0:keywordize-keys"), e = cljs.core.truth_(d) ? cljs.core.keyword : cljs.core.str; | |
return function(a, b, c, d) { | |
return function s(e) { | |
return cljs.core.seq_QMARK_.call(null, e) ? cljs.core.doall.call(null, cljs.core.map.call(null, s, e)) : cljs.core.coll_QMARK_.call(null, e) ? cljs.core.into.call(null, cljs.core.empty.call(null, e), cljs.core.map.call(null, s, e)) : e instanceof Array ? cljs.core.vec.call(null, cljs.core.map.call(null, s, e)) : cljs.core.type.call(null, e) === Object ? cljs.core.into.call(null, cljs.core.PersistentArrayMap.EMPTY, function() { | |
return function(a, b, c, d) { | |
return function R(f) { | |
return new cljs.core.LazySeq(null, !1, function(a, b, c, d) { | |
return function() { | |
for(;;) { | |
var a = cljs.core.seq.call(null, f); | |
if(a) { | |
if(cljs.core.chunked_seq_QMARK_.call(null, a)) { | |
var b = cljs.core.chunk_first.call(null, a), c = cljs.core.count.call(null, b), g = cljs.core.chunk_buffer.call(null, c); | |
a: { | |
for(var h = 0;;) { | |
if(h < c) { | |
var k = cljs.core._nth.call(null, b, h); | |
cljs.core.chunk_append.call(null, g, cljs.core.PersistentVector.fromArray([d.call(null, k), s.call(null, e[k])], !0)); | |
h += 1 | |
}else { | |
b = !0; | |
break a | |
} | |
} | |
b = void 0 | |
} | |
return b ? cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, g), R.call(null, cljs.core.chunk_rest.call(null, a))) : cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, g), null) | |
} | |
g = cljs.core.first.call(null, a); | |
return cljs.core.cons.call(null, cljs.core.PersistentVector.fromArray([d.call(null, g), s.call(null, e[g])], !0), R.call(null, cljs.core.rest.call(null, a))) | |
} | |
return null | |
} | |
} | |
}(a, b, c, d), null) | |
} | |
}(a, b, c, d).call(null, cljs.core.js_keys.call(null, e)) | |
}()) : e | |
} | |
}(b, c, d, e).call(null, a) | |
} | |
return null | |
}, b = function(b, c) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, cljs.core.array_seq(arguments, 1)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 1; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.memoize = function(a) { | |
var b = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY); | |
return function() { | |
var c = function(c) { | |
var d = cljs.core.get.call(null, cljs.core.deref.call(null, b), c); | |
if(cljs.core.truth_(d)) { | |
return d | |
} | |
d = cljs.core.apply.call(null, a, c); | |
cljs.core.swap_BANG_.call(null, b, cljs.core.assoc, c, d); | |
return d | |
}, d = function(a) { | |
var b = null; | |
0 < arguments.length && (b = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return c.call(this, b) | |
}; | |
d.cljs$lang$maxFixedArity = 0; | |
d.cljs$lang$applyTo = function(a) { | |
a = cljs.core.seq(a); | |
return c(a) | |
}; | |
d.cljs$core$IFn$_invoke$arity$variadic = c; | |
return d | |
}() | |
}; | |
cljs.core.trampoline = function() { | |
var a = null, b = function(a) { | |
for(;;) { | |
if(a = a.call(null), !cljs.core.fn_QMARK_.call(null, a)) { | |
return a | |
} | |
} | |
}, c = function() { | |
var b = function(b, c) { | |
return a.call(null, function() { | |
return cljs.core.apply.call(null, b, c) | |
}) | |
}, c = function(a, c) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return b.call(this, a, e) | |
}; | |
c.cljs$lang$maxFixedArity = 1; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, cljs.core.array_seq(arguments, 1)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 1; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
cljs.core.rand = function() { | |
var a = null, b = function() { | |
return a.call(null, 1) | |
}, c = function(a) { | |
return Math.random.call(null) * a | |
}, a = function(a) { | |
switch(arguments.length) { | |
case 0: | |
return b.call(this); | |
case 1: | |
return c.call(this, a) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$0 = b; | |
a.cljs$core$IFn$_invoke$arity$1 = c; | |
return a | |
}(); | |
cljs.core.rand_int = function(a) { | |
return Math.floor.call(null, Math.random.call(null) * a) | |
}; | |
cljs.core.rand_nth = function(a) { | |
return cljs.core.nth.call(null, a, cljs.core.rand_int.call(null, cljs.core.count.call(null, a))) | |
}; | |
cljs.core.group_by = function(a, b) { | |
return cljs.core.reduce.call(null, function(b, d) { | |
var e = a.call(null, d); | |
return cljs.core.assoc.call(null, b, e, cljs.core.conj.call(null, cljs.core.get.call(null, b, e, cljs.core.PersistentVector.EMPTY), d)) | |
}, cljs.core.PersistentArrayMap.EMPTY, b) | |
}; | |
cljs.core.make_hierarchy = function() { | |
return cljs.core.PersistentArrayMap.fromArray(["\ufdd0:parents", cljs.core.PersistentArrayMap.EMPTY, "\ufdd0:descendants", cljs.core.PersistentArrayMap.EMPTY, "\ufdd0:ancestors", cljs.core.PersistentArrayMap.EMPTY], !0) | |
}; | |
cljs.core._global_hierarchy = null; | |
cljs.core.get_global_hierarchy = function() { | |
null == cljs.core._global_hierarchy && (cljs.core._global_hierarchy = cljs.core.atom.call(null, cljs.core.make_hierarchy.call(null))); | |
return cljs.core._global_hierarchy | |
}; | |
cljs.core.swap_global_hierarchy_BANG_ = function() { | |
var a = function(a, b) { | |
return cljs.core.apply.call(null, cljs.core.swap_BANG_, cljs.core.get_global_hierarchy.call(null), a, b) | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.isa_QMARK_ = function() { | |
var a = null, b = function(b, c) { | |
return a.call(null, cljs.core.deref.call(null, cljs.core.get_global_hierarchy.call(null)), b, c) | |
}, c = function(b, c, f) { | |
var g = cljs.core._EQ_.call(null, c, f); | |
if(!g && !(g = cljs.core.contains_QMARK_.call(null, (new cljs.core.Keyword("\ufdd0:ancestors")).call(null, b).call(null, c), f)) && (g = cljs.core.vector_QMARK_.call(null, f)) && (g = cljs.core.vector_QMARK_.call(null, c))) { | |
if(g = cljs.core.count.call(null, f) === cljs.core.count.call(null, c)) { | |
for(var g = !0, h = 0;;) { | |
var k; | |
k = (k = cljs.core.not.call(null, g)) ? k : h === cljs.core.count.call(null, f); | |
if(k) { | |
return g | |
} | |
g = a.call(null, b, c.call(null, h), f.call(null, h)); | |
h += 1 | |
} | |
}else { | |
return g | |
} | |
}else { | |
return g | |
} | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.parents = function() { | |
var a = null, b = function(b) { | |
return a.call(null, cljs.core.deref.call(null, cljs.core.get_global_hierarchy.call(null)), b) | |
}, c = function(a, b) { | |
return cljs.core.not_empty.call(null, cljs.core.get.call(null, (new cljs.core.Keyword("\ufdd0:parents")).call(null, a), b)) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.ancestors = function() { | |
var a = null, b = function(b) { | |
return a.call(null, cljs.core.deref.call(null, cljs.core.get_global_hierarchy.call(null)), b) | |
}, c = function(a, b) { | |
return cljs.core.not_empty.call(null, cljs.core.get.call(null, (new cljs.core.Keyword("\ufdd0:ancestors")).call(null, a), b)) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.descendants = function() { | |
var a = null, b = function(b) { | |
return a.call(null, cljs.core.deref.call(null, cljs.core.get_global_hierarchy.call(null)), b) | |
}, c = function(a, b) { | |
return cljs.core.not_empty.call(null, cljs.core.get.call(null, (new cljs.core.Keyword("\ufdd0:descendants")).call(null, a), b)) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
cljs.core.derive = function() { | |
var a = null, b = function(b, c) { | |
if(!cljs.core.truth_(cljs.core.namespace.call(null, c))) { | |
throw Error([cljs.core.str("Assert failed: "), cljs.core.str(cljs.core.pr_str.call(null, cljs.core.list(new cljs.core.Symbol(null, "namespace", "namespace", -388313324, null), new cljs.core.Symbol(null, "parent", "parent", 1659011683, null))))].join("")); | |
} | |
cljs.core.swap_global_hierarchy_BANG_.call(null, a, b, c); | |
return null | |
}, c = function(a, b, c) { | |
if(!cljs.core.not_EQ_.call(null, b, c)) { | |
throw Error([cljs.core.str("Assert failed: "), cljs.core.str(cljs.core.pr_str.call(null, cljs.core.list(new cljs.core.Symbol(null, "not\x3d", "not\x3d", -1637144189, null), new cljs.core.Symbol(null, "tag", "tag", -1640416941, null), new cljs.core.Symbol(null, "parent", "parent", 1659011683, null))))].join("")); | |
} | |
var g = (new cljs.core.Keyword("\ufdd0:parents")).call(null, a), h = (new cljs.core.Keyword("\ufdd0:descendants")).call(null, a), k = (new cljs.core.Keyword("\ufdd0:ancestors")).call(null, a), l = function(a, b, c) { | |
return function(d, e, f, g, h) { | |
return cljs.core.reduce.call(null, function(a, b, c) { | |
return function(a, b) { | |
return cljs.core.assoc.call(null, a, b, cljs.core.reduce.call(null, cljs.core.conj, cljs.core.get.call(null, h, b, cljs.core.PersistentHashSet.EMPTY), cljs.core.cons.call(null, g, h.call(null, g)))) | |
} | |
}(a, b, c), d, cljs.core.cons.call(null, e, f.call(null, e))) | |
} | |
}(g, h, k); | |
if(cljs.core.contains_QMARK_.call(null, g.call(null, b), c)) { | |
b = null | |
}else { | |
if(cljs.core.contains_QMARK_.call(null, k.call(null, b), c)) { | |
throw Error([cljs.core.str(b), cljs.core.str("already has"), cljs.core.str(c), cljs.core.str("as ancestor")].join("")); | |
} | |
if(cljs.core.contains_QMARK_.call(null, k.call(null, c), b)) { | |
throw Error([cljs.core.str("Cyclic derivation:"), cljs.core.str(c), cljs.core.str("has"), cljs.core.str(b), cljs.core.str("as ancestor")].join("")); | |
} | |
b = cljs.core.PersistentArrayMap.fromArray(["\ufdd0:parents", cljs.core.assoc.call(null, (new cljs.core.Keyword("\ufdd0:parents")).call(null, a), b, cljs.core.conj.call(null, cljs.core.get.call(null, g, b, cljs.core.PersistentHashSet.EMPTY), c)), "\ufdd0:ancestors", l.call(null, (new cljs.core.Keyword("\ufdd0:ancestors")).call(null, a), b, h, c, k), "\ufdd0:descendants", l.call(null, (new cljs.core.Keyword("\ufdd0:descendants")).call(null, a), c, k, b, h)], !0) | |
} | |
return cljs.core.truth_(b) ? b : a | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.underive = function() { | |
var a = null, b = function(b, c) { | |
cljs.core.swap_global_hierarchy_BANG_.call(null, a, b, c); | |
return null | |
}, c = function(a, b, c) { | |
var g = (new cljs.core.Keyword("\ufdd0:parents")).call(null, a), h = cljs.core.truth_(g.call(null, b)) ? cljs.core.disj.call(null, g.call(null, b), c) : cljs.core.PersistentHashSet.EMPTY, k = cljs.core.truth_(cljs.core.not_empty.call(null, h)) ? cljs.core.assoc.call(null, g, b, h) : cljs.core.dissoc.call(null, g, b), h = cljs.core.flatten.call(null, cljs.core.map.call(null, function(a, b, c) { | |
return function(a) { | |
return cljs.core.cons.call(null, cljs.core.first.call(null, a), cljs.core.interpose.call(null, cljs.core.first.call(null, a), cljs.core.second.call(null, a))) | |
} | |
}(g, h, k), cljs.core.seq.call(null, k))); | |
return cljs.core.contains_QMARK_.call(null, g.call(null, b), c) ? cljs.core.reduce.call(null, function(a, b) { | |
return cljs.core.apply.call(null, cljs.core.derive, a, b) | |
}, cljs.core.make_hierarchy.call(null), cljs.core.partition.call(null, 2, h)) : a | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.reset_cache = function(a, b, c, d) { | |
cljs.core.swap_BANG_.call(null, a, function(a) { | |
return cljs.core.deref.call(null, b) | |
}); | |
return cljs.core.swap_BANG_.call(null, c, function(a) { | |
return cljs.core.deref.call(null, d) | |
}) | |
}; | |
cljs.core.prefers_STAR_ = function prefers_STAR_(b, c, d) { | |
var e = cljs.core.deref.call(null, d).call(null, b), e = cljs.core.truth_(cljs.core.truth_(e) ? e.call(null, c) : e) ? !0 : null; | |
if(cljs.core.truth_(e)) { | |
return e | |
} | |
e = function() { | |
for(var e = cljs.core.parents.call(null, c);;) { | |
if(0 < cljs.core.count.call(null, e)) { | |
cljs.core.truth_(prefers_STAR_.call(null, b, cljs.core.first.call(null, e), d)), e = cljs.core.rest.call(null, e) | |
}else { | |
return null | |
} | |
} | |
}(); | |
if(cljs.core.truth_(e)) { | |
return e | |
} | |
e = function() { | |
for(var e = cljs.core.parents.call(null, b);;) { | |
if(0 < cljs.core.count.call(null, e)) { | |
cljs.core.truth_(prefers_STAR_.call(null, cljs.core.first.call(null, e), c, d)), e = cljs.core.rest.call(null, e) | |
}else { | |
return null | |
} | |
} | |
}(); | |
return cljs.core.truth_(e) ? e : !1 | |
}; | |
cljs.core.dominates = function(a, b, c) { | |
c = cljs.core.prefers_STAR_.call(null, a, b, c); | |
return cljs.core.truth_(c) ? c : cljs.core.isa_QMARK_.call(null, a, b) | |
}; | |
cljs.core.find_and_cache_best_method = function find_and_cache_best_method(b, c, d, e, f, g, h) { | |
var k = cljs.core.reduce.call(null, function(e, g) { | |
var h = cljs.core.nth.call(null, g, 0, null); | |
cljs.core.nth.call(null, g, 1, null); | |
if(cljs.core.isa_QMARK_.call(null, cljs.core.deref.call(null, d), c, h)) { | |
var k = cljs.core.truth_(function() { | |
var b = null == e; | |
return b ? b : cljs.core.dominates.call(null, h, cljs.core.first.call(null, e), f) | |
}()) ? g : e; | |
if(!cljs.core.truth_(cljs.core.dominates.call(null, cljs.core.first.call(null, k), h, f))) { | |
throw Error([cljs.core.str("Multiple methods in multimethod '"), cljs.core.str(b), cljs.core.str("' match dispatch value: "), cljs.core.str(c), cljs.core.str(" -\x3e "), cljs.core.str(h), cljs.core.str(" and "), cljs.core.str(cljs.core.first.call(null, k)), cljs.core.str(", and neither is preferred")].join("")); | |
} | |
return k | |
} | |
return e | |
}, null, cljs.core.deref.call(null, e)); | |
if(cljs.core.truth_(k)) { | |
if(cljs.core._EQ_.call(null, cljs.core.deref.call(null, h), cljs.core.deref.call(null, d))) { | |
return cljs.core.swap_BANG_.call(null, g, cljs.core.assoc, c, cljs.core.second.call(null, k)), cljs.core.second.call(null, k) | |
} | |
cljs.core.reset_cache.call(null, g, e, h, d); | |
return find_and_cache_best_method.call(null, b, c, d, e, f, g, h) | |
} | |
return null | |
}; | |
cljs.core.IMultiFn = {}; | |
cljs.core._reset = function(a) { | |
if(a ? a.cljs$core$IMultiFn$_reset$arity$1 : a) { | |
return a.cljs$core$IMultiFn$_reset$arity$1(a) | |
} | |
var b; | |
b = cljs.core._reset[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._reset._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IMultiFn.-reset", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core._add_method = function(a, b, c) { | |
if(a ? a.cljs$core$IMultiFn$_add_method$arity$3 : a) { | |
return a.cljs$core$IMultiFn$_add_method$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._add_method[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._add_method._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "IMultiFn.-add-method", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core._remove_method = function(a, b) { | |
if(a ? a.cljs$core$IMultiFn$_remove_method$arity$2 : a) { | |
return a.cljs$core$IMultiFn$_remove_method$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._remove_method[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._remove_method._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IMultiFn.-remove-method", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core._prefer_method = function(a, b, c) { | |
if(a ? a.cljs$core$IMultiFn$_prefer_method$arity$3 : a) { | |
return a.cljs$core$IMultiFn$_prefer_method$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core._prefer_method[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core._prefer_method._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "IMultiFn.-prefer-method", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core._get_method = function(a, b) { | |
if(a ? a.cljs$core$IMultiFn$_get_method$arity$2 : a) { | |
return a.cljs$core$IMultiFn$_get_method$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._get_method[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._get_method._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IMultiFn.-get-method", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core._methods = function(a) { | |
if(a ? a.cljs$core$IMultiFn$_methods$arity$1 : a) { | |
return a.cljs$core$IMultiFn$_methods$arity$1(a) | |
} | |
var b; | |
b = cljs.core._methods[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._methods._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IMultiFn.-methods", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core._prefers = function(a) { | |
if(a ? a.cljs$core$IMultiFn$_prefers$arity$1 : a) { | |
return a.cljs$core$IMultiFn$_prefers$arity$1(a) | |
} | |
var b; | |
b = cljs.core._prefers[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core._prefers._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IMultiFn.-prefers", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core._dispatch = function(a, b) { | |
if(a ? a.cljs$core$IMultiFn$_dispatch$arity$2 : a) { | |
return a.cljs$core$IMultiFn$_dispatch$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core._dispatch[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core._dispatch._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "IMultiFn.-dispatch", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.do_dispatch = function(a, b, c) { | |
b = cljs.core.apply.call(null, b, c); | |
a = cljs.core._get_method.call(null, a, b); | |
if(!cljs.core.truth_(a)) { | |
throw Error([cljs.core.str("No method in multimethod '"), cljs.core.str(cljs.core.name), cljs.core.str("' for dispatch value: "), cljs.core.str(b)].join("")); | |
} | |
return cljs.core.apply.call(null, a, c) | |
}; | |
cljs.core.MultiFn = function(a, b, c, d, e, f, g, h) { | |
this.name = a; | |
this.dispatch_fn = b; | |
this.default_dispatch_val = c; | |
this.hierarchy = d; | |
this.method_table = e; | |
this.prefer_table = f; | |
this.method_cache = g; | |
this.cached_hierarchy = h; | |
this.cljs$lang$protocol_mask$partition0$ = 4194304; | |
this.cljs$lang$protocol_mask$partition1$ = 256 | |
}; | |
cljs.core.MultiFn.cljs$lang$type = !0; | |
cljs.core.MultiFn.cljs$lang$ctorStr = "cljs.core/MultiFn"; | |
cljs.core.MultiFn.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/MultiFn") | |
}; | |
cljs.core.MultiFn.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
return goog.getUid(a) | |
}; | |
cljs.core.MultiFn.prototype.cljs$core$IMultiFn$_reset$arity$1 = function(a) { | |
cljs.core.swap_BANG_.call(null, this.method_table, function(a) { | |
return cljs.core.PersistentArrayMap.EMPTY | |
}); | |
cljs.core.swap_BANG_.call(null, this.method_cache, function(a) { | |
return cljs.core.PersistentArrayMap.EMPTY | |
}); | |
cljs.core.swap_BANG_.call(null, this.prefer_table, function(a) { | |
return cljs.core.PersistentArrayMap.EMPTY | |
}); | |
cljs.core.swap_BANG_.call(null, this.cached_hierarchy, function(a) { | |
return null | |
}); | |
return a | |
}; | |
cljs.core.MultiFn.prototype.cljs$core$IMultiFn$_add_method$arity$3 = function(a, b, c) { | |
cljs.core.swap_BANG_.call(null, this.method_table, cljs.core.assoc, b, c); | |
cljs.core.reset_cache.call(null, this.method_cache, this.method_table, this.cached_hierarchy, this.hierarchy); | |
return a | |
}; | |
cljs.core.MultiFn.prototype.cljs$core$IMultiFn$_remove_method$arity$2 = function(a, b) { | |
cljs.core.swap_BANG_.call(null, this.method_table, cljs.core.dissoc, b); | |
cljs.core.reset_cache.call(null, this.method_cache, this.method_table, this.cached_hierarchy, this.hierarchy); | |
return a | |
}; | |
cljs.core.MultiFn.prototype.cljs$core$IMultiFn$_get_method$arity$2 = function(a, b) { | |
cljs.core._EQ_.call(null, cljs.core.deref.call(null, this.cached_hierarchy), cljs.core.deref.call(null, this.hierarchy)) || cljs.core.reset_cache.call(null, this.method_cache, this.method_table, this.cached_hierarchy, this.hierarchy); | |
var c = cljs.core.deref.call(null, this.method_cache).call(null, b); | |
if(cljs.core.truth_(c)) { | |
return c | |
} | |
c = cljs.core.find_and_cache_best_method.call(null, this.name, b, this.hierarchy, this.method_table, this.prefer_table, this.method_cache, this.cached_hierarchy); | |
return cljs.core.truth_(c) ? c : cljs.core.deref.call(null, this.method_table).call(null, this.default_dispatch_val) | |
}; | |
cljs.core.MultiFn.prototype.cljs$core$IMultiFn$_prefer_method$arity$3 = function(a, b, c) { | |
if(cljs.core.truth_(cljs.core.prefers_STAR_.call(null, b, c, this.prefer_table))) { | |
throw Error([cljs.core.str("Preference conflict in multimethod '"), cljs.core.str(this.name), cljs.core.str("': "), cljs.core.str(c), cljs.core.str(" is already preferred to "), cljs.core.str(b)].join("")); | |
} | |
cljs.core.swap_BANG_.call(null, this.prefer_table, function(a) { | |
return cljs.core.assoc.call(null, a, b, cljs.core.conj.call(null, cljs.core.get.call(null, a, b, cljs.core.PersistentHashSet.EMPTY), c)) | |
}); | |
return cljs.core.reset_cache.call(null, this.method_cache, this.method_table, this.cached_hierarchy, this.hierarchy) | |
}; | |
cljs.core.MultiFn.prototype.cljs$core$IMultiFn$_methods$arity$1 = function(a) { | |
return cljs.core.deref.call(null, this.method_table) | |
}; | |
cljs.core.MultiFn.prototype.cljs$core$IMultiFn$_prefers$arity$1 = function(a) { | |
return cljs.core.deref.call(null, this.prefer_table) | |
}; | |
cljs.core.MultiFn.prototype.cljs$core$IMultiFn$_dispatch$arity$2 = function(a, b) { | |
return cljs.core.do_dispatch.call(null, a, this.dispatch_fn, b) | |
}; | |
cljs.core.__GT_MultiFn = function(a, b, c, d, e, f, g, h) { | |
return new cljs.core.MultiFn(a, b, c, d, e, f, g, h) | |
}; | |
cljs.core.MultiFn.prototype.call = function() { | |
var a = function(a, b) { | |
return cljs.core._dispatch.call(null, this, b) | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.MultiFn.prototype.apply = function(a, b) { | |
return cljs.core._dispatch.call(null, this, b) | |
}; | |
cljs.core.remove_all_methods = function(a) { | |
return cljs.core._reset.call(null, a) | |
}; | |
cljs.core.remove_method = function(a, b) { | |
return cljs.core._remove_method.call(null, a, b) | |
}; | |
cljs.core.prefer_method = function(a, b, c) { | |
return cljs.core._prefer_method.call(null, a, b, c) | |
}; | |
cljs.core.methods$ = function(a) { | |
return cljs.core._methods.call(null, a) | |
}; | |
cljs.core.get_method = function(a, b) { | |
return cljs.core._get_method.call(null, a, b) | |
}; | |
cljs.core.prefers = function(a) { | |
return cljs.core._prefers.call(null, a) | |
}; | |
cljs.core.UUID = function(a) { | |
this.uuid = a; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 2153775104 | |
}; | |
cljs.core.UUID.cljs$lang$type = !0; | |
cljs.core.UUID.cljs$lang$ctorStr = "cljs.core/UUID"; | |
cljs.core.UUID.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/UUID") | |
}; | |
cljs.core.UUID.prototype.cljs$core$IHash$_hash$arity$1 = function(a) { | |
return goog.string.hashCode(cljs.core.pr_str.call(null, a)) | |
}; | |
cljs.core.UUID.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core._write.call(null, b, [cljs.core.str('#uuid "'), cljs.core.str(this.uuid), cljs.core.str('"')].join("")) | |
}; | |
cljs.core.UUID.prototype.cljs$core$IEquiv$_equiv$arity$2 = function(a, b) { | |
var c = b instanceof cljs.core.UUID; | |
return c ? this.uuid === b.uuid : c | |
}; | |
cljs.core.__GT_UUID = function(a) { | |
return new cljs.core.UUID(a) | |
}; | |
cljs.core.ExceptionInfo = function(a, b, c) { | |
this.message = a; | |
this.data = b; | |
this.cause = c | |
}; | |
cljs.core.ExceptionInfo.cljs$lang$type = !0; | |
cljs.core.ExceptionInfo.cljs$lang$ctorStr = "cljs.core/ExceptionInfo"; | |
cljs.core.ExceptionInfo.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core/ExceptionInfo") | |
}; | |
cljs.core.__GT_ExceptionInfo = function(a, b, c) { | |
return new cljs.core.ExceptionInfo(a, b, c) | |
}; | |
cljs.core.ExceptionInfo.prototype = Error(); | |
cljs.core.ExceptionInfo.prototype.constructor = cljs.core.ExceptionInfo; | |
cljs.core.ex_info = function() { | |
var a = null, b = function(a, b) { | |
return new cljs.core.ExceptionInfo(a, b, null) | |
}, c = function(a, b, c) { | |
return new cljs.core.ExceptionInfo(a, b, c) | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.ex_data = function(a) { | |
return a instanceof cljs.core.ExceptionInfo ? a.data : null | |
}; | |
cljs.core.ex_message = function(a) { | |
return a instanceof Error ? a.message : null | |
}; | |
cljs.core.ex_cause = function(a) { | |
return a instanceof cljs.core.ExceptionInfo ? a.cause : null | |
}; | |
cljs.core.comparator = function(a) { | |
return function(b, c) { | |
return cljs.core.truth_(a.call(null, b, c)) ? -1 : cljs.core.truth_(a.call(null, c, b)) ? 1 : 0 | |
} | |
}; | |
cljs.core.special_symbol_QMARK_ = function(a) { | |
return cljs.core.contains_QMARK_.call(null, cljs.core.PersistentHashSet.fromArray([new cljs.core.Symbol(null, "deftype*", "deftype*", -978581244, null), null, new cljs.core.Symbol(null, "new", "new", -1640422567, null), null, new cljs.core.Symbol(null, "try*", "try*", -1636962424, null), null, new cljs.core.Symbol(null, "quote", "quote", -1532577739, null), null, new cljs.core.Symbol(null, "\x26", "\x26", -1640531489, null), null, new cljs.core.Symbol(null, "set!", "set!", -1637004872, null), null, | |
new cljs.core.Symbol(null, "recur", "recur", -1532142362, null), null, new cljs.core.Symbol(null, ".", ".", -1640531481, null), null, new cljs.core.Symbol(null, "ns", "ns", -1640528002, null), null, new cljs.core.Symbol(null, "do", "do", -1640528316, null), null, new cljs.core.Symbol(null, "fn*", "fn*", -1640430053, null), null, new cljs.core.Symbol(null, "throw", "throw", -1530191713, null), null, new cljs.core.Symbol(null, "letfn*", "letfn*", 1548249632, null), null, new cljs.core.Symbol(null, | |
"js*", "js*", -1640426054, null), null, new cljs.core.Symbol(null, "defrecord*", "defrecord*", 774272013, null), null, new cljs.core.Symbol(null, "let*", "let*", -1637213400, null), null, new cljs.core.Symbol(null, "loop*", "loop*", -1537374273, null), null, new cljs.core.Symbol(null, "if", "if", -1640528170, null), null, new cljs.core.Symbol(null, "def", "def", -1640432194, null), null], !0), a) | |
}; | |
var mrhyde = {extend_js:{}}; | |
mrhyde.extend_js.assoc_BANG_ = function() { | |
var a = null, b = function(a, b, c) { | |
return cljs.core._assoc_BANG_.call(null, a, b, c) | |
}, c = function() { | |
var b = function(b, c, d, e) { | |
for(;;) { | |
if(b = a.call(null, b, c, d), cljs.core.truth_(e)) { | |
c = cljs.core.first.call(null, e), d = cljs.core.second.call(null, e), e = cljs.core.nnext.call(null, e) | |
}else { | |
return b | |
} | |
} | |
}, c = function(a, c, e, k) { | |
var l = null; | |
3 < arguments.length && (l = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return b.call(this, a, c, e, l) | |
}; | |
c.cljs$lang$maxFixedArity = 3; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var k = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, k, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f, g) { | |
switch(arguments.length) { | |
case 3: | |
return b.call(this, a, e, f); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, f, cljs.core.array_seq(arguments, 3)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 3; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$3 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
mrhyde.extend_js.assoc_in_BANG_ = function assoc_in_BANG_(b, c, d) { | |
var e = cljs.core.nth.call(null, c, 0, null); | |
c = cljs.core.nthnext.call(null, c, 1); | |
return cljs.core.truth_(c) ? mrhyde.extend_js.assoc_BANG_.call(null, b, e, assoc_in_BANG_.call(null, cljs.core.get.call(null, b, e), c, d)) : mrhyde.extend_js.assoc_BANG_.call(null, b, e, d) | |
}; | |
mrhyde.extend_js.update_in_BANG_ = function() { | |
var a = function(a, d, e, f) { | |
var g = cljs.core.nth.call(null, d, 0, null); | |
d = cljs.core.nthnext.call(null, d, 1); | |
return cljs.core.truth_(d) ? mrhyde.extend_js.assoc_BANG_.call(null, a, g, cljs.core.apply.call(null, b, cljs.core.get.call(null, a, g), d, e, f)) : mrhyde.extend_js.assoc_BANG_.call(null, a, g, cljs.core.apply.call(null, e, cljs.core.get.call(null, a, g), f)) | |
}, b = function(b, d, e, f) { | |
var g = null; | |
3 < arguments.length && (g = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return a.call(this, b, d, e, g) | |
}; | |
b.cljs$lang$maxFixedArity = 3; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var f = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, e, f, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.extend_js.seqtype = function(a) { | |
return cljs.core.truth_(goog.isArray(a)) ? "\ufdd0:js-arr" : cljs.core.seq_QMARK_.call(null, a) ? "\ufdd0:seq" : cljs.core.truth_(goog.isObject(a)) ? "\ufdd0:js-obj" : null | |
}; | |
mrhyde.extend_js.filter = function() { | |
var a = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), b = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), c = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), d = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), e = cljs.core.get.call(null, cljs.core.PersistentArrayMap.EMPTY, "\ufdd0:hierarchy", cljs.core.get_global_hierarchy.call(null)); | |
return new cljs.core.MultiFn("filter", function(a, b) { | |
return mrhyde.extend_js.seqtype.call(null, b) | |
}, "\ufdd0:default", e, a, b, c, d) | |
}(); | |
cljs.core._add_method.call(null, mrhyde.extend_js.filter, "\ufdd0:js-arr", function(a, b) { | |
return b.filter(function(b) { | |
return a.call(null, b) | |
}) | |
}); | |
cljs.core._add_method.call(null, mrhyde.extend_js.filter, "\ufdd0:seq", function(a, b) { | |
return cljs.core.filter.call(null, a, b) | |
}); | |
mrhyde.extend_js.remove = function() { | |
var a = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), b = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), c = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), d = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), e = cljs.core.get.call(null, cljs.core.PersistentArrayMap.EMPTY, "\ufdd0:hierarchy", cljs.core.get_global_hierarchy.call(null)); | |
return new cljs.core.MultiFn("remove", function(a, b) { | |
return mrhyde.extend_js.seqtype.call(null, b) | |
}, "\ufdd0:default", e, a, b, c, d) | |
}(); | |
cljs.core._add_method.call(null, mrhyde.extend_js.remove, "\ufdd0:js-arr", function(a, b) { | |
return b.filter(function(b) { | |
return cljs.core.not.call(null, a.call(null, b)) | |
}) | |
}); | |
cljs.core._add_method.call(null, mrhyde.extend_js.remove, "\ufdd0:seq", function(a, b) { | |
return cljs.core.remove.call(null, a, b) | |
}); | |
mrhyde.extend_js.map = function() { | |
var a = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), b = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), c = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), d = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY), e = cljs.core.get.call(null, cljs.core.PersistentArrayMap.EMPTY, "\ufdd0:hierarchy", cljs.core.get_global_hierarchy.call(null)); | |
return new cljs.core.MultiFn("map", function(a, b) { | |
return mrhyde.extend_js.seqtype.call(null, b) | |
}, "\ufdd0:default", e, a, b, c, d) | |
}(); | |
cljs.core._add_method.call(null, mrhyde.extend_js.map, "\ufdd0:js-arr", function(a, b) { | |
return b.map(function(b) { | |
return a.call(null, b) | |
}) | |
}); | |
cljs.core._add_method.call(null, mrhyde.extend_js.map, "\ufdd0:seq", function(a, b) { | |
return cljs.core.map.call(null, a, b) | |
}); | |
mrhyde.extend_js.strkey = function(a) { | |
return cljs.core.keyword_QMARK_.call(null, a) ? cljs.core.name.call(null, a) : a | |
}; | |
cljs.core.ISeqable.object = !0; | |
cljs.core._seq.object = function(a) { | |
var b = goog.object.getKeys(a); | |
return 0 < b.length ? mrhyde.extend_js.map.call(null, function(b) { | |
return cljs.core.vector.call(null, b, a[b]) | |
}, cljs.core.sort.call(null, b)) : null | |
}; | |
cljs.core.ITransientMap.object = !0; | |
cljs.core._dissoc_BANG_.object = function(a, b) { | |
goog.object.remove(a, b); | |
return a | |
}; | |
cljs.core.ITransientAssociative.object = !0; | |
cljs.core._assoc_BANG_.object = function(a, b, c) { | |
a[mrhyde.extend_js.strkey.call(null, b)] = c; | |
return a | |
}; | |
cljs.core.ITransientCollection.object = !0; | |
cljs.core._conj_BANG_.object = function(a, b) { | |
var c = cljs.core.nth.call(null, b, 0, null), d = cljs.core.nth.call(null, b, 1, null); | |
return mrhyde.extend_js.assoc_BANG_.call(null, a, c, d) | |
}; | |
cljs.core._persistent_BANG_.object = function(a) { | |
throw Error("JavaScript object isn't a real transient, don't try to make it persistent."); | |
}; | |
cljs.core.IEmptyableCollection.object = !0; | |
cljs.core._empty.object = function(a) { | |
return{} | |
}; | |
cljs.core.ILookup.object = !0; | |
cljs.core._lookup.object = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return a[mrhyde.extend_js.strkey.call(null, c)]; | |
case 3: | |
var e; | |
e = mrhyde.extend_js.strkey.call(null, c); | |
e = cljs.core.truth_(goog.object.containsKey(a, e)) ? a[e] : d; | |
return e | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.ISeqable["function"] = !0; | |
cljs.core._seq["function"] = function(a) { | |
var b = goog.object.getKeys(a); | |
return 0 < b.length ? mrhyde.extend_js.map.call(null, function(b) { | |
return cljs.core.vector.call(null, b, a[b]) | |
}, cljs.core.sort.call(null, b)) : null | |
}; | |
cljs.core.ITransientMap["function"] = !0; | |
cljs.core._dissoc_BANG_["function"] = function(a, b) { | |
goog.object.remove(a, b); | |
return a | |
}; | |
cljs.core.ITransientAssociative["function"] = !0; | |
cljs.core._assoc_BANG_["function"] = function(a, b, c) { | |
a[mrhyde.extend_js.strkey.call(null, b)] = c; | |
return a | |
}; | |
cljs.core.ITransientCollection["function"] = !0; | |
cljs.core._conj_BANG_["function"] = function(a, b) { | |
var c = cljs.core.nth.call(null, b, 0, null), d = cljs.core.nth.call(null, b, 1, null); | |
return mrhyde.extend_js.assoc_BANG_.call(null, a, c, d) | |
}; | |
cljs.core._persistent_BANG_["function"] = function(a) { | |
throw Error("JavaScript function isn't a real transient, don't try to make it persistent."); | |
}; | |
cljs.core.IEmptyableCollection["function"] = !0; | |
cljs.core._empty["function"] = function(a) { | |
return{} | |
}; | |
cljs.core.ILookup["function"] = !0; | |
cljs.core._lookup["function"] = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return a[mrhyde.extend_js.strkey.call(null, c)]; | |
case 3: | |
var e; | |
e = mrhyde.extend_js.strkey.call(null, c); | |
e = cljs.core.truth_(goog.object.containsKey(a, e)) ? a[e] : d; | |
return e | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}(); | |
cljs.core.ITransientAssociative.array = !0; | |
cljs.core._assoc_BANG_.array = function(a, b, c) { | |
a[mrhyde.extend_js.strkey.call(null, b)] = c; | |
return a | |
}; | |
cljs.core.ITransientCollection.array = !0; | |
cljs.core._conj_BANG_.array = function(a, b) { | |
a.push(b); | |
return a | |
}; | |
cljs.core._persistent_BANG_.array = function(a) { | |
throw Error("JavaScript array isn't a real transient, don't try to make it persistent."); | |
}; | |
cljs.core.IEmptyableCollection.array = !0; | |
cljs.core._empty.array = function(a) { | |
return[] | |
}; | |
cljs.core.async = {}; | |
cljs.core.async.impl = {}; | |
cljs.core.async.impl.protocols = {}; | |
cljs.core.async.impl.protocols.MAX_QUEUE_SIZE = 1024; | |
cljs.core.async.impl.protocols.ReadPort = {}; | |
cljs.core.async.impl.protocols.take_BANG_ = function(a, b) { | |
if(a ? a.cljs$core$async$impl$protocols$ReadPort$take_BANG_$arity$2 : a) { | |
return a.cljs$core$async$impl$protocols$ReadPort$take_BANG_$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core.async.impl.protocols.take_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core.async.impl.protocols.take_BANG_._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "ReadPort.take!", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.async.impl.protocols.WritePort = {}; | |
cljs.core.async.impl.protocols.put_BANG_ = function(a, b, c) { | |
if(a ? a.cljs$core$async$impl$protocols$WritePort$put_BANG_$arity$3 : a) { | |
return a.cljs$core$async$impl$protocols$WritePort$put_BANG_$arity$3(a, b, c) | |
} | |
var d; | |
d = cljs.core.async.impl.protocols.put_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!d && (d = cljs.core.async.impl.protocols.put_BANG_._, !d)) { | |
throw cljs.core.missing_protocol.call(null, "WritePort.put!", a); | |
} | |
return d.call(null, a, b, c) | |
}; | |
cljs.core.async.impl.protocols.Channel = {}; | |
cljs.core.async.impl.protocols.close_BANG_ = function(a) { | |
if(a ? a.cljs$core$async$impl$protocols$Channel$close_BANG_$arity$1 : a) { | |
return a.cljs$core$async$impl$protocols$Channel$close_BANG_$arity$1(a) | |
} | |
var b; | |
b = cljs.core.async.impl.protocols.close_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core.async.impl.protocols.close_BANG_._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "Channel.close!", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.async.impl.protocols.Handler = {}; | |
cljs.core.async.impl.protocols.active_QMARK_ = function(a) { | |
if(a ? a.cljs$core$async$impl$protocols$Handler$active_QMARK_$arity$1 : a) { | |
return a.cljs$core$async$impl$protocols$Handler$active_QMARK_$arity$1(a) | |
} | |
var b; | |
b = cljs.core.async.impl.protocols.active_QMARK_[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core.async.impl.protocols.active_QMARK_._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "Handler.active?", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.async.impl.protocols.commit = function(a) { | |
if(a ? a.cljs$core$async$impl$protocols$Handler$commit$arity$1 : a) { | |
return a.cljs$core$async$impl$protocols$Handler$commit$arity$1(a) | |
} | |
var b; | |
b = cljs.core.async.impl.protocols.commit[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core.async.impl.protocols.commit._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "Handler.commit", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.async.impl.protocols.Buffer = {}; | |
cljs.core.async.impl.protocols.full_QMARK_ = function(a) { | |
if(a ? a.cljs$core$async$impl$protocols$Buffer$full_QMARK_$arity$1 : a) { | |
return a.cljs$core$async$impl$protocols$Buffer$full_QMARK_$arity$1(a) | |
} | |
var b; | |
b = cljs.core.async.impl.protocols.full_QMARK_[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core.async.impl.protocols.full_QMARK_._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "Buffer.full?", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.async.impl.protocols.remove_BANG_ = function(a) { | |
if(a ? a.cljs$core$async$impl$protocols$Buffer$remove_BANG_$arity$1 : a) { | |
return a.cljs$core$async$impl$protocols$Buffer$remove_BANG_$arity$1(a) | |
} | |
var b; | |
b = cljs.core.async.impl.protocols.remove_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.core.async.impl.protocols.remove_BANG_._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "Buffer.remove!", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.core.async.impl.protocols.add_BANG_ = function(a, b) { | |
if(a ? a.cljs$core$async$impl$protocols$Buffer$add_BANG_$arity$2 : a) { | |
return a.cljs$core$async$impl$protocols$Buffer$add_BANG_$arity$2(a, b) | |
} | |
var c; | |
c = cljs.core.async.impl.protocols.add_BANG_[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.core.async.impl.protocols.add_BANG_._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "Buffer.add!", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.core.async.impl.ioc_helpers = {}; | |
cljs.core.async.impl.ioc_helpers.FN_IDX = 0; | |
cljs.core.async.impl.ioc_helpers.STATE_IDX = 1; | |
cljs.core.async.impl.ioc_helpers.VALUE_IDX = 2; | |
cljs.core.async.impl.ioc_helpers.BINDINGS_IDX = 3; | |
cljs.core.async.impl.ioc_helpers.USER_START_IDX = 4; | |
cljs.core.async.impl.ioc_helpers.aset_object = function(a, b, c) { | |
return a[b][c] | |
}; | |
cljs.core.async.impl.ioc_helpers.aget_object = function(a, b) { | |
return a[b] | |
}; | |
cljs.core.async.impl.ioc_helpers.finished_QMARK_ = function(a) { | |
return"\ufdd0:finished" === a[cljs.core.async.impl.ioc_helpers.STATE_IDX] | |
}; | |
cljs.core.async.impl.ioc_helpers.fn_handler = function fn_handler(b) { | |
void 0 === cljs.core.async.impl.ioc_helpers.t6982 && (cljs.core.async.impl.ioc_helpers.t6982 = {}, cljs.core.async.impl.ioc_helpers.t6982 = function(b, d, e) { | |
this.f = b; | |
this.fn_handler = d; | |
this.meta6983 = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 393216 | |
}, cljs.core.async.impl.ioc_helpers.t6982.cljs$lang$type = !0, cljs.core.async.impl.ioc_helpers.t6982.cljs$lang$ctorStr = "cljs.core.async.impl.ioc-helpers/t6982", cljs.core.async.impl.ioc_helpers.t6982.cljs$lang$ctorPrWriter = function(b, d, e) { | |
return cljs.core._write.call(null, d, "cljs.core.async.impl.ioc-helpers/t6982") | |
}, cljs.core.async.impl.ioc_helpers.t6982.prototype.cljs$core$async$impl$protocols$Handler$ = !0, cljs.core.async.impl.ioc_helpers.t6982.prototype.cljs$core$async$impl$protocols$Handler$active_QMARK_$arity$1 = function(b) { | |
return!0 | |
}, cljs.core.async.impl.ioc_helpers.t6982.prototype.cljs$core$async$impl$protocols$Handler$commit$arity$1 = function(b) { | |
return this.f | |
}, cljs.core.async.impl.ioc_helpers.t6982.prototype.cljs$core$IMeta$_meta$arity$1 = function(b) { | |
return this.meta6983 | |
}, cljs.core.async.impl.ioc_helpers.t6982.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(b, d) { | |
return new cljs.core.async.impl.ioc_helpers.t6982(this.f, this.fn_handler, d) | |
}, cljs.core.async.impl.ioc_helpers.__GT_t6982 = function(b, d, e) { | |
return new cljs.core.async.impl.ioc_helpers.t6982(b, d, e) | |
}); | |
return new cljs.core.async.impl.ioc_helpers.t6982(b, fn_handler, null) | |
}; | |
cljs.core.async.impl.ioc_helpers.run_state_machine = function(a) { | |
return cljs.core.async.impl.ioc_helpers.aget_object.call(null, a, cljs.core.async.impl.ioc_helpers.FN_IDX).call(null, a) | |
}; | |
cljs.core.async.impl.ioc_helpers.run_state_machine_wrapped = function(a) { | |
try { | |
return cljs.core.async.impl.ioc_helpers.run_state_machine.call(null, a) | |
}catch(b) { | |
throw b instanceof Object && cljs.core.async.impl.protocols.close_BANG_.call(null, cljs.core.async.impl.ioc_helpers.aget_object.call(null, a, cljs.core.async.impl.ioc_helpers.USER_START_IDX)), b; | |
} | |
}; | |
cljs.core.async.impl.ioc_helpers.take_BANG_ = function(a, b, c) { | |
c = cljs.core.async.impl.protocols.take_BANG_.call(null, c, cljs.core.async.impl.ioc_helpers.fn_handler.call(null, function(c) { | |
a[cljs.core.async.impl.ioc_helpers.VALUE_IDX] = c; | |
a[cljs.core.async.impl.ioc_helpers.STATE_IDX] = b; | |
return cljs.core.async.impl.ioc_helpers.run_state_machine_wrapped.call(null, a) | |
})); | |
return cljs.core.truth_(c) ? (a[cljs.core.async.impl.ioc_helpers.VALUE_IDX] = cljs.core.deref.call(null, c), a[cljs.core.async.impl.ioc_helpers.STATE_IDX] = b, "\ufdd0:recur") : null | |
}; | |
cljs.core.async.impl.ioc_helpers.put_BANG_ = function(a, b, c, d) { | |
c = cljs.core.async.impl.protocols.put_BANG_.call(null, c, d, cljs.core.async.impl.ioc_helpers.fn_handler.call(null, function() { | |
a[cljs.core.async.impl.ioc_helpers.VALUE_IDX] = null; | |
a[cljs.core.async.impl.ioc_helpers.STATE_IDX] = b; | |
return cljs.core.async.impl.ioc_helpers.run_state_machine_wrapped.call(null, a) | |
})); | |
return cljs.core.truth_(c) ? (a[cljs.core.async.impl.ioc_helpers.VALUE_IDX] = cljs.core.deref.call(null, c), a[cljs.core.async.impl.ioc_helpers.STATE_IDX] = b, "\ufdd0:recur") : null | |
}; | |
cljs.core.async.impl.ioc_helpers.ioc_alts_BANG_ = function() { | |
var a = function(a, b, e, f) { | |
f = cljs.core.seq_QMARK_.call(null, f) ? cljs.core.apply.call(null, cljs.core.hash_map, f) : f; | |
a[cljs.core.async.impl.ioc_helpers.STATE_IDX] = b; | |
b = cljs.core.async.do_alts.call(null, function(b) { | |
a[cljs.core.async.impl.ioc_helpers.VALUE_IDX] = b; | |
return cljs.core.async.impl.ioc_helpers.run_state_machine_wrapped.call(null, a) | |
}, e, f); | |
return cljs.core.truth_(b) ? (a[cljs.core.async.impl.ioc_helpers.VALUE_IDX] = cljs.core.deref.call(null, b), "\ufdd0:recur") : null | |
}, b = function(b, d, e, f) { | |
var g = null; | |
3 < arguments.length && (g = cljs.core.array_seq(Array.prototype.slice.call(arguments, 3), 0)); | |
return a.call(this, b, d, e, g) | |
}; | |
b.cljs$lang$maxFixedArity = 3; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var f = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, e, f, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.core.async.impl.ioc_helpers.return_chan = function(a, b) { | |
var c = a[cljs.core.async.impl.ioc_helpers.USER_START_IDX]; | |
null != b && cljs.core.async.impl.protocols.put_BANG_.call(null, c, b, cljs.core.async.impl.ioc_helpers.fn_handler.call(null, function() { | |
return null | |
})); | |
cljs.core.async.impl.protocols.close_BANG_.call(null, c); | |
return c | |
}; | |
cljs.core.async.impl.buffers = {}; | |
cljs.core.async.impl.buffers.acopy = function(a, b, c, d, e) { | |
for(var f = 0;;) { | |
if(f < e) { | |
c[d + f] = a[b + f], f += 1 | |
}else { | |
return null | |
} | |
} | |
}; | |
cljs.core.async.impl.buffers.RingBuffer = function(a, b, c, d) { | |
this.head = a; | |
this.tail = b; | |
this.length = c; | |
this.arr = d | |
}; | |
cljs.core.async.impl.buffers.RingBuffer.cljs$lang$type = !0; | |
cljs.core.async.impl.buffers.RingBuffer.cljs$lang$ctorStr = "cljs.core.async.impl.buffers/RingBuffer"; | |
cljs.core.async.impl.buffers.RingBuffer.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core.async.impl.buffers/RingBuffer") | |
}; | |
cljs.core.async.impl.buffers.RingBuffer.prototype.pop = function() { | |
if(0 === this.length) { | |
return null | |
} | |
var a = this.arr[this.tail]; | |
this.arr[this.tail] = null; | |
this.tail = (this.tail + 1) % this.arr.length; | |
this.length -= 1; | |
return a | |
}; | |
cljs.core.async.impl.buffers.RingBuffer.prototype.unshift = function(a) { | |
this.arr[this.head] = a; | |
this.head = (this.head + 1) % this.arr.length; | |
this.length += 1; | |
return null | |
}; | |
cljs.core.async.impl.buffers.RingBuffer.prototype.unbounded_unshift = function(a) { | |
this.length + 1 === this.arr.length && this.resize(); | |
return this.unshift(a) | |
}; | |
cljs.core.async.impl.buffers.RingBuffer.prototype.resize = function() { | |
var a = Array(2 * this.arr.length); | |
return this.tail < this.head ? (cljs.core.async.impl.buffers.acopy.call(null, this.arr, this.tail, a, 0, this.length), this.tail = 0, this.head = this.length, this.arr = a) : this.tail > this.head ? (cljs.core.async.impl.buffers.acopy.call(null, this.arr, this.tail, a, 0, this.arr.length - this.tail), cljs.core.async.impl.buffers.acopy.call(null, this.arr, 0, a, this.arr.length - this.tail, this.head), this.tail = 0, this.head = this.length, this.arr = a) : this.tail === this.head ? (this.head = | |
this.tail = 0, this.arr = a) : null | |
}; | |
cljs.core.async.impl.buffers.RingBuffer.prototype.cleanup = function(a) { | |
for(var b = this.length, c = 0;;) { | |
if(c < b) { | |
var d = this.pop(); | |
a.call(null, d) && this.unshift(d); | |
c += 1 | |
}else { | |
return null | |
} | |
} | |
}; | |
cljs.core.async.impl.buffers.__GT_RingBuffer = function(a, b, c, d) { | |
return new cljs.core.async.impl.buffers.RingBuffer(a, b, c, d) | |
}; | |
cljs.core.async.impl.buffers.ring_buffer = function(a) { | |
if(!(0 < a)) { | |
throw Error([cljs.core.str("Assert failed: "), cljs.core.str("Can't create a ring buffer of size 0"), cljs.core.str("\n"), cljs.core.str(cljs.core.pr_str.call(null, cljs.core.list(new cljs.core.Symbol(null, "\x3e", "\x3e", -1640531465, null), new cljs.core.Symbol(null, "n", "n", -1640531417, null), 0)))].join("")); | |
} | |
return new cljs.core.async.impl.buffers.RingBuffer(0, 0, 0, Array(a)) | |
}; | |
cljs.core.async.impl.buffers.FixedBuffer = function(a, b) { | |
this.buf = a; | |
this.n = b; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 2 | |
}; | |
cljs.core.async.impl.buffers.FixedBuffer.cljs$lang$type = !0; | |
cljs.core.async.impl.buffers.FixedBuffer.cljs$lang$ctorStr = "cljs.core.async.impl.buffers/FixedBuffer"; | |
cljs.core.async.impl.buffers.FixedBuffer.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core.async.impl.buffers/FixedBuffer") | |
}; | |
cljs.core.async.impl.buffers.FixedBuffer.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.buf.length | |
}; | |
cljs.core.async.impl.buffers.FixedBuffer.prototype.cljs$core$async$impl$protocols$Buffer$ = !0; | |
cljs.core.async.impl.buffers.FixedBuffer.prototype.cljs$core$async$impl$protocols$Buffer$full_QMARK_$arity$1 = function(a) { | |
return this.buf.length === this.n | |
}; | |
cljs.core.async.impl.buffers.FixedBuffer.prototype.cljs$core$async$impl$protocols$Buffer$remove_BANG_$arity$1 = function(a) { | |
return this.buf.pop() | |
}; | |
cljs.core.async.impl.buffers.FixedBuffer.prototype.cljs$core$async$impl$protocols$Buffer$add_BANG_$arity$2 = function(a, b) { | |
if(!cljs.core.not.call(null, a.cljs$core$async$impl$protocols$Buffer$full_QMARK_$arity$1(a))) { | |
throw Error([cljs.core.str("Assert failed: "), cljs.core.str("Can't add to a full buffer"), cljs.core.str("\n"), cljs.core.str(cljs.core.pr_str.call(null, cljs.core.list(new cljs.core.Symbol(null, "not", "not", -1640422260, null), cljs.core.list(new cljs.core.Symbol("impl", "full?", "impl/full?", -1337857039, null), new cljs.core.Symbol(null, "this", "this", -1636972457, null)))))].join("")); | |
} | |
return this.buf.unshift(b) | |
}; | |
cljs.core.async.impl.buffers.__GT_FixedBuffer = function(a, b) { | |
return new cljs.core.async.impl.buffers.FixedBuffer(a, b) | |
}; | |
cljs.core.async.impl.buffers.fixed_buffer = function(a) { | |
return new cljs.core.async.impl.buffers.FixedBuffer(cljs.core.async.impl.buffers.ring_buffer.call(null, a), a) | |
}; | |
cljs.core.async.impl.buffers.DroppingBuffer = function(a, b) { | |
this.buf = a; | |
this.n = b; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 2 | |
}; | |
cljs.core.async.impl.buffers.DroppingBuffer.cljs$lang$type = !0; | |
cljs.core.async.impl.buffers.DroppingBuffer.cljs$lang$ctorStr = "cljs.core.async.impl.buffers/DroppingBuffer"; | |
cljs.core.async.impl.buffers.DroppingBuffer.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core.async.impl.buffers/DroppingBuffer") | |
}; | |
cljs.core.async.impl.buffers.DroppingBuffer.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.buf.length | |
}; | |
cljs.core.async.impl.buffers.DroppingBuffer.prototype.cljs$core$async$impl$protocols$Buffer$ = !0; | |
cljs.core.async.impl.buffers.DroppingBuffer.prototype.cljs$core$async$impl$protocols$Buffer$full_QMARK_$arity$1 = function(a) { | |
return!1 | |
}; | |
cljs.core.async.impl.buffers.DroppingBuffer.prototype.cljs$core$async$impl$protocols$Buffer$remove_BANG_$arity$1 = function(a) { | |
return this.buf.pop() | |
}; | |
cljs.core.async.impl.buffers.DroppingBuffer.prototype.cljs$core$async$impl$protocols$Buffer$add_BANG_$arity$2 = function(a, b) { | |
return this.buf.length === this.n ? null : this.buf.unshift(b) | |
}; | |
cljs.core.async.impl.buffers.__GT_DroppingBuffer = function(a, b) { | |
return new cljs.core.async.impl.buffers.DroppingBuffer(a, b) | |
}; | |
cljs.core.async.impl.buffers.dropping_buffer = function(a) { | |
return new cljs.core.async.impl.buffers.DroppingBuffer(cljs.core.async.impl.buffers.ring_buffer.call(null, a), a) | |
}; | |
cljs.core.async.impl.buffers.SlidingBuffer = function(a, b) { | |
this.buf = a; | |
this.n = b; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 2 | |
}; | |
cljs.core.async.impl.buffers.SlidingBuffer.cljs$lang$type = !0; | |
cljs.core.async.impl.buffers.SlidingBuffer.cljs$lang$ctorStr = "cljs.core.async.impl.buffers/SlidingBuffer"; | |
cljs.core.async.impl.buffers.SlidingBuffer.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core.async.impl.buffers/SlidingBuffer") | |
}; | |
cljs.core.async.impl.buffers.SlidingBuffer.prototype.cljs$core$ICounted$_count$arity$1 = function(a) { | |
return this.buf.length | |
}; | |
cljs.core.async.impl.buffers.SlidingBuffer.prototype.cljs$core$async$impl$protocols$Buffer$ = !0; | |
cljs.core.async.impl.buffers.SlidingBuffer.prototype.cljs$core$async$impl$protocols$Buffer$full_QMARK_$arity$1 = function(a) { | |
return!1 | |
}; | |
cljs.core.async.impl.buffers.SlidingBuffer.prototype.cljs$core$async$impl$protocols$Buffer$remove_BANG_$arity$1 = function(a) { | |
return this.buf.pop() | |
}; | |
cljs.core.async.impl.buffers.SlidingBuffer.prototype.cljs$core$async$impl$protocols$Buffer$add_BANG_$arity$2 = function(a, b) { | |
this.buf.length === this.n && a.cljs$core$async$impl$protocols$Buffer$remove_BANG_$arity$1(a); | |
return this.buf.unshift(b) | |
}; | |
cljs.core.async.impl.buffers.__GT_SlidingBuffer = function(a, b) { | |
return new cljs.core.async.impl.buffers.SlidingBuffer(a, b) | |
}; | |
cljs.core.async.impl.buffers.sliding_buffer = function(a) { | |
return new cljs.core.async.impl.buffers.SlidingBuffer(cljs.core.async.impl.buffers.ring_buffer.call(null, a), a) | |
}; | |
cljs.core.async.impl.dispatch = {}; | |
cljs.core.async.impl.dispatch.message_channel = null; | |
cljs.core.async.impl.dispatch.tasks = cljs.core.async.impl.buffers.ring_buffer.call(null, 32); | |
cljs.core.async.impl.dispatch.running_QMARK_ = !1; | |
cljs.core.async.impl.dispatch.queued_QMARK_ = !1; | |
cljs.core.async.impl.dispatch.TASK_BATCH_SIZE = 1024; | |
cljs.core.async.impl.dispatch.process_messages = function() { | |
cljs.core.async.impl.dispatch.running_QMARK_ = !0; | |
cljs.core.async.impl.dispatch.queued_QMARK_ = !1; | |
for(var a = 0;;) { | |
var b = cljs.core.async.impl.dispatch.tasks.pop(); | |
if(null != b && (b.call(null), a < cljs.core.async.impl.dispatch.TASK_BATCH_SIZE)) { | |
a += 1; | |
continue | |
} | |
break | |
} | |
cljs.core.async.impl.dispatch.running_QMARK_ = !1; | |
return 0 < cljs.core.async.impl.dispatch.tasks.length ? cljs.core.async.impl.dispatch.queue_dispatcher.call(null) : null | |
}; | |
"undefined" !== typeof MessageChannel && (cljs.core.async.impl.dispatch.message_channel = new MessageChannel, cljs.core.async.impl.dispatch.message_channel.port1.onmessage = function(a) { | |
return cljs.core.async.impl.dispatch.process_messages.call(null) | |
}); | |
cljs.core.async.impl.dispatch.queue_dispatcher = function() { | |
if(cljs.core.truth_(function() { | |
var a = cljs.core.async.impl.dispatch.queued_QMARK_; | |
return cljs.core.truth_(a) ? cljs.core.async.impl.dispatch.running_QMARK_ : a | |
}())) { | |
return null | |
} | |
cljs.core.async.impl.dispatch.queued_QMARK_ = !0; | |
return"undefined" !== typeof MessageChannel ? cljs.core.async.impl.dispatch.message_channel.port2.postMessage(0) : "undefined" !== typeof setImmediate ? setImmediate(cljs.core.async.impl.dispatch.process_messages) : setTimeout(cljs.core.async.impl.dispatch.process_messages, 0) | |
}; | |
cljs.core.async.impl.dispatch.run = function(a) { | |
cljs.core.async.impl.dispatch.tasks.unbounded_unshift(a); | |
return cljs.core.async.impl.dispatch.queue_dispatcher.call(null) | |
}; | |
cljs.core.async.impl.dispatch.queue_delay = function(a, b) { | |
return setTimeout(a, b) | |
}; | |
cljs.core.async.impl.channels = {}; | |
cljs.core.async.impl.channels.box = function box(b) { | |
void 0 === cljs.core.async.impl.channels.t6971 && (cljs.core.async.impl.channels.t6971 = {}, cljs.core.async.impl.channels.t6971 = function(b, d, e) { | |
this.val = b; | |
this.box = d; | |
this.meta6972 = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 425984 | |
}, cljs.core.async.impl.channels.t6971.cljs$lang$type = !0, cljs.core.async.impl.channels.t6971.cljs$lang$ctorStr = "cljs.core.async.impl.channels/t6971", cljs.core.async.impl.channels.t6971.cljs$lang$ctorPrWriter = function(b, d, e) { | |
return cljs.core._write.call(null, d, "cljs.core.async.impl.channels/t6971") | |
}, cljs.core.async.impl.channels.t6971.prototype.cljs$core$IDeref$_deref$arity$1 = function(b) { | |
return this.val | |
}, cljs.core.async.impl.channels.t6971.prototype.cljs$core$IMeta$_meta$arity$1 = function(b) { | |
return this.meta6972 | |
}, cljs.core.async.impl.channels.t6971.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(b, d) { | |
return new cljs.core.async.impl.channels.t6971(this.val, this.box, d) | |
}, cljs.core.async.impl.channels.__GT_t6971 = function(b, d, e) { | |
return new cljs.core.async.impl.channels.t6971(b, d, e) | |
}); | |
return new cljs.core.async.impl.channels.t6971(b, box, null) | |
}; | |
cljs.core.async.impl.channels.PutBox = function(a, b) { | |
this.handler = a; | |
this.val = b | |
}; | |
cljs.core.async.impl.channels.PutBox.cljs$lang$type = !0; | |
cljs.core.async.impl.channels.PutBox.cljs$lang$ctorStr = "cljs.core.async.impl.channels/PutBox"; | |
cljs.core.async.impl.channels.PutBox.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core.async.impl.channels/PutBox") | |
}; | |
cljs.core.async.impl.channels.__GT_PutBox = function(a, b) { | |
return new cljs.core.async.impl.channels.PutBox(a, b) | |
}; | |
cljs.core.async.impl.channels.put_active_QMARK_ = function(a) { | |
return cljs.core.async.impl.protocols.active_QMARK_.call(null, a.handler) | |
}; | |
cljs.core.async.impl.channels.MAX_DIRTY = 64; | |
cljs.core.async.impl.channels.ManyToManyChannel = function(a, b, c, d, e, f) { | |
this.takes = a; | |
this.dirty_takes = b; | |
this.puts = c; | |
this.dirty_puts = d; | |
this.buf = e; | |
this.closed = f | |
}; | |
cljs.core.async.impl.channels.ManyToManyChannel.cljs$lang$type = !0; | |
cljs.core.async.impl.channels.ManyToManyChannel.cljs$lang$ctorStr = "cljs.core.async.impl.channels/ManyToManyChannel"; | |
cljs.core.async.impl.channels.ManyToManyChannel.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core.async.impl.channels/ManyToManyChannel") | |
}; | |
cljs.core.async.impl.channels.ManyToManyChannel.prototype.cljs$core$async$impl$protocols$Channel$ = !0; | |
cljs.core.async.impl.channels.ManyToManyChannel.prototype.cljs$core$async$impl$protocols$Channel$close_BANG_$arity$1 = function(a) { | |
if(!this.closed) { | |
for(this.closed = !0;;) { | |
if(a = this.takes.pop(), null != a) { | |
if(cljs.core.async.impl.protocols.active_QMARK_.call(null, a)) { | |
var b = cljs.core.async.impl.protocols.commit.call(null, a); | |
cljs.core.async.impl.dispatch.run.call(null, function(a, b) { | |
return function() { | |
return a.call(null, null) | |
} | |
}(b, a)) | |
} | |
}else { | |
break | |
} | |
} | |
} | |
return null | |
}; | |
cljs.core.async.impl.channels.ManyToManyChannel.prototype.cljs$core$async$impl$protocols$ReadPort$ = !0; | |
cljs.core.async.impl.channels.ManyToManyChannel.prototype.cljs$core$async$impl$protocols$ReadPort$take_BANG_$arity$2 = function(a, b) { | |
if(cljs.core.async.impl.protocols.active_QMARK_.call(null, b)) { | |
var c; | |
c = (c = null != this.buf) ? 0 < cljs.core.count.call(null, this.buf) : c; | |
if(c) { | |
return cljs.core.async.impl.protocols.commit.call(null, b), cljs.core.async.impl.channels.box.call(null, cljs.core.async.impl.protocols.remove_BANG_.call(null, this.buf)) | |
} | |
for(;;) { | |
var d = this.puts.pop(); | |
if(null != d) { | |
if(c = d.handler, d = d.val, cljs.core.async.impl.protocols.active_QMARK_.call(null, c)) { | |
return c = cljs.core.async.impl.protocols.commit.call(null, c), cljs.core.async.impl.protocols.commit.call(null, b), cljs.core.async.impl.dispatch.run.call(null, c), cljs.core.async.impl.channels.box.call(null, d) | |
} | |
}else { | |
if(this.closed) { | |
return cljs.core.async.impl.protocols.commit.call(null, b), cljs.core.async.impl.channels.box.call(null, null) | |
} | |
this.dirty_takes > cljs.core.async.impl.channels.MAX_DIRTY ? (this.dirty_takes = 0, this.takes.cleanup(cljs.core.async.impl.protocols.active_QMARK_)) : this.dirty_takes += 1; | |
if(!(this.takes.length < cljs.core.async.impl.protocols.MAX_QUEUE_SIZE)) { | |
throw Error([cljs.core.str("Assert failed: "), cljs.core.str([cljs.core.str("No more than "), cljs.core.str(cljs.core.async.impl.protocols.MAX_QUEUE_SIZE), cljs.core.str(" pending takes are allowed on a single channel.")].join("")), cljs.core.str("\n"), cljs.core.str(cljs.core.pr_str.call(null, cljs.core.list(new cljs.core.Symbol(null, "\x3c", "\x3c", -1640531467, null), cljs.core.list(new cljs.core.Symbol(null, ".-length", ".-length", 1395928862, null), new cljs.core.Symbol(null, "takes", | |
"takes", -1530407291, null)), new cljs.core.Symbol("impl", "MAX-QUEUE-SIZE", "impl/MAX-QUEUE-SIZE", -1989946393, null))))].join("")); | |
} | |
this.takes.unbounded_unshift(b); | |
return null | |
} | |
} | |
}else { | |
return null | |
} | |
}; | |
cljs.core.async.impl.channels.ManyToManyChannel.prototype.cljs$core$async$impl$protocols$WritePort$ = !0; | |
cljs.core.async.impl.channels.ManyToManyChannel.prototype.cljs$core$async$impl$protocols$WritePort$put_BANG_$arity$3 = function(a, b, c) { | |
var d = this; | |
if(null == b) { | |
throw Error([cljs.core.str("Assert failed: "), cljs.core.str("Can't put nil in on a channel"), cljs.core.str("\n"), cljs.core.str(cljs.core.pr_str.call(null, cljs.core.list(new cljs.core.Symbol(null, "not", "not", -1640422260, null), cljs.core.list(new cljs.core.Symbol(null, "nil?", "nil?", -1637150201, null), new cljs.core.Symbol(null, "val", "val", -1640415014, null)))))].join("")); | |
} | |
if((a = d.closed) ? a : !cljs.core.async.impl.protocols.active_QMARK_.call(null, c)) { | |
return cljs.core.async.impl.channels.box.call(null, null) | |
} | |
for(;;) { | |
if(a = d.takes.pop(), null != a) { | |
if(cljs.core.async.impl.protocols.active_QMARK_.call(null, a)) { | |
var e = cljs.core.async.impl.protocols.commit.call(null, a); | |
c = cljs.core.async.impl.protocols.commit.call(null, c); | |
cljs.core.async.impl.dispatch.run.call(null, function(a, c, d) { | |
return function() { | |
return a.call(null, b) | |
} | |
}(e, c, a)); | |
return cljs.core.async.impl.channels.box.call(null, null) | |
} | |
}else { | |
if(function() { | |
var a = null == d.buf; | |
return a ? a : cljs.core.async.impl.protocols.full_QMARK_.call(null, d.buf) | |
}()) { | |
d.dirty_puts > cljs.core.async.impl.channels.MAX_DIRTY ? (d.dirty_puts = 0, d.puts.cleanup(cljs.core.async.impl.channels.put_active_QMARK_)) : d.dirty_puts += 1; | |
if(!(d.puts.length < cljs.core.async.impl.protocols.MAX_QUEUE_SIZE)) { | |
throw Error([cljs.core.str("Assert failed: "), cljs.core.str([cljs.core.str("No more than "), cljs.core.str(cljs.core.async.impl.protocols.MAX_QUEUE_SIZE), cljs.core.str(" pending puts are allowed on a single channel."), cljs.core.str(" Consider using a windowed buffer.")].join("")), cljs.core.str("\n"), cljs.core.str(cljs.core.pr_str.call(null, cljs.core.list(new cljs.core.Symbol(null, "\x3c", "\x3c", -1640531467, null), cljs.core.list(new cljs.core.Symbol(null, ".-length", ".-length", | |
1395928862, null), new cljs.core.Symbol(null, "puts", "puts", -1637078787, null)), new cljs.core.Symbol("impl", "MAX-QUEUE-SIZE", "impl/MAX-QUEUE-SIZE", -1989946393, null))))].join("")); | |
} | |
d.puts.unbounded_unshift(new cljs.core.async.impl.channels.PutBox(c, b)); | |
return null | |
} | |
c = cljs.core.async.impl.protocols.commit.call(null, c); | |
cljs.core.async.impl.protocols.add_BANG_.call(null, d.buf, b); | |
return cljs.core.async.impl.channels.box.call(null, null) | |
} | |
} | |
}; | |
cljs.core.async.impl.channels.__GT_ManyToManyChannel = function(a, b, c, d, e, f) { | |
return new cljs.core.async.impl.channels.ManyToManyChannel(a, b, c, d, e, f) | |
}; | |
cljs.core.async.impl.channels.chan = function(a) { | |
return new cljs.core.async.impl.channels.ManyToManyChannel(cljs.core.async.impl.buffers.ring_buffer.call(null, 32), 0, cljs.core.async.impl.buffers.ring_buffer.call(null, 32), 0, a, null) | |
}; | |
cljs.core.async.impl.timers = {}; | |
cljs.core.async.impl.timers.MAX_LEVEL = 15; | |
cljs.core.async.impl.timers.P = 0.5; | |
cljs.core.async.impl.timers.random_level = function() { | |
var a = null, b = function() { | |
return a.call(null, 0) | |
}, c = function(a) { | |
for(;;) { | |
var b; | |
b = (b = Math.random() < cljs.core.async.impl.timers.P) ? a < cljs.core.async.impl.timers.MAX_LEVEL : b; | |
if(b) { | |
a += 1 | |
}else { | |
return a | |
} | |
} | |
}, a = function(a) { | |
switch(arguments.length) { | |
case 0: | |
return b.call(this); | |
case 1: | |
return c.call(this, a) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$0 = b; | |
a.cljs$core$IFn$_invoke$arity$1 = c; | |
return a | |
}(); | |
cljs.core.async.impl.timers.SkipListNode = function(a, b, c) { | |
this.key = a; | |
this.val = b; | |
this.forward = c; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 2155872256 | |
}; | |
cljs.core.async.impl.timers.SkipListNode.cljs$lang$type = !0; | |
cljs.core.async.impl.timers.SkipListNode.cljs$lang$ctorStr = "cljs.core.async.impl.timers/SkipListNode"; | |
cljs.core.async.impl.timers.SkipListNode.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core.async.impl.timers/SkipListNode") | |
}; | |
cljs.core.async.impl.timers.SkipListNode.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "[", " ", "]", c, a) | |
}; | |
cljs.core.async.impl.timers.SkipListNode.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return cljs.core.list.call(null, this.key, this.val) | |
}; | |
cljs.core.async.impl.timers.__GT_SkipListNode = function(a, b, c) { | |
return new cljs.core.async.impl.timers.SkipListNode(a, b, c) | |
}; | |
cljs.core.async.impl.timers.skip_list_node = function() { | |
var a = null, b = function(b) { | |
return a.call(null, null, null, b) | |
}, c = function(a, b, c) { | |
c = Array(c + 1); | |
for(var g = 0;;) { | |
if(g < c.length) { | |
c[g] = null, g += 1 | |
}else { | |
break | |
} | |
} | |
return new cljs.core.async.impl.timers.SkipListNode(a, b, c) | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.async.impl.timers.least_greater_node = function() { | |
var a = null, b = function(b, c, f) { | |
return a.call(null, b, c, f, null) | |
}, c = function(a, b, c, g) { | |
for(;;) { | |
if(0 > c) { | |
return a | |
} | |
a: { | |
for(;;) { | |
var h = a.forward[c]; | |
if(cljs.core.truth_(h)) { | |
if(h.key < b) { | |
a = h | |
}else { | |
break a | |
} | |
}else { | |
break a | |
} | |
} | |
a = void 0 | |
} | |
null != g && (g[c] = a); | |
c -= 1 | |
} | |
}, a = function(a, e, f, g) { | |
switch(arguments.length) { | |
case 3: | |
return b.call(this, a, e, f); | |
case 4: | |
return c.call(this, a, e, f, g) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$3 = b; | |
a.cljs$core$IFn$_invoke$arity$4 = c; | |
return a | |
}(); | |
cljs.core.async.impl.timers.SkipList = function(a, b) { | |
this.header = a; | |
this.level = b; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 2155872256 | |
}; | |
cljs.core.async.impl.timers.SkipList.cljs$lang$type = !0; | |
cljs.core.async.impl.timers.SkipList.cljs$lang$ctorStr = "cljs.core.async.impl.timers/SkipList"; | |
cljs.core.async.impl.timers.SkipList.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.core.async.impl.timers/SkipList") | |
}; | |
cljs.core.async.impl.timers.SkipList.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = function(a, b, c) { | |
return cljs.core.pr_sequential_writer.call(null, b, function(a) { | |
return cljs.core.pr_sequential_writer.call(null, b, cljs.core.pr_writer, "", " ", "", c, a) | |
}, "{", ", ", "}", c, a) | |
}; | |
cljs.core.async.impl.timers.SkipList.prototype.cljs$core$ISeqable$_seq$arity$1 = function(a) { | |
return function c(a) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
return null == a ? null : cljs.core.cons.call(null, cljs.core.PersistentVector.fromArray([a.key, a.val], !0), c.call(null, a.forward[0])) | |
}, null) | |
}.call(null, this.header.forward[0]) | |
}; | |
cljs.core.async.impl.timers.SkipList.prototype.put = function(a, b) { | |
var c = Array(cljs.core.async.impl.timers.MAX_LEVEL), d = cljs.core.async.impl.timers.least_greater_node.call(null, this.header, a, this.level, c).forward[0], e; | |
e = (e = null != d) ? d.key === a : e; | |
if(e) { | |
return d.val = b | |
} | |
d = cljs.core.async.impl.timers.random_level.call(null); | |
if(d > this.level) { | |
for(e = this.level + 1;;) { | |
if(e <= d + 1) { | |
c[e] = this.header, e += 1 | |
}else { | |
break | |
} | |
} | |
this.level = d | |
} | |
for(d = cljs.core.async.impl.timers.skip_list_node.call(null, a, b, Array(d));;) { | |
return 0 <= this.level ? (c = c[0].forward, d.forward[0] = c[0], c[0] = d) : null | |
} | |
}; | |
cljs.core.async.impl.timers.SkipList.prototype.remove = function(a) { | |
var b = this, c = Array(cljs.core.async.impl.timers.MAX_LEVEL), d = cljs.core.async.impl.timers.least_greater_node.call(null, b.header, a, b.level, c).forward[0]; | |
if(function() { | |
var b = null != d; | |
return b ? d.key === a : b | |
}()) { | |
for(var e = 0;;) { | |
if(e <= b.level) { | |
var f = c[e].forward; | |
f[e] === d && (f[e] = d.forward[e]); | |
e += 1 | |
}else { | |
break | |
} | |
} | |
for(;;) { | |
if(function() { | |
var a = 0 < b.level; | |
return a ? null == b.header.forward[b.level] : a | |
}()) { | |
b.level -= 1 | |
}else { | |
return null | |
} | |
} | |
}else { | |
return null | |
} | |
}; | |
cljs.core.async.impl.timers.SkipList.prototype.ceilingEntry = function(a) { | |
for(var b = this.header, c = this.level;;) { | |
if(0 > c) { | |
return b === this.header ? null : b | |
} | |
var d; | |
a: { | |
for(d = b;;) { | |
if(d = d.forward[c], null == d) { | |
d = null; | |
break a | |
}else { | |
if(d.key >= a) { | |
break a | |
} | |
} | |
} | |
d = void 0 | |
} | |
null != d ? (c -= 1, b = d) : c -= 1 | |
} | |
}; | |
cljs.core.async.impl.timers.SkipList.prototype.floorEntry = function(a) { | |
for(var b = this.header, c = this.level;;) { | |
if(0 > c) { | |
return b === this.header ? null : b | |
} | |
var d; | |
a: { | |
for(d = b;;) { | |
var e = d.forward[c]; | |
if(null != e) { | |
if(e.key > a) { | |
break a | |
} | |
d = e | |
}else { | |
d = 0 === c ? d : null; | |
break a | |
} | |
} | |
d = void 0 | |
} | |
cljs.core.truth_(d) ? (c -= 1, b = d) : c -= 1 | |
} | |
}; | |
cljs.core.async.impl.timers.__GT_SkipList = function(a, b) { | |
return new cljs.core.async.impl.timers.SkipList(a, b) | |
}; | |
cljs.core.async.impl.timers.skip_list = function() { | |
return new cljs.core.async.impl.timers.SkipList(cljs.core.async.impl.timers.skip_list_node.call(null, 0), 0) | |
}; | |
cljs.core.async.impl.timers.timeouts_map = cljs.core.async.impl.timers.skip_list.call(null); | |
cljs.core.async.impl.timers.TIMEOUT_RESOLUTION_MS = 10; | |
cljs.core.async.impl.timers.timeout = function(a) { | |
var b = (new Date).valueOf() + a, c = cljs.core.async.impl.timers.timeouts_map.ceilingEntry(b), c = cljs.core.truth_(cljs.core.truth_(c) ? c.key < b + cljs.core.async.impl.timers.TIMEOUT_RESOLUTION_MS : c) ? c.val : null; | |
if(cljs.core.truth_(c)) { | |
return c | |
} | |
var d = cljs.core.async.impl.channels.chan.call(null, null); | |
cljs.core.async.impl.timers.timeouts_map.put(b, d); | |
cljs.core.async.impl.dispatch.queue_delay.call(null, function() { | |
cljs.core.async.impl.timers.timeouts_map.remove(b); | |
return cljs.core.async.impl.protocols.close_BANG_.call(null, d) | |
}, a); | |
return d | |
}; | |
cljs.core.async.fn_handler = function fn_handler$$0(b) { | |
void 0 === cljs.core.async.t6915 && (cljs.core.async.t6915 = {}, cljs.core.async.t6915 = function(b, d, e) { | |
this.f = b; | |
this.fn_handler = d; | |
this.meta6916 = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 393216 | |
}, cljs.core.async.t6915.cljs$lang$type = !0, cljs.core.async.t6915.cljs$lang$ctorStr = "cljs.core.async/t6915", cljs.core.async.t6915.cljs$lang$ctorPrWriter = function(b, d, e) { | |
return cljs.core._write.call(null, d, "cljs.core.async/t6915") | |
}, cljs.core.async.t6915.prototype.cljs$core$async$impl$protocols$Handler$ = !0, cljs.core.async.t6915.prototype.cljs$core$async$impl$protocols$Handler$active_QMARK_$arity$1 = function(b) { | |
return!0 | |
}, cljs.core.async.t6915.prototype.cljs$core$async$impl$protocols$Handler$commit$arity$1 = function(b) { | |
return this.f | |
}, cljs.core.async.t6915.prototype.cljs$core$IMeta$_meta$arity$1 = function(b) { | |
return this.meta6916 | |
}, cljs.core.async.t6915.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(b, d) { | |
return new cljs.core.async.t6915(this.f, this.fn_handler, d) | |
}, cljs.core.async.__GT_t6915 = function(b, d, e) { | |
return new cljs.core.async.t6915(b, d, e) | |
}); | |
return new cljs.core.async.t6915(b, fn_handler$$0, null) | |
}; | |
cljs.core.async.buffer = function(a) { | |
return cljs.core.async.impl.buffers.fixed_buffer.call(null, a) | |
}; | |
cljs.core.async.dropping_buffer = function(a) { | |
return cljs.core.async.impl.buffers.dropping_buffer.call(null, a) | |
}; | |
cljs.core.async.sliding_buffer = function(a) { | |
return cljs.core.async.impl.buffers.sliding_buffer.call(null, a) | |
}; | |
cljs.core.async.chan = function() { | |
var a = null, b = function() { | |
return a.call(null, null) | |
}, c = function(a) { | |
return cljs.core.async.impl.channels.chan.call(null, "number" === typeof a ? cljs.core.async.buffer.call(null, a) : a) | |
}, a = function(a) { | |
switch(arguments.length) { | |
case 0: | |
return b.call(this); | |
case 1: | |
return c.call(this, a) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$0 = b; | |
a.cljs$core$IFn$_invoke$arity$1 = c; | |
return a | |
}(); | |
cljs.core.async.timeout = function(a) { | |
return cljs.core.async.impl.timers.timeout.call(null, a) | |
}; | |
cljs.core.async._LT__BANG_ = function(a) { | |
throw Error([cljs.core.str("Assert failed: "), cljs.core.str("\x3c! used not in (go ...) block"), cljs.core.str("\n"), cljs.core.str(cljs.core.pr_str.call(null, null))].join("")); | |
}; | |
cljs.core.async.take_BANG_ = function() { | |
var a = null, b = function(b, c) { | |
return a.call(null, b, c, !0) | |
}, c = function(a, b, c) { | |
a = cljs.core.async.impl.protocols.take_BANG_.call(null, a, cljs.core.async.fn_handler.call(null, b)); | |
if(cljs.core.truth_(a)) { | |
var g = cljs.core.deref.call(null, a); | |
cljs.core.truth_(c) ? b.call(null, g) : cljs.core.async.impl.dispatch.run.call(null, function() { | |
return b.call(null, g) | |
}) | |
} | |
return null | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
cljs.core.async.nop = function() { | |
return null | |
}; | |
cljs.core.async._GT__BANG_ = function(a, b) { | |
throw Error([cljs.core.str("Assert failed: "), cljs.core.str("\x3e! used not in (go ...) block"), cljs.core.str("\n"), cljs.core.str(cljs.core.pr_str.call(null, null))].join("")); | |
}; | |
cljs.core.async.put_BANG_ = function() { | |
var a = null, b = function(b, c) { | |
return a.call(null, b, c, cljs.core.async.nop) | |
}, c = function(b, c, d) { | |
return a.call(null, b, c, d, !0) | |
}, d = function(a, b, c, d) { | |
a = cljs.core.async.impl.protocols.put_BANG_.call(null, a, b, cljs.core.async.fn_handler.call(null, c)); | |
cljs.core.truth_(cljs.core.truth_(a) ? cljs.core.not_EQ_.call(null, c, cljs.core.async.nop) : a) && (cljs.core.truth_(d) ? c.call(null) : cljs.core.async.impl.dispatch.run.call(null, c)); | |
return null | |
}, a = function(a, f, g, h) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, f); | |
case 3: | |
return c.call(this, a, f, g); | |
case 4: | |
return d.call(this, a, f, g, h) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
a.cljs$core$IFn$_invoke$arity$4 = d; | |
return a | |
}(); | |
cljs.core.async.close_BANG_ = function(a) { | |
return cljs.core.async.impl.protocols.close_BANG_.call(null, a) | |
}; | |
cljs.core.async.random_array = function(a) { | |
for(var b = Array(a), c = 0;;) { | |
if(c < a) { | |
b[c] = 0, c += 1 | |
}else { | |
break | |
} | |
} | |
for(c = 1;;) { | |
if(cljs.core._EQ_.call(null, c, a)) { | |
return b | |
} | |
var d = cljs.core.rand_int.call(null, c); | |
b[c] = b[d]; | |
b[d] = c; | |
c += 1 | |
} | |
}; | |
cljs.core.async.alt_flag = function alt_flag() { | |
var b = cljs.core.atom.call(null, !0); | |
void 0 === cljs.core.async.t6926 && (cljs.core.async.t6926 = {}, cljs.core.async.t6926 = function(b, d, e) { | |
this.flag = b; | |
this.alt_flag = d; | |
this.meta6927 = e; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 393216 | |
}, cljs.core.async.t6926.cljs$lang$type = !0, cljs.core.async.t6926.cljs$lang$ctorStr = "cljs.core.async/t6926", cljs.core.async.t6926.cljs$lang$ctorPrWriter = function(b, d, e) { | |
return cljs.core._write.call(null, d, "cljs.core.async/t6926") | |
}, cljs.core.async.t6926.prototype.cljs$core$async$impl$protocols$Handler$ = !0, cljs.core.async.t6926.prototype.cljs$core$async$impl$protocols$Handler$active_QMARK_$arity$1 = function(b) { | |
return cljs.core.deref.call(null, this.flag) | |
}, cljs.core.async.t6926.prototype.cljs$core$async$impl$protocols$Handler$commit$arity$1 = function(b) { | |
cljs.core.reset_BANG_.call(null, this.flag, null); | |
return!0 | |
}, cljs.core.async.t6926.prototype.cljs$core$IMeta$_meta$arity$1 = function(b) { | |
return this.meta6927 | |
}, cljs.core.async.t6926.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(b, d) { | |
return new cljs.core.async.t6926(this.flag, this.alt_flag, d) | |
}, cljs.core.async.__GT_t6926 = function(b, d, e) { | |
return new cljs.core.async.t6926(b, d, e) | |
}); | |
return new cljs.core.async.t6926(b, alt_flag, null) | |
}; | |
cljs.core.async.alt_handler = function alt_handler(b, c) { | |
void 0 === cljs.core.async.t6932 && (cljs.core.async.t6932 = {}, cljs.core.async.t6932 = function(b, c, f, g) { | |
this.cb = b; | |
this.flag = c; | |
this.alt_handler = f; | |
this.meta6933 = g; | |
this.cljs$lang$protocol_mask$partition1$ = 0; | |
this.cljs$lang$protocol_mask$partition0$ = 393216 | |
}, cljs.core.async.t6932.cljs$lang$type = !0, cljs.core.async.t6932.cljs$lang$ctorStr = "cljs.core.async/t6932", cljs.core.async.t6932.cljs$lang$ctorPrWriter = function(b, c, f) { | |
return cljs.core._write.call(null, c, "cljs.core.async/t6932") | |
}, cljs.core.async.t6932.prototype.cljs$core$async$impl$protocols$Handler$ = !0, cljs.core.async.t6932.prototype.cljs$core$async$impl$protocols$Handler$active_QMARK_$arity$1 = function(b) { | |
return cljs.core.async.impl.protocols.active_QMARK_.call(null, this.flag) | |
}, cljs.core.async.t6932.prototype.cljs$core$async$impl$protocols$Handler$commit$arity$1 = function(b) { | |
cljs.core.async.impl.protocols.commit.call(null, this.flag); | |
return this.cb | |
}, cljs.core.async.t6932.prototype.cljs$core$IMeta$_meta$arity$1 = function(b) { | |
return this.meta6933 | |
}, cljs.core.async.t6932.prototype.cljs$core$IWithMeta$_with_meta$arity$2 = function(b, c) { | |
return new cljs.core.async.t6932(this.cb, this.flag, this.alt_handler, c) | |
}, cljs.core.async.__GT_t6932 = function(b, c, f, g) { | |
return new cljs.core.async.t6932(b, c, f, g) | |
}); | |
return new cljs.core.async.t6932(c, b, alt_handler, null) | |
}; | |
cljs.core.async.do_alts = function(a, b, c) { | |
var d = cljs.core.async.alt_flag.call(null), e = cljs.core.count.call(null, b), f = cljs.core.async.random_array.call(null, e), g = (new cljs.core.Keyword("\ufdd0:priority")).call(null, c), h = function() { | |
for(var c = 0;;) { | |
if(c < e) { | |
var h = cljs.core.truth_(g) ? c : f[c], m = cljs.core.nth.call(null, b, h), n = cljs.core.vector_QMARK_.call(null, m) ? m.call(null, 0) : null, p = cljs.core.truth_(n) ? function() { | |
var b = m.call(null, 1); | |
return cljs.core.async.impl.protocols.put_BANG_.call(null, n, b, cljs.core.async.alt_handler.call(null, d, function(b, c, d, e, f, g, h, k, l) { | |
return function() { | |
return a.call(null, cljs.core.PersistentVector.fromArray([null, f], !0)) | |
} | |
}(c, b, h, m, n, d, e, f, g))) | |
}() : cljs.core.async.impl.protocols.take_BANG_.call(null, m, cljs.core.async.alt_handler.call(null, d, function(b, c, d, e, f, g, h, k) { | |
return function(b) { | |
return a.call(null, cljs.core.PersistentVector.fromArray([b, d], !0)) | |
} | |
}(c, h, m, n, d, e, f, g))); | |
if(cljs.core.truth_(p)) { | |
return cljs.core.async.impl.channels.box.call(null, cljs.core.PersistentVector.fromArray([cljs.core.deref.call(null, p), function() { | |
var a = n; | |
return cljs.core.truth_(a) ? a : m | |
}()], !0)) | |
} | |
c += 1 | |
}else { | |
return null | |
} | |
} | |
}(); | |
return cljs.core.truth_(h) ? h : cljs.core.contains_QMARK_.call(null, c, "\ufdd0:default") ? (h = function() { | |
var a = cljs.core.async.impl.protocols.active_QMARK_.call(null, d); | |
return cljs.core.truth_(a) ? cljs.core.async.impl.protocols.commit.call(null, d) : a | |
}(), cljs.core.truth_(h) ? cljs.core.async.impl.channels.box.call(null, cljs.core.PersistentVector.fromArray([(new cljs.core.Keyword("\ufdd0:default")).call(null, c), "\ufdd0:default"], !0)) : null) : null | |
}; | |
cljs.core.async.alts_BANG_ = function() { | |
var a = function(a, b) { | |
cljs.core.seq_QMARK_.call(null, b) && cljs.core.apply.call(null, cljs.core.hash_map, b); | |
throw Error([cljs.core.str("Assert failed: "), cljs.core.str("alts! used not in (go ...) block"), cljs.core.str("\n"), cljs.core.str(cljs.core.pr_str.call(null, null))].join("")); | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
var clojure = {string:{}}; | |
clojure.string.seq_reverse = function(a) { | |
return cljs.core.reduce.call(null, cljs.core.conj, cljs.core.List.EMPTY, a) | |
}; | |
clojure.string.reverse = function(a) { | |
return a.split("").reverse().join("") | |
}; | |
clojure.string.replace = function(a, b, c) { | |
if(cljs.core.string_QMARK_.call(null, b)) { | |
return a.replace(RegExp(goog.string.regExpEscape(b), "g"), c) | |
} | |
if(cljs.core.truth_(b.hasOwnProperty("source"))) { | |
return a.replace(RegExp(b.source, "g"), c) | |
} | |
throw[cljs.core.str("Invalid match arg: "), cljs.core.str(b)].join(""); | |
}; | |
clojure.string.replace_first = function(a, b, c) { | |
return a.replace(b, c) | |
}; | |
clojure.string.join = function() { | |
var a = null, b = function(a) { | |
return cljs.core.apply.call(null, cljs.core.str, a) | |
}, c = function(a, b) { | |
return cljs.core.apply.call(null, cljs.core.str, cljs.core.interpose.call(null, a, b)) | |
}, a = function(a, e) { | |
switch(arguments.length) { | |
case 1: | |
return b.call(this, a); | |
case 2: | |
return c.call(this, a, e) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$1 = b; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
return a | |
}(); | |
clojure.string.upper_case = function(a) { | |
return a.toUpperCase() | |
}; | |
clojure.string.lower_case = function(a) { | |
return a.toLowerCase() | |
}; | |
clojure.string.capitalize = function(a) { | |
return 2 > cljs.core.count.call(null, a) ? clojure.string.upper_case.call(null, a) : [cljs.core.str(clojure.string.upper_case.call(null, cljs.core.subs.call(null, a, 0, 1))), cljs.core.str(clojure.string.lower_case.call(null, cljs.core.subs.call(null, a, 1)))].join("") | |
}; | |
clojure.string.split = function() { | |
var a = null, b = function(a, b) { | |
return cljs.core.vec.call(null, ("" + cljs.core.str(a)).split(b)) | |
}, c = function(a, b, c) { | |
if(1 > c) { | |
return cljs.core.vec.call(null, ("" + cljs.core.str(a)).split(b)) | |
} | |
for(var g = cljs.core.PersistentVector.EMPTY;;) { | |
if(cljs.core._EQ_.call(null, c, 1)) { | |
return cljs.core.conj.call(null, g, a) | |
} | |
var h = cljs.core.re_find.call(null, b, a); | |
if(cljs.core.truth_(h)) { | |
var k = h, h = a.indexOf(k), k = a.substring(h + cljs.core.count.call(null, k)); | |
c -= 1; | |
g = cljs.core.conj.call(null, g, a.substring(0, h)); | |
a = k | |
}else { | |
return cljs.core.conj.call(null, g, a) | |
} | |
} | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
clojure.string.split_lines = function(a) { | |
return clojure.string.split.call(null, a, /\n|\r\n/) | |
}; | |
clojure.string.trim = function(a) { | |
return goog.string.trim(a) | |
}; | |
clojure.string.triml = function(a) { | |
return goog.string.trimLeft(a) | |
}; | |
clojure.string.trimr = function(a) { | |
return goog.string.trimRight(a) | |
}; | |
clojure.string.trim_newline = function(a) { | |
for(var b = a.length;;) { | |
if(0 === b) { | |
return"" | |
} | |
var c = cljs.core.get.call(null, a, b - 1); | |
var d = cljs.core._EQ_.call(null, c, "\n"), c = d ? d : cljs.core._EQ_.call(null, c, "\r"); | |
if(c) { | |
b -= 1 | |
}else { | |
return a.substring(0, b) | |
} | |
} | |
}; | |
clojure.string.blank_QMARK_ = function(a) { | |
return goog.string.isEmptySafe(a) | |
}; | |
clojure.string.escape = function(a, b) { | |
for(var c = new goog.string.StringBuffer, d = a.length, e = 0;;) { | |
if(cljs.core._EQ_.call(null, d, e)) { | |
return c.toString() | |
} | |
var f = a.charAt(e), g = cljs.core.get.call(null, b, f); | |
cljs.core.truth_(g) ? c.append("" + cljs.core.str(g)) : c.append(f); | |
e += 1 | |
} | |
}; | |
cljs.reader = {}; | |
cljs.reader.PushbackReader = {}; | |
cljs.reader.read_char = function(a) { | |
if(a ? a.cljs$reader$PushbackReader$read_char$arity$1 : a) { | |
return a.cljs$reader$PushbackReader$read_char$arity$1(a) | |
} | |
var b; | |
b = cljs.reader.read_char[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = cljs.reader.read_char._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "PushbackReader.read-char", a); | |
} | |
return b.call(null, a) | |
}; | |
cljs.reader.unread = function(a, b) { | |
if(a ? a.cljs$reader$PushbackReader$unread$arity$2 : a) { | |
return a.cljs$reader$PushbackReader$unread$arity$2(a, b) | |
} | |
var c; | |
c = cljs.reader.unread[goog.typeOf(null == a ? null : a)]; | |
if(!c && (c = cljs.reader.unread._, !c)) { | |
throw cljs.core.missing_protocol.call(null, "PushbackReader.unread", a); | |
} | |
return c.call(null, a, b) | |
}; | |
cljs.reader.StringPushbackReader = function(a, b, c) { | |
this.s = a; | |
this.buffer = b; | |
this.idx = c | |
}; | |
cljs.reader.StringPushbackReader.cljs$lang$type = !0; | |
cljs.reader.StringPushbackReader.cljs$lang$ctorStr = "cljs.reader/StringPushbackReader"; | |
cljs.reader.StringPushbackReader.cljs$lang$ctorPrWriter = function(a, b, c) { | |
return cljs.core._write.call(null, b, "cljs.reader/StringPushbackReader") | |
}; | |
cljs.reader.StringPushbackReader.prototype.cljs$reader$PushbackReader$ = !0; | |
cljs.reader.StringPushbackReader.prototype.cljs$reader$PushbackReader$read_char$arity$1 = function(a) { | |
return 0 === this.buffer.length ? (this.idx += 1, this.s[this.idx]) : this.buffer.pop() | |
}; | |
cljs.reader.StringPushbackReader.prototype.cljs$reader$PushbackReader$unread$arity$2 = function(a, b) { | |
return this.buffer.push(b) | |
}; | |
cljs.reader.__GT_StringPushbackReader = function(a, b, c) { | |
return new cljs.reader.StringPushbackReader(a, b, c) | |
}; | |
cljs.reader.push_back_reader = function(a) { | |
return new cljs.reader.StringPushbackReader(a, [], -1) | |
}; | |
cljs.reader.whitespace_QMARK_ = function(a) { | |
var b = goog.string.isBreakingWhitespace(a); | |
return cljs.core.truth_(b) ? b : "," === a | |
}; | |
cljs.reader.numeric_QMARK_ = function(a) { | |
return goog.string.isNumeric(a) | |
}; | |
cljs.reader.comment_prefix_QMARK_ = function(a) { | |
return";" === a | |
}; | |
cljs.reader.number_literal_QMARK_ = function(a, b) { | |
var c = cljs.reader.numeric_QMARK_.call(null, b); | |
if(c) { | |
return c | |
} | |
c = function() { | |
var a = "+" === b; | |
return a ? a : "-" === b | |
}(); | |
return cljs.core.truth_(c) ? cljs.reader.numeric_QMARK_.call(null, function() { | |
var b = cljs.reader.read_char.call(null, a); | |
cljs.reader.unread.call(null, a, b); | |
return b | |
}()) : c | |
}; | |
cljs.reader.reader_error = function() { | |
var a = function(a, b) { | |
throw Error(cljs.core.apply.call(null, cljs.core.str, b)); | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
cljs.reader.macro_terminating_QMARK_ = function(a) { | |
var b = "#" !== a; | |
return b && (b = "'" !== a) ? (b = ":" !== a) ? cljs.reader.macros.call(null, a) : b : b | |
}; | |
cljs.reader.read_token = function(a, b) { | |
for(var c = new goog.string.StringBuffer(b), d = cljs.reader.read_char.call(null, a);;) { | |
var e; | |
e = null == d; | |
e || (e = (e = cljs.reader.whitespace_QMARK_.call(null, d)) ? e : cljs.reader.macro_terminating_QMARK_.call(null, d)); | |
if(e) { | |
return cljs.reader.unread.call(null, a, d), c.toString() | |
} | |
c.append(d); | |
d = cljs.reader.read_char.call(null, a) | |
} | |
}; | |
cljs.reader.skip_line = function(a, b) { | |
for(;;) { | |
var c = cljs.reader.read_char.call(null, a); | |
var d = "n" === c; | |
c = d ? d : (d = "r" === c) ? d : null == c; | |
if(c) { | |
return a | |
} | |
} | |
}; | |
cljs.reader.int_pattern = cljs.core.re_pattern.call(null, "([-+]?)(?:(0)|([1-9][0-9]*)|0[xX]([0-9A-Fa-f]+)|0([0-7]+)|([1-9][0-9]?)[rR]([0-9A-Za-z]+)|0[0-9]+)(N)?"); | |
cljs.reader.ratio_pattern = cljs.core.re_pattern.call(null, "([-+]?[0-9]+)/([0-9]+)"); | |
cljs.reader.float_pattern = cljs.core.re_pattern.call(null, "([-+]?[0-9]+(\\.[0-9]*)?([eE][-+]?[0-9]+)?)(M)?"); | |
cljs.reader.symbol_pattern = cljs.core.re_pattern.call(null, "[:]?([^0-9/].*/)?([^0-9/][^/]*)"); | |
cljs.reader.re_find_STAR_ = function(a, b) { | |
var c = a.exec(b); | |
return null == c ? null : 1 === c.length ? c[0] : c | |
}; | |
cljs.reader.match_int = function(a) { | |
a = cljs.reader.re_find_STAR_.call(null, cljs.reader.int_pattern, a); | |
var b = a[2]; | |
var c = null == b, b = c ? c : 1 > b.length; | |
return b ? (b = "-" === a[1] ? -1 : 1, c = cljs.core.truth_(a[3]) ? [a[3], 10] : cljs.core.truth_(a[4]) ? [a[4], 16] : cljs.core.truth_(a[5]) ? [a[5], 8] : cljs.core.truth_(a[7]) ? [a[7], parseInt(a[7])] : [null, null], a = c[0], c = c[1], null == a ? null : b * parseInt(a, c)) : 0 | |
}; | |
cljs.reader.match_ratio = function(a) { | |
a = cljs.reader.re_find_STAR_.call(null, cljs.reader.ratio_pattern, a); | |
var b = a[2]; | |
return parseInt(a[1]) / parseInt(b) | |
}; | |
cljs.reader.match_float = function(a) { | |
return parseFloat(a) | |
}; | |
cljs.reader.re_matches_STAR_ = function(a, b) { | |
var c = a.exec(b), d; | |
d = (d = null != c) ? c[0] === b : d; | |
return d ? 1 === c.length ? c[0] : c : null | |
}; | |
cljs.reader.match_number = function(a) { | |
return cljs.core.truth_(cljs.reader.re_matches_STAR_.call(null, cljs.reader.int_pattern, a)) ? cljs.reader.match_int.call(null, a) : cljs.core.truth_(cljs.reader.re_matches_STAR_.call(null, cljs.reader.ratio_pattern, a)) ? cljs.reader.match_ratio.call(null, a) : cljs.core.truth_(cljs.reader.re_matches_STAR_.call(null, cljs.reader.float_pattern, a)) ? cljs.reader.match_float.call(null, a) : null | |
}; | |
cljs.reader.escape_char_map = function(a) { | |
return"t" === a ? "\t" : "r" === a ? "\r" : "n" === a ? "\n" : "\\" === a ? "\\" : '"' === a ? '"' : "b" === a ? "\b" : "f" === a ? "\f" : null | |
}; | |
cljs.reader.read_2_chars = function(a) { | |
return(new goog.string.StringBuffer(cljs.reader.read_char.call(null, a), cljs.reader.read_char.call(null, a))).toString() | |
}; | |
cljs.reader.read_4_chars = function(a) { | |
return(new goog.string.StringBuffer(cljs.reader.read_char.call(null, a), cljs.reader.read_char.call(null, a), cljs.reader.read_char.call(null, a), cljs.reader.read_char.call(null, a))).toString() | |
}; | |
cljs.reader.unicode_2_pattern = cljs.core.re_pattern.call(null, "[0-9A-Fa-f]{2}"); | |
cljs.reader.unicode_4_pattern = cljs.core.re_pattern.call(null, "[0-9A-Fa-f]{4}"); | |
cljs.reader.validate_unicode_escape = function(a, b, c, d) { | |
return cljs.core.truth_(cljs.core.re_matches.call(null, a, d)) ? d : cljs.reader.reader_error.call(null, b, "Unexpected unicode escape \\", c, d) | |
}; | |
cljs.reader.make_unicode_char = function(a) { | |
a = parseInt(a, 16); | |
return String.fromCharCode(a) | |
}; | |
cljs.reader.escape_char = function(a, b) { | |
var c = cljs.reader.read_char.call(null, b), d = cljs.reader.escape_char_map.call(null, c); | |
return cljs.core.truth_(d) ? d : "x" === c ? cljs.reader.make_unicode_char.call(null, cljs.reader.validate_unicode_escape.call(null, cljs.reader.unicode_2_pattern, b, c, cljs.reader.read_2_chars.call(null, b))) : "u" === c ? cljs.reader.make_unicode_char.call(null, cljs.reader.validate_unicode_escape.call(null, cljs.reader.unicode_4_pattern, b, c, cljs.reader.read_4_chars.call(null, b))) : cljs.reader.numeric_QMARK_.call(null, c) ? String.fromCharCode(c) : cljs.reader.reader_error.call(null, b, | |
"Unexpected unicode escape \\", c) | |
}; | |
cljs.reader.read_past = function(a, b) { | |
for(var c = cljs.reader.read_char.call(null, b);;) { | |
if(cljs.core.truth_(a.call(null, c))) { | |
c = cljs.reader.read_char.call(null, b) | |
}else { | |
return c | |
} | |
} | |
}; | |
cljs.reader.read_delimited_list = function(a, b, c) { | |
for(var d = cljs.core.transient$.call(null, cljs.core.PersistentVector.EMPTY);;) { | |
var e = cljs.reader.read_past.call(null, cljs.reader.whitespace_QMARK_, b); | |
cljs.core.truth_(e) || cljs.reader.reader_error.call(null, b, "EOF while reading"); | |
if(a === e) { | |
return cljs.core.persistent_BANG_.call(null, d) | |
} | |
var f = cljs.reader.macros.call(null, e); | |
cljs.core.truth_(f) ? e = f.call(null, b, e) : (cljs.reader.unread.call(null, b, e), e = cljs.reader.read.call(null, b, !0, null, c)); | |
d = e === b ? d : cljs.core.conj_BANG_.call(null, d, e) | |
} | |
}; | |
cljs.reader.not_implemented = function(a, b) { | |
return cljs.reader.reader_error.call(null, a, "Reader for ", b, " not implemented yet") | |
}; | |
cljs.reader.read_dispatch = function(a, b) { | |
var c = cljs.reader.read_char.call(null, a), d = cljs.reader.dispatch_macros.call(null, c); | |
if(cljs.core.truth_(d)) { | |
return d.call(null, a, b) | |
} | |
d = cljs.reader.maybe_read_tagged_type.call(null, a, c); | |
return cljs.core.truth_(d) ? d : cljs.reader.reader_error.call(null, a, "No dispatch macro for ", c) | |
}; | |
cljs.reader.read_unmatched_delimiter = function(a, b) { | |
return cljs.reader.reader_error.call(null, a, "Unmached delimiter ", b) | |
}; | |
cljs.reader.read_list = function(a, b) { | |
return cljs.core.apply.call(null, cljs.core.list, cljs.reader.read_delimited_list.call(null, ")", a, !0)) | |
}; | |
cljs.reader.read_comment = cljs.reader.skip_line; | |
cljs.reader.read_vector = function(a, b) { | |
return cljs.reader.read_delimited_list.call(null, "]", a, !0) | |
}; | |
cljs.reader.read_map = function(a, b) { | |
var c = cljs.reader.read_delimited_list.call(null, "}", a, !0); | |
cljs.core.odd_QMARK_.call(null, cljs.core.count.call(null, c)) && cljs.reader.reader_error.call(null, a, "Map literal must contain an even number of forms"); | |
return cljs.core.apply.call(null, cljs.core.hash_map, c) | |
}; | |
cljs.reader.read_number = function(a, b) { | |
for(var c = new goog.string.StringBuffer(b), d = cljs.reader.read_char.call(null, a);;) { | |
if(cljs.core.truth_(function() { | |
var a = null == d; | |
return a ? a : (a = cljs.reader.whitespace_QMARK_.call(null, d)) ? a : cljs.reader.macros.call(null, d) | |
}())) { | |
cljs.reader.unread.call(null, a, d); | |
var e = c.toString(), c = cljs.reader.match_number.call(null, e); | |
return cljs.core.truth_(c) ? c : cljs.reader.reader_error.call(null, a, "Invalid number format [", e, "]") | |
} | |
c.append(d); | |
d = e = cljs.reader.read_char.call(null, a) | |
} | |
}; | |
cljs.reader.read_string_STAR_ = function(a, b) { | |
for(var c = new goog.string.StringBuffer, d = cljs.reader.read_char.call(null, a);;) { | |
if(null == d) { | |
return cljs.reader.reader_error.call(null, a, "EOF while reading") | |
} | |
if("\\" === d) { | |
c.append(cljs.reader.escape_char.call(null, c, a)) | |
}else { | |
if('"' === d) { | |
return c.toString() | |
} | |
c.append(d) | |
} | |
d = cljs.reader.read_char.call(null, a) | |
} | |
}; | |
cljs.reader.special_symbols = function(a, b) { | |
return"nil" === a ? null : "true" === a ? !0 : "false" === a ? !1 : b | |
}; | |
cljs.reader.read_symbol = function(a, b) { | |
var c = cljs.reader.read_token.call(null, a, b); | |
return cljs.core.truth_(goog.string.contains(c, "/")) ? cljs.core.symbol.call(null, cljs.core.subs.call(null, c, 0, c.indexOf("/")), cljs.core.subs.call(null, c, c.indexOf("/") + 1, c.length)) : cljs.reader.special_symbols.call(null, c, cljs.core.symbol.call(null, c)) | |
}; | |
cljs.reader.read_keyword = function(a, b) { | |
var c = cljs.reader.read_token.call(null, a, cljs.reader.read_char.call(null, a)), c = cljs.reader.re_matches_STAR_.call(null, cljs.reader.symbol_pattern, c), d = c[0], e = c[1], f = c[2]; | |
return cljs.core.truth_(function() { | |
var a; | |
a = (a = void 0 !== e) ? ":/" === e.substring(e.length - 2, e.length) : a; | |
return cljs.core.truth_(a) ? a : (a = ":" === f[f.length - 1]) ? a : -1 !== d.indexOf("::", 1) | |
}()) ? cljs.reader.reader_error.call(null, a, "Invalid token: ", d) : function() { | |
var a = null != e; | |
return a ? 0 < e.length : a | |
}() ? cljs.core.keyword.call(null, e.substring(0, e.indexOf("/")), f) : cljs.core.keyword.call(null, d) | |
}; | |
cljs.reader.desugar_meta = function(a) { | |
return a instanceof cljs.core.Symbol ? cljs.core.PersistentArrayMap.fromArray(["\ufdd0:tag", a], !0) : cljs.core.string_QMARK_.call(null, a) ? cljs.core.PersistentArrayMap.fromArray(["\ufdd0:tag", a], !0) : cljs.core.keyword_QMARK_.call(null, a) ? cljs.core.PersistentArrayMap.fromArray([a, !0], !0) : a | |
}; | |
cljs.reader.wrapping_reader = function(a) { | |
return function(b, c) { | |
return cljs.core.list.call(null, a, cljs.reader.read.call(null, b, !0, null, !0)) | |
} | |
}; | |
cljs.reader.throwing_reader = function(a) { | |
return function(b, c) { | |
return cljs.reader.reader_error.call(null, b, a) | |
} | |
}; | |
cljs.reader.read_meta = function(a, b) { | |
var c = cljs.reader.desugar_meta.call(null, cljs.reader.read.call(null, a, !0, null, !0)); | |
cljs.core.map_QMARK_.call(null, c) || cljs.reader.reader_error.call(null, a, "Metadata must be Symbol,Keyword,String or Map"); | |
var d = cljs.reader.read.call(null, a, !0, null, !0), e; | |
d ? (e = (e = d.cljs$lang$protocol_mask$partition0$ & 262144) ? e : d.cljs$core$IWithMeta$, e = e ? !0 : d.cljs$lang$protocol_mask$partition0$ ? !1 : cljs.core.type_satisfies_.call(null, cljs.core.IWithMeta, d)) : e = cljs.core.type_satisfies_.call(null, cljs.core.IWithMeta, d); | |
return e ? cljs.core.with_meta.call(null, d, cljs.core.merge.call(null, cljs.core.meta.call(null, d), c)) : cljs.reader.reader_error.call(null, a, "Metadata can only be applied to IWithMetas") | |
}; | |
cljs.reader.read_set = function(a, b) { | |
return cljs.core.set.call(null, cljs.reader.read_delimited_list.call(null, "}", a, !0)) | |
}; | |
cljs.reader.read_regex = function(a, b) { | |
return cljs.core.re_pattern.call(null, cljs.reader.read_string_STAR_.call(null, a, b)) | |
}; | |
cljs.reader.read_discard = function(a, b) { | |
cljs.reader.read.call(null, a, !0, null, !0); | |
return a | |
}; | |
cljs.reader.macros = function(a) { | |
return'"' === a ? cljs.reader.read_string_STAR_ : ":" === a ? cljs.reader.read_keyword : ";" === a ? cljs.reader.not_implemented : "'" === a ? cljs.reader.wrapping_reader.call(null, new cljs.core.Symbol(null, "quote", "quote", -1532577739, null)) : "@" === a ? cljs.reader.wrapping_reader.call(null, new cljs.core.Symbol(null, "deref", "deref", -1545057749, null)) : "^" === a ? cljs.reader.read_meta : "`" === a ? cljs.reader.not_implemented : "~" === a ? cljs.reader.not_implemented : "(" === a ? | |
cljs.reader.read_list : ")" === a ? cljs.reader.read_unmatched_delimiter : "[" === a ? cljs.reader.read_vector : "]" === a ? cljs.reader.read_unmatched_delimiter : "{" === a ? cljs.reader.read_map : "}" === a ? cljs.reader.read_unmatched_delimiter : "\\" === a ? cljs.reader.read_char : "%" === a ? cljs.reader.not_implemented : "#" === a ? cljs.reader.read_dispatch : null | |
}; | |
cljs.reader.dispatch_macros = function(a) { | |
return"{" === a ? cljs.reader.read_set : "\x3c" === a ? cljs.reader.throwing_reader.call(null, "Unreadable form") : '"' === a ? cljs.reader.read_regex : "!" === a ? cljs.reader.read_comment : "_" === a ? cljs.reader.read_discard : null | |
}; | |
cljs.reader.read = function(a, b, c, d) { | |
for(;;) { | |
d = cljs.reader.read_char.call(null, a); | |
if(null == d) { | |
return cljs.core.truth_(b) ? cljs.reader.reader_error.call(null, a, "EOF while reading") : c | |
} | |
if(!cljs.reader.whitespace_QMARK_.call(null, d)) { | |
if(cljs.reader.comment_prefix_QMARK_.call(null, d)) { | |
a = cljs.reader.read_comment.call(null, a, d) | |
}else { | |
var e = cljs.reader.macros.call(null, d); | |
d = cljs.core.truth_(e) ? e.call(null, a, d) : cljs.reader.number_literal_QMARK_.call(null, a, d) ? cljs.reader.read_number.call(null, a, d) : cljs.reader.read_symbol.call(null, a, d); | |
if(d !== a) { | |
return d | |
} | |
} | |
} | |
} | |
}; | |
cljs.reader.read_string = function(a) { | |
a = cljs.reader.push_back_reader.call(null, a); | |
return cljs.reader.read.call(null, a, !0, null, !1) | |
}; | |
cljs.reader.zero_fill_right_and_truncate = function(a, b) { | |
if(cljs.core._EQ_.call(null, b, cljs.core.count.call(null, a))) { | |
return a | |
} | |
if(b < cljs.core.count.call(null, a)) { | |
return cljs.core.subs.call(null, a, 0, b) | |
} | |
for(var c = new goog.string.StringBuffer(a);;) { | |
if(c.getLength() < b) { | |
c = c.append("0") | |
}else { | |
return c.toString() | |
} | |
} | |
}; | |
cljs.reader.divisible_QMARK_ = function(a, b) { | |
return 0 === cljs.core.mod.call(null, a, b) | |
}; | |
cljs.reader.indivisible_QMARK_ = function(a, b) { | |
return cljs.core.not.call(null, cljs.reader.divisible_QMARK_.call(null, a, b)) | |
}; | |
cljs.reader.leap_year_QMARK_ = function(a) { | |
var b = cljs.reader.divisible_QMARK_.call(null, a, 4); | |
return cljs.core.truth_(b) ? (b = cljs.reader.indivisible_QMARK_.call(null, a, 100), cljs.core.truth_(b) ? b : cljs.reader.divisible_QMARK_.call(null, a, 400)) : b | |
}; | |
cljs.reader.days_in_month = function() { | |
var a = cljs.core.PersistentVector.fromArray([null, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], !0), b = cljs.core.PersistentVector.fromArray([null, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], !0); | |
return function(c, d) { | |
return cljs.core.get.call(null, cljs.core.truth_(d) ? b : a, c) | |
} | |
}(); | |
cljs.reader.timestamp_regex = /(\d\d\d\d)(?:-(\d\d)(?:-(\d\d)(?:[T](\d\d)(?::(\d\d)(?::(\d\d)(?:[.](\d+))?)?)?)?)?)?(?:[Z]|([-+])(\d\d):(\d\d))?/; | |
cljs.reader.parse_int = function(a) { | |
a = parseInt(a); | |
return cljs.core.not.call(null, isNaN(a)) ? a : null | |
}; | |
cljs.reader.check = function(a, b, c, d) { | |
var e = a <= b; | |
(e ? b <= c : e) || cljs.reader.reader_error.call(null, null, [cljs.core.str(d), cljs.core.str(" Failed: "), cljs.core.str(a), cljs.core.str("\x3c\x3d"), cljs.core.str(b), cljs.core.str("\x3c\x3d"), cljs.core.str(c)].join("")); | |
return b | |
}; | |
cljs.reader.parse_and_validate_timestamp = function(a) { | |
var b = cljs.core.re_matches.call(null, cljs.reader.timestamp_regex, a); | |
cljs.core.nth.call(null, b, 0, null); | |
var c = cljs.core.nth.call(null, b, 1, null), d = cljs.core.nth.call(null, b, 2, null), e = cljs.core.nth.call(null, b, 3, null), f = cljs.core.nth.call(null, b, 4, null), g = cljs.core.nth.call(null, b, 5, null), h = cljs.core.nth.call(null, b, 6, null), k = cljs.core.nth.call(null, b, 7, null), l = cljs.core.nth.call(null, b, 8, null), m = cljs.core.nth.call(null, b, 9, null), n = cljs.core.nth.call(null, b, 10, null); | |
if(cljs.core.not.call(null, b)) { | |
return cljs.reader.reader_error.call(null, null, [cljs.core.str("Unrecognized date/time syntax: "), cljs.core.str(a)].join("")) | |
} | |
a = cljs.reader.parse_int.call(null, c); | |
var b = function() { | |
var a = cljs.reader.parse_int.call(null, d); | |
return cljs.core.truth_(a) ? a : 1 | |
}(), c = function() { | |
var a = cljs.reader.parse_int.call(null, e); | |
return cljs.core.truth_(a) ? a : 1 | |
}(), p = function() { | |
var a = cljs.reader.parse_int.call(null, f); | |
return cljs.core.truth_(a) ? a : 0 | |
}(), q = function() { | |
var a = cljs.reader.parse_int.call(null, g); | |
return cljs.core.truth_(a) ? a : 0 | |
}(), r = function() { | |
var a = cljs.reader.parse_int.call(null, h); | |
return cljs.core.truth_(a) ? a : 0 | |
}(), s = function() { | |
var a = cljs.reader.parse_int.call(null, cljs.reader.zero_fill_right_and_truncate.call(null, k, 3)); | |
return cljs.core.truth_(a) ? a : 0 | |
}(), l = cljs.core._EQ_.call(null, l, "-") ? -1 : 1, t = function() { | |
var a = cljs.reader.parse_int.call(null, m); | |
return cljs.core.truth_(a) ? a : 0 | |
}(), v = function() { | |
var a = cljs.reader.parse_int.call(null, n); | |
return cljs.core.truth_(a) ? a : 0 | |
}(), l = l * (60 * t + v); | |
return cljs.core.PersistentVector.fromArray([a, cljs.reader.check.call(null, 1, b, 12, "timestamp month field must be in range 1..12"), cljs.reader.check.call(null, 1, c, cljs.reader.days_in_month.call(null, b, cljs.reader.leap_year_QMARK_.call(null, a)), "timestamp day field must be in range 1..last day in month"), cljs.reader.check.call(null, 0, p, 23, "timestamp hour field must be in range 0..23"), cljs.reader.check.call(null, 0, q, 59, "timestamp minute field must be in range 0..59"), cljs.reader.check.call(null, | |
0, r, cljs.core._EQ_.call(null, q, 59) ? 60 : 59, "timestamp second field must be in range 0..60"), cljs.reader.check.call(null, 0, s, 999, "timestamp millisecond field must be in range 0..999"), l], !0) | |
}; | |
cljs.reader.parse_timestamp = function(a) { | |
var b = cljs.reader.parse_and_validate_timestamp.call(null, a); | |
if(cljs.core.truth_(b)) { | |
a = cljs.core.nth.call(null, b, 0, null); | |
var c = cljs.core.nth.call(null, b, 1, null), d = cljs.core.nth.call(null, b, 2, null), e = cljs.core.nth.call(null, b, 3, null), f = cljs.core.nth.call(null, b, 4, null), g = cljs.core.nth.call(null, b, 5, null), h = cljs.core.nth.call(null, b, 6, null), b = cljs.core.nth.call(null, b, 7, null); | |
return new Date(Date.UTC(a, c - 1, d, e, f, g, h) - 6E4 * b) | |
} | |
return cljs.reader.reader_error.call(null, null, [cljs.core.str("Unrecognized date/time syntax: "), cljs.core.str(a)].join("")) | |
}; | |
cljs.reader.read_date = function(a) { | |
return cljs.core.string_QMARK_.call(null, a) ? cljs.reader.parse_timestamp.call(null, a) : cljs.reader.reader_error.call(null, null, "Instance literal expects a string for its timestamp.") | |
}; | |
cljs.reader.read_queue = function(a) { | |
return cljs.core.vector_QMARK_.call(null, a) ? cljs.core.into.call(null, cljs.core.PersistentQueue.EMPTY, a) : cljs.reader.reader_error.call(null, null, "Queue literal expects a vector for its elements.") | |
}; | |
cljs.reader.read_uuid = function(a) { | |
return cljs.core.string_QMARK_.call(null, a) ? new cljs.core.UUID(a) : cljs.reader.reader_error.call(null, null, "UUID literal expects a string as its representation.") | |
}; | |
cljs.reader._STAR_tag_table_STAR_ = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.fromArray(["inst", cljs.reader.read_date, "uuid", cljs.reader.read_uuid, "queue", cljs.reader.read_queue], !0)); | |
cljs.reader._STAR_default_data_reader_fn_STAR_ = cljs.core.atom.call(null, null); | |
cljs.reader.maybe_read_tagged_type = function(a, b) { | |
var c = cljs.reader.read_symbol.call(null, a, b), d = cljs.core.get.call(null, cljs.core.deref.call(null, cljs.reader._STAR_tag_table_STAR_), "" + cljs.core.str(c)), e = cljs.core.deref.call(null, cljs.reader._STAR_default_data_reader_fn_STAR_); | |
return cljs.core.truth_(d) ? d.call(null, cljs.reader.read.call(null, a, !0, null, !1)) : cljs.core.truth_(e) ? e.call(null, c, cljs.reader.read.call(null, a, !0, null, !1)) : cljs.reader.reader_error.call(null, a, "Could not find tag parser for ", "" + cljs.core.str(c), " in ", cljs.core.pr_str.call(null, cljs.core.keys.call(null, cljs.core.deref.call(null, cljs.reader._STAR_tag_table_STAR_)))) | |
}; | |
cljs.reader.register_tag_parser_BANG_ = function(a, b) { | |
var c = "" + cljs.core.str(a), d = cljs.core.get.call(null, cljs.core.deref.call(null, cljs.reader._STAR_tag_table_STAR_), c); | |
cljs.core.swap_BANG_.call(null, cljs.reader._STAR_tag_table_STAR_, cljs.core.assoc, c, b); | |
return d | |
}; | |
cljs.reader.deregister_tag_parser_BANG_ = function(a) { | |
a = "" + cljs.core.str(a); | |
var b = cljs.core.get.call(null, cljs.core.deref.call(null, cljs.reader._STAR_tag_table_STAR_), a); | |
cljs.core.swap_BANG_.call(null, cljs.reader._STAR_tag_table_STAR_, cljs.core.dissoc, a); | |
return b | |
}; | |
cljs.reader.register_default_tag_parser_BANG_ = function(a) { | |
var b = cljs.core.deref.call(null, cljs.reader._STAR_default_data_reader_fn_STAR_); | |
cljs.core.swap_BANG_.call(null, cljs.reader._STAR_default_data_reader_fn_STAR_, function(b) { | |
return a | |
}); | |
return b | |
}; | |
cljs.reader.deregister_default_tag_parser_BANG_ = function() { | |
var a = cljs.core.deref.call(null, cljs.reader._STAR_default_data_reader_fn_STAR_); | |
cljs.core.swap_BANG_.call(null, cljs.reader._STAR_default_data_reader_fn_STAR_, function(a) { | |
return null | |
}); | |
return a | |
}; | |
mrhyde.guts = {}; | |
mrhyde.guts.hyde_proto_array_marker = "$cljs$mrhyde$isarray"; | |
mrhyde.guts.hyde_proto_object_marker = "$cljs$mrhyde$isobject"; | |
mrhyde.guts.get_store_cur_js_fn = function(a, b) { | |
var c = a[b], d = [cljs.core.str("_js_"), cljs.core.str(b)].join(""); | |
cljs.core._EQ_.call(null, void 0, a[d]) && (a[d] = c); | |
return c | |
}; | |
mrhyde.guts.restore_original_js_fn = function(a, b) { | |
var c = [cljs.core.str("_js_"), cljs.core.str(b)].join(""), c = a[c]; | |
cljs.core.not_EQ_.call(null, void 0, c) && (a[b] = c); | |
return c | |
}; | |
mrhyde.mrhyde = {}; | |
mrhyde.mrhyde.IHyde = {}; | |
mrhyde.mrhyde.has_cache_QMARK_ = function(a) { | |
if(a ? a.mrhyde$mrhyde$IHyde$has_cache_QMARK_$arity$1 : a) { | |
return a.mrhyde$mrhyde$IHyde$has_cache_QMARK_$arity$1(a) | |
} | |
var b; | |
b = mrhyde.mrhyde.has_cache_QMARK_[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = mrhyde.mrhyde.has_cache_QMARK_._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IHyde.has-cache?", a); | |
} | |
return b.call(null, a) | |
}; | |
mrhyde.mrhyde.from_cache = function(a) { | |
if(a ? a.mrhyde$mrhyde$IHyde$from_cache$arity$1 : a) { | |
return a.mrhyde$mrhyde$IHyde$from_cache$arity$1(a) | |
} | |
var b; | |
b = mrhyde.mrhyde.from_cache[goog.typeOf(null == a ? null : a)]; | |
if(!b && (b = mrhyde.mrhyde.from_cache._, !b)) { | |
throw cljs.core.missing_protocol.call(null, "IHyde.from-cache", a); | |
} | |
return b.call(null, a) | |
}; | |
mrhyde.mrhyde.hyde_QMARK_ = function(a) { | |
return a ? cljs.core.truth_(cljs.core.truth_(null) ? null : a.mrhyde$mrhyde$IHyde$) ? !0 : a.cljs$lang$protocol_mask$partition$ ? !1 : cljs.core.type_satisfies_.call(null, mrhyde.mrhyde.IHyde, a) : cljs.core.type_satisfies_.call(null, mrhyde.mrhyde.IHyde, a) | |
}; | |
mrhyde.mrhyde.hyde_array_QMARK_ = function(a) { | |
var b = a ? cljs.core.truth_(cljs.core.truth_(null) ? null : a.mrhyde$mrhyde$IHyde$) ? !0 : a.cljs$lang$protocol_mask$partition$ ? !1 : cljs.core.type_satisfies_.call(null, mrhyde.mrhyde.IHyde, a) : cljs.core.type_satisfies_.call(null, mrhyde.mrhyde.IHyde, a); | |
return cljs.core.truth_(b) ? a[mrhyde.guts.hyde_proto_array_marker] : b | |
}; | |
mrhyde.mrhyde.hyde_object_QMARK_ = function(a) { | |
var b = a ? cljs.core.truth_(cljs.core.truth_(null) ? null : a.mrhyde$mrhyde$IHyde$) ? !0 : a.cljs$lang$protocol_mask$partition$ ? !1 : cljs.core.type_satisfies_.call(null, mrhyde.mrhyde.IHyde, a) : cljs.core.type_satisfies_.call(null, mrhyde.mrhyde.IHyde, a); | |
return cljs.core.truth_(b) ? a[mrhyde.guts.hyde_proto_object_marker] : b | |
}; | |
mrhyde.mrhyde.toclj = function(a) { | |
return cljs.core.js__GT_clj.call(null, a, "\ufdd0:keywordize-keys", !0) | |
}; | |
goog.exportSymbol("mrhyde.mrhyde.toclj", mrhyde.mrhyde.toclj); | |
mrhyde.mrhyde.tojs = function(a) { | |
return cljs.core.clj__GT_js.call(null, a) | |
}; | |
goog.exportSymbol("mrhyde.mrhyde.tojs", mrhyde.mrhyde.tojs); | |
mrhyde.mrhyde.cljread = function(a) { | |
return cljs.reader.read_string.call(null, a) | |
}; | |
goog.exportSymbol("mrhyde.mrhyde.cljread", mrhyde.mrhyde.cljread); | |
clojure.set = {}; | |
clojure.set.bubble_max_key = function(a, b) { | |
var c = cljs.core.apply.call(null, cljs.core.max_key, a, b); | |
return cljs.core.cons.call(null, c, cljs.core.remove.call(null, function(a) { | |
return c === a | |
}, b)) | |
}; | |
clojure.set.union = function() { | |
var a = null, b = function() { | |
return cljs.core.PersistentHashSet.EMPTY | |
}, c = function(a, b) { | |
return cljs.core.count.call(null, a) < cljs.core.count.call(null, b) ? cljs.core.reduce.call(null, cljs.core.conj, b, a) : cljs.core.reduce.call(null, cljs.core.conj, a, b) | |
}, d = function() { | |
var a = function(a, b, c) { | |
a = clojure.set.bubble_max_key.call(null, cljs.core.count, cljs.core.conj.call(null, c, b, a)); | |
return cljs.core.reduce.call(null, cljs.core.into, cljs.core.first.call(null, a), cljs.core.rest.call(null, a)) | |
}, b = function(b, c, d) { | |
var f = null; | |
2 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, c, f) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var c = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(c, d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(), a = function(a, f, g) { | |
switch(arguments.length) { | |
case 0: | |
return b.call(this); | |
case 1: | |
return a; | |
case 2: | |
return c.call(this, a, f); | |
default: | |
return d.cljs$core$IFn$_invoke$arity$variadic(a, f, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = d.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$0 = b; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = c; | |
a.cljs$core$IFn$_invoke$arity$variadic = d.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
clojure.set.intersection = function() { | |
var a = null, b = function(a, b) { | |
for(;;) { | |
if(cljs.core.count.call(null, b) < cljs.core.count.call(null, a)) { | |
var c = a; | |
a = b; | |
b = c | |
}else { | |
return cljs.core.reduce.call(null, function(a, b) { | |
return function(a, c) { | |
return cljs.core.contains_QMARK_.call(null, b, c) ? a : cljs.core.disj.call(null, a, c) | |
} | |
}(a, b), a, a) | |
} | |
} | |
}, c = function() { | |
var b = function(b, c, d) { | |
b = clojure.set.bubble_max_key.call(null, function(a) { | |
return-cljs.core.count.call(null, a) | |
}, cljs.core.conj.call(null, d, c, b)); | |
return cljs.core.reduce.call(null, a, cljs.core.first.call(null, b), cljs.core.rest.call(null, b)) | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return a; | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
clojure.set.difference = function() { | |
var a = null, b = function(a, b) { | |
return cljs.core.count.call(null, a) < cljs.core.count.call(null, b) ? cljs.core.reduce.call(null, function(a, c) { | |
return cljs.core.contains_QMARK_.call(null, b, c) ? cljs.core.disj.call(null, a, c) : a | |
}, a, a) : cljs.core.reduce.call(null, cljs.core.disj, a, b) | |
}, c = function() { | |
var b = function(b, c, d) { | |
return cljs.core.reduce.call(null, a, b, cljs.core.conj.call(null, d, c)) | |
}, c = function(a, c, e) { | |
var k = null; | |
2 < arguments.length && (k = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return b.call(this, a, c, k) | |
}; | |
c.cljs$lang$maxFixedArity = 2; | |
c.cljs$lang$applyTo = function(a) { | |
var c = cljs.core.first(a); | |
a = cljs.core.next(a); | |
var e = cljs.core.first(a); | |
a = cljs.core.rest(a); | |
return b(c, e, a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}(), a = function(a, e, f) { | |
switch(arguments.length) { | |
case 1: | |
return a; | |
case 2: | |
return b.call(this, a, e); | |
default: | |
return c.cljs$core$IFn$_invoke$arity$variadic(a, e, cljs.core.array_seq(arguments, 2)) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$lang$maxFixedArity = 2; | |
a.cljs$lang$applyTo = c.cljs$lang$applyTo; | |
a.cljs$core$IFn$_invoke$arity$1 = function(a) { | |
return a | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$variadic = c.cljs$core$IFn$_invoke$arity$variadic; | |
return a | |
}(); | |
clojure.set.select = function(a, b) { | |
return cljs.core.reduce.call(null, function(b, d) { | |
return cljs.core.truth_(a.call(null, d)) ? b : cljs.core.disj.call(null, b, d) | |
}, b, b) | |
}; | |
clojure.set.project = function(a, b) { | |
return cljs.core.set.call(null, cljs.core.map.call(null, function(a) { | |
return cljs.core.select_keys.call(null, a, b) | |
}, a)) | |
}; | |
clojure.set.rename_keys = function(a, b) { | |
return cljs.core.reduce.call(null, function(a, b) { | |
var e = cljs.core.nth.call(null, b, 0, null), f = cljs.core.nth.call(null, b, 1, null), g; | |
g = (g = cljs.core.not_EQ_.call(null, e, f)) ? cljs.core.contains_QMARK_.call(null, a, e) : g; | |
return g ? cljs.core.dissoc.call(null, cljs.core.assoc.call(null, a, f, cljs.core.get.call(null, a, e)), e) : a | |
}, a, b) | |
}; | |
clojure.set.rename = function(a, b) { | |
return cljs.core.set.call(null, cljs.core.map.call(null, function(a) { | |
return clojure.set.rename_keys.call(null, a, b) | |
}, a)) | |
}; | |
clojure.set.index = function(a, b) { | |
return cljs.core.reduce.call(null, function(a, d) { | |
var e = cljs.core.select_keys.call(null, d, b); | |
return cljs.core.assoc.call(null, a, e, cljs.core.conj.call(null, cljs.core.get.call(null, a, e, cljs.core.PersistentHashSet.EMPTY), d)) | |
}, cljs.core.PersistentArrayMap.EMPTY, a) | |
}; | |
clojure.set.map_invert = function(a) { | |
return cljs.core.reduce.call(null, function(a, c) { | |
var d = cljs.core.nth.call(null, c, 0, null), e = cljs.core.nth.call(null, c, 1, null); | |
return cljs.core.assoc.call(null, a, e, d) | |
}, cljs.core.PersistentArrayMap.EMPTY, a) | |
}; | |
clojure.set.join = function() { | |
var a = null, b = function(a, b) { | |
if(function() { | |
var c = cljs.core.seq.call(null, a); | |
return c ? cljs.core.seq.call(null, b) : c | |
}()) { | |
var c = clojure.set.intersection.call(null, cljs.core.set.call(null, cljs.core.keys.call(null, cljs.core.first.call(null, a))), cljs.core.set.call(null, cljs.core.keys.call(null, cljs.core.first.call(null, b)))), g = cljs.core.count.call(null, a) <= cljs.core.count.call(null, b) ? cljs.core.PersistentVector.fromArray([a, b], !0) : cljs.core.PersistentVector.fromArray([b, a], !0), h = cljs.core.nth.call(null, g, 0, null), g = cljs.core.nth.call(null, g, 1, null), k = clojure.set.index.call(null, | |
h, c); | |
return cljs.core.reduce.call(null, function(a, b) { | |
var d = k.call(null, cljs.core.select_keys.call(null, b, c)); | |
return cljs.core.truth_(d) ? cljs.core.reduce.call(null, function(a, c) { | |
return cljs.core.conj.call(null, a, cljs.core.merge.call(null, c, b)) | |
}, a, d) : a | |
}, cljs.core.PersistentHashSet.EMPTY, g) | |
} | |
return cljs.core.PersistentHashSet.EMPTY | |
}, c = function(a, b, c) { | |
a = cljs.core.count.call(null, a) <= cljs.core.count.call(null, b) ? cljs.core.PersistentVector.fromArray([a, b, clojure.set.map_invert.call(null, c)], !0) : cljs.core.PersistentVector.fromArray([b, a, c], !0); | |
b = cljs.core.nth.call(null, a, 0, null); | |
c = cljs.core.nth.call(null, a, 1, null); | |
var g = cljs.core.nth.call(null, a, 2, null), h = clojure.set.index.call(null, b, cljs.core.vals.call(null, g)); | |
return cljs.core.reduce.call(null, function(a, b) { | |
var c = h.call(null, clojure.set.rename_keys.call(null, cljs.core.select_keys.call(null, b, cljs.core.keys.call(null, g)), g)); | |
return cljs.core.truth_(c) ? cljs.core.reduce.call(null, function(a, c) { | |
return cljs.core.conj.call(null, a, cljs.core.merge.call(null, c, b)) | |
}, a, c) : a | |
}, cljs.core.PersistentHashSet.EMPTY, c) | |
}, a = function(a, e, f) { | |
switch(arguments.length) { | |
case 2: | |
return b.call(this, a, e); | |
case 3: | |
return c.call(this, a, e, f) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
a.cljs$core$IFn$_invoke$arity$2 = b; | |
a.cljs$core$IFn$_invoke$arity$3 = c; | |
return a | |
}(); | |
clojure.set.subset_QMARK_ = function(a, b) { | |
var c = cljs.core.count.call(null, a) <= cljs.core.count.call(null, b); | |
return c ? cljs.core.every_QMARK_.call(null, function(a) { | |
return cljs.core.contains_QMARK_.call(null, b, a) | |
}, a) : c | |
}; | |
clojure.set.superset_QMARK_ = function(a, b) { | |
var c = cljs.core.count.call(null, a) >= cljs.core.count.call(null, b); | |
return c ? cljs.core.every_QMARK_.call(null, function(b) { | |
return cljs.core.contains_QMARK_.call(null, a, b) | |
}, b) : c | |
}; | |
mrhyde.typepatcher = {}; | |
mrhyde.typepatcher.dp = function() { | |
var a = function(a) { | |
return console.log(cljs.core.apply.call(null, cljs.core.str, a)) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.install_js_get_prop = function() { | |
var a = {configurable:!0, enumerable:!0}; | |
return function(b, c, d) { | |
a.get = d; | |
return Object.defineProperty(b, c, a) | |
} | |
}.call(null); | |
mrhyde.typepatcher.install_js_hidden_get_prop = function() { | |
var a = {configurable:!0, enumerable:!1}; | |
return function(b, c, d) { | |
a.get = d; | |
return Object.defineProperty(b, c, a) | |
} | |
}.call(null); | |
mrhyde.typepatcher.hide_js_props = function() { | |
var a = {enumerable:!1}; | |
return function(b, c) { | |
for(var d = cljs.core.seq.call(null, c), e = null, f = 0, g = 0;;) { | |
if(g < f) { | |
var h = cljs.core._nth.call(null, e, g); | |
Object.defineProperty(b, h, a); | |
g += 1 | |
}else { | |
if(d = cljs.core.seq.call(null, d)) { | |
e = d, cljs.core.chunked_seq_QMARK_.call(null, e) ? (d = cljs.core.chunk_first.call(null, e), f = cljs.core.chunk_rest.call(null, e), e = d, h = cljs.core.count.call(null, d), d = f, f = h) : (h = cljs.core.first.call(null, e), Object.defineProperty(b, h, a), d = cljs.core.next.call(null, e), e = null, f = 0), g = 0 | |
}else { | |
return null | |
} | |
} | |
} | |
} | |
}.call(null); | |
mrhyde.typepatcher.install_js_getset_prop = function() { | |
var a = {configurable:!0, enumerable:!0}; | |
return function(b, c, d, e) { | |
a.get = d; | |
a.set = e; | |
return Object.defineProperty(b, c, a) | |
} | |
}.call(null); | |
mrhyde.typepatcher.install_js_hidden_getset_prop = function() { | |
var a = {configurable:!0, enumerable:!1}; | |
return function(b, c, d, e) { | |
a.get = d; | |
a.set = e; | |
return Object.defineProperty(b, c, a) | |
} | |
}.call(null); | |
mrhyde.typepatcher.aset_hidden = function(a, b, c) { | |
a[b] = c; | |
return mrhyde.typepatcher.hide_js_props.call(null, a, cljs.core.PersistentVector.fromArray([b], !0)) | |
}; | |
mrhyde.typepatcher.hyde_cache_key = "$cljs$mrhyde$cache"; | |
mrhyde.typepatcher.hyde_access_key = "$cljs$mrhyde$acccess"; | |
mrhyde.typepatcher.hyde_keylist_key = "$cljs$mrhyde$keylist"; | |
mrhyde.typepatcher.hyde_keyset_key = "$cljs$mrhyde$keyset"; | |
mrhyde.typepatcher.cljs_partition_key = "cljs$lang$protocol_mask$partition0$"; | |
mrhyde.typepatcher.hyde_parition_key = [cljs.core.str("$cljs$mrhyde$"), cljs.core.str(mrhyde.typepatcher.cljs_partition_key)].join(""); | |
mrhyde.typepatcher.hyde_array_ensure_cached = function(a) { | |
return cljs.core.not.call(null, goog.object.containsKey(a, mrhyde.typepatcher.hyde_cache_key)) ? mrhyde.typepatcher.aset_hidden.call(null, a, mrhyde.typepatcher.hyde_cache_key, cljs.core.apply.call(null, cljs.core.array, a)) : null | |
}; | |
mrhyde.typepatcher.hyde_array_pop = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method pop") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_push = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method push") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_reverse = function() { | |
var a = function(a) { | |
mrhyde.typepatcher.hyde_array_ensure_cached.call(null, this); | |
this[mrhyde.typepatcher.hyde_cache_key].reverse(); | |
return this | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_shift = function() { | |
var a = function(a) { | |
mrhyde.typepatcher.hyde_array_ensure_cached.call(null, this); | |
return this[mrhyde.typepatcher.hyde_cache_key].shift() | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_sort = function() { | |
var a = function(a) { | |
mrhyde.typepatcher.hyde_array_ensure_cached.call(null, this); | |
this[mrhyde.typepatcher.hyde_cache_key].sort(); | |
return this | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_splice = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method splice") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_unshift = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method unshift") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_concat = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method concat") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_join = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method join") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_concat = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method concat") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_concat = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method concat") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_concat = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method concat") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_concat = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method concat") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_slice = function() { | |
var a = function(a) { | |
var b = cljs.core.first.call(null, a); | |
a = cljs.core.second.call(null, a); | |
return null == a ? cljs.core.drop.call(null, b, this) : cljs.core.take.call(null, a - b, cljs.core.drop.call(null, b, this)) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_vector_slice = function() { | |
var a = function(a) { | |
console.log("note: calling untested hyde-array vector-slice"); | |
return cljs.core.apply.call(null, cljs.core.subvec, this, a) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_to_source = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method toSource") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_to_string = function() { | |
var a = function(a) { | |
return clojure.string.join.call(null, ", ", this) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_index_of = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method indexOf") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_last_index_of = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method lastIndexOf") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_every = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method every") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_some = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method some") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_filter = function() { | |
var a = function(a) { | |
a = cljs.core.vec.call(null, a); | |
var b = cljs.core.get.call(null, a, 0, cljs.core.identity), e = cljs.core.get.call(null, a, 1, void 0); | |
return cljs.core.vec.call(null, cljs.core.doall.call(null, cljs.core.filter.call(null, function(a) { | |
return b.call(e, a) | |
}, cljs.core.seq.call(null, this)))) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_map = function() { | |
var a = function(a) { | |
var b = this; | |
a = cljs.core.vec.call(null, a); | |
var e = cljs.core.get.call(null, a, 0, cljs.core.identity), f = cljs.core.get.call(null, a, 1, void 0); | |
return cljs.core.doall.call(null, cljs.core.map.call(null, function(a, c) { | |
return e.call(f, a, c, b) | |
}, cljs.core.seq.call(null, b), cljs.core.range.call(null))) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_for_each = function() { | |
var a = function(a) { | |
mrhyde.typepatcher.hyde_array_map.call(this, cljs.core.first.call(null, a), cljs.core.second.call(null, a)); | |
return null | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_reduce = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method reduce") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.hyde_array_reduce_right = function() { | |
var a = function(a) { | |
return console.log("WARNING: someone has called unsupported hyde-array method reduce-Right") | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.strkey = function(a) { | |
return cljs.core.keyword_QMARK_.call(null, a) ? cljs.core.name.call(null, a) : a | |
}; | |
mrhyde.typepatcher.gen_map_getter = function(a) { | |
return function() { | |
return cljs.core.get.call(null, this[mrhyde.typepatcher.hyde_access_key], a) | |
} | |
}; | |
mrhyde.typepatcher.gen_map_setter = function(a) { | |
return function(b) { | |
if(cljs.core.not.call(null, goog.object.containsKey(this, mrhyde.typepatcher.hyde_cache_key))) { | |
var c = cljs.core.transient$.call(null, this); | |
mrhyde.typepatcher.aset_hidden.call(null, this, mrhyde.typepatcher.hyde_access_key, c); | |
mrhyde.typepatcher.aset_hidden.call(null, this, mrhyde.typepatcher.hyde_cache_key, c) | |
} | |
return cljs.core.assoc_BANG_.call(null, this[mrhyde.typepatcher.hyde_cache_key], a, b) | |
} | |
}; | |
mrhyde.typepatcher.patch_map = function(a) { | |
mrhyde.typepatcher.aset_hidden.call(null, a, mrhyde.typepatcher.hyde_access_key, a); | |
mrhyde.typepatcher.hide_js_props.call(null, a, Object.keys(a)); | |
for(var b = cljs.core.seq.call(null, cljs.core.keys.call(null, a)), c = null, d = 0, e = 0;;) { | |
if(e < d) { | |
var f = cljs.core._nth.call(null, c, e); | |
(function() { | |
var b = cljs.core.keyword_QMARK_.call(null, f); | |
return b ? cljs.core.not.call(null, goog.object.containsKey(a, cljs.core.name.call(null, f))) : b | |
})() && mrhyde.typepatcher.install_js_getset_prop.call(null, a, cljs.core.name.call(null, f), mrhyde.typepatcher.gen_map_getter.call(null, f), mrhyde.typepatcher.gen_map_setter.call(null, f)); | |
e += 1 | |
}else { | |
if(b = cljs.core.seq.call(null, b)) { | |
c = b; | |
if(cljs.core.chunked_seq_QMARK_.call(null, c)) { | |
b = cljs.core.chunk_first.call(null, c), e = cljs.core.chunk_rest.call(null, c), c = b, d = cljs.core.count.call(null, b), b = e | |
}else { | |
var g = cljs.core.first.call(null, c); | |
(function() { | |
var b = cljs.core.keyword_QMARK_.call(null, g); | |
return b ? cljs.core.not.call(null, goog.object.containsKey(a, cljs.core.name.call(null, g))) : b | |
})() && mrhyde.typepatcher.install_js_getset_prop.call(null, a, cljs.core.name.call(null, g), mrhyde.typepatcher.gen_map_getter.call(null, g), mrhyde.typepatcher.gen_map_setter.call(null, g)); | |
b = cljs.core.next.call(null, c); | |
c = null; | |
d = 0 | |
} | |
e = 0 | |
}else { | |
break | |
} | |
} | |
} | |
cljs.core.truth_(cljs.core.some.call(null, cljs.core.keyword_QMARK_, cljs.core.keys.call(null, a))) && (mrhyde.typepatcher.aset_hidden.call(null, a, mrhyde.typepatcher.hyde_keylist_key, !1), mrhyde.typepatcher.aset_hidden.call(null, a, mrhyde.typepatcher.hyde_keyset_key, !1), mrhyde.typepatcher.aset_hidden.call(null, a, mrhyde.typepatcher.hyde_keylist_key, Object.keys(a))); | |
return a | |
}; | |
mrhyde.typepatcher.have_patched_js_with_key_lookup = cljs.core.atom.call(null, !1); | |
mrhyde.typepatcher.patch_js_with_key_lookup = function() { | |
return cljs.core.not.call(null, cljs.core.deref.call(null, mrhyde.typepatcher.have_patched_js_with_key_lookup)) ? (cljs.core.reset_BANG_.call(null, mrhyde.typepatcher.have_patched_js_with_key_lookup, !0), cljs.core.ILookup.object = !0, cljs.core._lookup.object = function() { | |
var a = null; | |
return a = function(a, c, d) { | |
switch(arguments.length) { | |
case 2: | |
return a[mrhyde.typepatcher.strkey.call(null, c)]; | |
case 3: | |
var e; | |
e = mrhyde.typepatcher.strkey.call(null, c); | |
e = cljs.core.truth_(goog.object.containsKey(a, e)) ? a[e] : d; | |
return e | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
} | |
}()) : null | |
}; | |
mrhyde.typepatcher.MAXLEN = function() { | |
var a = function() { | |
return this.mrhyde_maxseqlen | |
}(); | |
return cljs.core.truth_(a) ? a : 5E3 | |
}(); | |
mrhyde.typepatcher.patch_seq_object = function(a) { | |
return null | |
}; | |
mrhyde.typepatcher.patch_map_object = function(a) { | |
mrhyde.typepatcher.patch_map.call(null, a); | |
return null | |
}; | |
mrhyde.typepatcher.patch_core_seq_type = function(a) { | |
for(var b = cljs.core[a], c = Object.keys(b), d = function(a, b) { | |
return function() { | |
var b = function(b) { | |
b = cljs.core.apply.call(null, cljs.core.array, cljs.core.cons.call(null, null, b)); | |
b = new (Function.prototype.bind.apply(a, b)); | |
mrhyde.typepatcher.patch_seq_object.call(null, b); | |
return b | |
}, c = function(a) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return b.call(this, c) | |
}; | |
c.cljs$lang$maxFixedArity = 0; | |
c.cljs$lang$applyTo = function(a) { | |
a = cljs.core.seq(a); | |
return b(a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}() | |
}(b, c), c = cljs.core.seq.call(null, c), e = null, f = 0, g = 0;;) { | |
if(g < f) { | |
var h = cljs.core._nth.call(null, e, g); | |
d[h] = b[h]; | |
g += 1 | |
}else { | |
if(c = cljs.core.seq.call(null, c)) { | |
e = c, cljs.core.chunked_seq_QMARK_.call(null, e) ? (c = cljs.core.chunk_first.call(null, e), g = cljs.core.chunk_rest.call(null, e), e = c, f = cljs.core.count.call(null, c), c = g) : (c = cljs.core.first.call(null, e), d[c] = b[c], c = cljs.core.next.call(null, e), e = null, f = 0), g = 0 | |
}else { | |
break | |
} | |
} | |
} | |
return cljs.core[a] = d | |
}; | |
mrhyde.typepatcher.patch_core_map_type = function(a) { | |
for(var b = cljs.core[a], c = Object.keys(b), d = function(a, b) { | |
return function() { | |
var b = function(b) { | |
b = cljs.core.apply.call(null, cljs.core.array, cljs.core.cons.call(null, null, b)); | |
b = new (Function.prototype.bind.apply(a, b)); | |
mrhyde.typepatcher.patch_map_object.call(null, b); | |
return b | |
}, c = function(a) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return b.call(this, c) | |
}; | |
c.cljs$lang$maxFixedArity = 0; | |
c.cljs$lang$applyTo = function(a) { | |
a = cljs.core.seq(a); | |
return b(a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}() | |
}(b, c), c = cljs.core.seq.call(null, c), e = null, f = 0, g = 0;;) { | |
if(g < f) { | |
var h = cljs.core._nth.call(null, e, g); | |
d[h] = b[h]; | |
g += 1 | |
}else { | |
if(c = cljs.core.seq.call(null, c)) { | |
e = c, cljs.core.chunked_seq_QMARK_.call(null, e) ? (c = cljs.core.chunk_first.call(null, e), g = cljs.core.chunk_rest.call(null, e), e = c, f = cljs.core.count.call(null, c), c = g) : (c = cljs.core.first.call(null, e), d[c] = b[c], c = cljs.core.next.call(null, e), e = null, f = 0), g = 0 | |
}else { | |
break | |
} | |
} | |
} | |
return cljs.core[a] = d | |
}; | |
mrhyde.typepatcher.gen_seq_getter = function(a) { | |
return function() { | |
var b = cljs.core.truth_(goog.object.containsKey(this, mrhyde.typepatcher.hyde_cache_key)) ? this[mrhyde.typepatcher.hyde_cache_key] : this; | |
return cljs.core.nth.call(null, b, a, void 0) | |
} | |
}; | |
mrhyde.typepatcher.gen_seq_setter = function(a) { | |
return function(b) { | |
mrhyde.typepatcher.hyde_array_ensure_cached.call(null, this); | |
return this[mrhyde.typepatcher.hyde_cache_key][a] = b | |
} | |
}; | |
mrhyde.typepatcher.patch_prototype_as_array = function(a, b, c) { | |
mrhyde.typepatcher.aset_hidden.call(null, a, mrhyde.guts.hyde_proto_array_marker, !0); | |
mrhyde.typepatcher.install_js_hidden_get_prop.call(null, a, "length", function() { | |
return cljs.core.count.call(null, cljs.core.take.call(null, mrhyde.typepatcher.MAXLEN, this)) | |
}); | |
b = mrhyde.typepatcher.MAXLEN; | |
for(var d = 0;;) { | |
if(d < b) { | |
mrhyde.typepatcher.install_js_hidden_getset_prop.call(null, a, d, mrhyde.typepatcher.gen_seq_getter.call(null, d), mrhyde.typepatcher.gen_seq_setter.call(null, d)), d += 1 | |
}else { | |
break | |
} | |
} | |
mrhyde.typepatcher.aset_hidden.call(null, a, "__ArrayLike", !0); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "toCljString", a.toString); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "pop", mrhyde.typepatcher.hyde_array_pop); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "push", mrhyde.typepatcher.hyde_array_push); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "reverse", mrhyde.typepatcher.hyde_array_reverse); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "shift", mrhyde.typepatcher.hyde_array_shift); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "sort", mrhyde.typepatcher.hyde_array_sort); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "splice", mrhyde.typepatcher.hyde_array_splice); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "unshift", mrhyde.typepatcher.hyde_array_unshift); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "concat", mrhyde.typepatcher.hyde_array_concat); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "join", mrhyde.typepatcher.hyde_array_pop); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "slice", cljs.core.truth_(c) ? mrhyde.typepatcher.hyde_array_vector_slice : mrhyde.typepatcher.hyde_array_slice); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "toSource", mrhyde.typepatcher.hyde_array_to_source); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "toString", mrhyde.typepatcher.hyde_array_to_string); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "indexOf", mrhyde.typepatcher.hyde_array_index_of); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "lastIndexOf", mrhyde.typepatcher.hyde_array_last_index_of); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "forEach", mrhyde.typepatcher.hyde_array_for_each); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "every", mrhyde.typepatcher.hyde_array_every); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "some", mrhyde.typepatcher.hyde_array_some); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "filter", mrhyde.typepatcher.hyde_array_filter); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "map", mrhyde.typepatcher.hyde_array_map); | |
mrhyde.typepatcher.aset_hidden.call(null, a, "reduce", mrhyde.typepatcher.hyde_array_reduce); | |
return mrhyde.typepatcher.aset_hidden.call(null, a, "reduceRight", mrhyde.typepatcher.hyde_array_reduce_right) | |
}; | |
mrhyde.typepatcher.patch_prototype_as_map = function(a, b) { | |
return mrhyde.typepatcher.aset_hidden.call(null, a, mrhyde.guts.hyde_proto_object_marker, !0) | |
}; | |
mrhyde.typepatcher.add_hyde_protocol_to_seq = function(a) { | |
a.prototype.mrhyde$mrhyde$IHyde$ = !0; | |
a.prototype.mrhyde$mrhyde$IHyde$has_cache_QMARK_$arity$1 = function(a) { | |
return goog.object.containsKey(a, mrhyde.typepatcher.hyde_cache_key) | |
}; | |
return a.prototype.mrhyde$mrhyde$IHyde$from_cache$arity$1 = function(a) { | |
var c = a[mrhyde.typepatcher.hyde_cache_key]; | |
return cljs.core.truth_(c) ? cljs.core.vec.call(null, c) : a | |
} | |
}; | |
mrhyde.typepatcher.filtered_keylist_set = function(a) { | |
return cljs.core.set.call(null, cljs.core.remove.call(null, function(a) { | |
return cljs.core.re_find.call(null, /cljs\$/, a) | |
}, a)) | |
}; | |
mrhyde.typepatcher.lazy_init_hyde_setset = function(a) { | |
return cljs.core.truth_(function() { | |
var b = cljs.core.not.call(null, a[mrhyde.typepatcher.hyde_keyset_key]); | |
return b ? a[mrhyde.typepatcher.hyde_keylist_key] : b | |
}()) ? mrhyde.typepatcher.aset_hidden.call(null, a, mrhyde.typepatcher.hyde_keyset_key, mrhyde.typepatcher.filtered_keylist_set.call(null, a[mrhyde.typepatcher.hyde_keylist_key])) : null | |
}; | |
mrhyde.typepatcher.add_hyde_protocol_to_map = function(a) { | |
a.prototype.mrhyde$mrhyde$IHyde$ = !0; | |
a.prototype.mrhyde$mrhyde$IHyde$has_cache_QMARK_$arity$1 = function(a) { | |
mrhyde.typepatcher.lazy_init_hyde_setset.call(null, a); | |
var c = goog.object.containsKey(a, mrhyde.typepatcher.hyde_cache_key); | |
return cljs.core.truth_(c) ? c : cljs.core.not_EQ_.call(null, a[mrhyde.typepatcher.hyde_keyset_key], mrhyde.typepatcher.filtered_keylist_set.call(null, Object.keys(a))) | |
}; | |
a.prototype.mrhyde$mrhyde$IHyde$from_cache$arity$1 = function(a) { | |
mrhyde.typepatcher.lazy_init_hyde_setset.call(null, a); | |
var c = clojure.set.difference.call(null, mrhyde.typepatcher.filtered_keylist_set.call(null, Object.keys(a)), cljs.core.PersistentHashSet.fromArray([mrhyde.typepatcher.hyde_cache_key, null], !0)), d = clojure.set.difference.call(null, c, a[mrhyde.typepatcher.hyde_keyset_key]), e = cljs.core.into.call(null, cljs.core.PersistentArrayMap.EMPTY, function() { | |
return function(c, d) { | |
return function l(e) { | |
return new cljs.core.LazySeq(null, !1, function(c, d) { | |
return function() { | |
for(;;) { | |
var c = cljs.core.seq.call(null, e); | |
if(c) { | |
if(cljs.core.chunked_seq_QMARK_.call(null, c)) { | |
var d = cljs.core.chunk_first.call(null, c), f = cljs.core.count.call(null, d), g = cljs.core.chunk_buffer.call(null, f); | |
a: { | |
for(var h = 0;;) { | |
if(h < f) { | |
var n = cljs.core._nth.call(null, d, h); | |
cljs.core.chunk_append.call(null, g, cljs.core.PersistentVector.fromArray([cljs.core.keyword.call(null, n), a[n]], !0)); | |
h += 1 | |
}else { | |
d = !0; | |
break a | |
} | |
} | |
d = void 0 | |
} | |
return d ? cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, g), l.call(null, cljs.core.chunk_rest.call(null, c))) : cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, g), null) | |
} | |
g = cljs.core.first.call(null, c); | |
return cljs.core.cons.call(null, cljs.core.PersistentVector.fromArray([cljs.core.keyword.call(null, g), a[g]], !0), l.call(null, cljs.core.rest.call(null, c))) | |
} | |
return null | |
} | |
} | |
}(c, d), null) | |
} | |
}(c, d).call(null, d) | |
}()), f = a[mrhyde.typepatcher.hyde_cache_key]; | |
return cljs.core.truth_(f) ? (f = cljs.core.persistent_BANG_.call(null, f), mrhyde.typepatcher.aset_hidden.call(null, a, mrhyde.typepatcher.hyde_cache_key, cljs.core.transient$.call(null, f)), cljs.core.merge.call(null, f, e)) : cljs.core.merge.call(null, a, e) | |
}; | |
a = a.prototype; | |
return mrhyde.typepatcher.hide_js_props.call(null, a, Object.keys(a)) | |
}; | |
mrhyde.typepatcher.from_cache_if_has_cache = function(a) { | |
return cljs.core.truth_(function() { | |
var b = mrhyde.mrhyde.hyde_QMARK_.call(null, a); | |
return b ? mrhyde.mrhyde.has_cache_QMARK_.call(null, a) : b | |
}()) ? mrhyde.mrhyde.from_cache.call(null, a) : a | |
}; | |
mrhyde.typepatcher.recurse_from_hyde_cache = function() { | |
var a = function(a, b) { | |
var e = cljs.core.apply.call(null, cljs.core.array_map, b), e = cljs.core.get.call(null, e, "\ufdd0:skip", cljs.core.PersistentVector.EMPTY), e = cljs.core.keyword_QMARK_.call(null, e) ? cljs.core.PersistentVector.fromArray([e], !0) : e, f = cljs.core.set.call(null, e); | |
return function h(a) { | |
if(cljs.core.truth_(goog.isArray(a))) { | |
return cljs.core.vec.call(null, cljs.core.map.call(null, h, a)) | |
} | |
if(cljs.core.map_QMARK_.call(null, a)) { | |
var b = mrhyde.typepatcher.from_cache_if_has_cache.call(null, a); | |
return cljs.core.into.call(null, cljs.core.PersistentArrayMap.EMPTY, function() { | |
return function n(a) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
for(;;) { | |
var b = cljs.core.seq.call(null, a); | |
if(b) { | |
if(cljs.core.chunked_seq_QMARK_.call(null, b)) { | |
var c = cljs.core.chunk_first.call(null, b), d = cljs.core.count.call(null, c), e = cljs.core.chunk_buffer.call(null, d); | |
a: { | |
for(var k = 0;;) { | |
if(k < d) { | |
var l = cljs.core._nth.call(null, c, k), w = cljs.core.nth.call(null, l, 0, null), l = cljs.core.nth.call(null, l, 1, null); | |
cljs.core.chunk_append.call(null, e, cljs.core.PersistentVector.fromArray([h.call(null, w), cljs.core.truth_(f.call(null, w)) ? l : h.call(null, l)], !0)); | |
k += 1 | |
}else { | |
c = !0; | |
break a | |
} | |
} | |
c = void 0 | |
} | |
return c ? cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, e), n.call(null, cljs.core.chunk_rest.call(null, b))) : cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, e), null) | |
} | |
c = cljs.core.first.call(null, b); | |
e = cljs.core.nth.call(null, c, 0, null); | |
c = cljs.core.nth.call(null, c, 1, null); | |
return cljs.core.cons.call(null, cljs.core.PersistentVector.fromArray([h.call(null, e), cljs.core.truth_(f.call(null, e)) ? c : h.call(null, c)], !0), n.call(null, cljs.core.rest.call(null, b))) | |
} | |
return null | |
} | |
}, null) | |
}.call(null, b) | |
}()) | |
} | |
return cljs.core.coll_QMARK_.call(null, a) ? (b = mrhyde.typepatcher.from_cache_if_has_cache.call(null, a), cljs.core.into.call(null, cljs.core.empty.call(null, b), cljs.core.map.call(null, h, b))) : mrhyde.typepatcher.from_cache_if_has_cache.call(null, a) | |
}.call(null, a) | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.repersist = function() { | |
var a = function(a, d) { | |
return cljs.core.truth_(goog.isFunction(a)) ? function() { | |
var e = function(e) { | |
return cljs.core.apply.call(null, b, function() { | |
return a.apply(this, cljs.core.apply.call(null, cljs.core.array, e)) | |
}(), d) | |
}, f = function(a) { | |
var b = null; | |
0 < arguments.length && (b = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return e.call(this, b) | |
}; | |
f.cljs$lang$maxFixedArity = 0; | |
f.cljs$lang$applyTo = function(a) { | |
a = cljs.core.seq(a); | |
return e(a) | |
}; | |
f.cljs$core$IFn$_invoke$arity$variadic = e; | |
return f | |
}() : cljs.core.apply.call(null, mrhyde.typepatcher.recurse_from_hyde_cache, a, d) | |
}, b = function(b, d) { | |
var e = null; | |
1 < arguments.length && (e = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)); | |
return a.call(this, b, e) | |
}; | |
b.cljs$lang$maxFixedArity = 1; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.typepatcher.have_patched_arrayish_flag = cljs.core.atom.call(null, !1); | |
mrhyde.typepatcher.have_patched_mappish_flag = cljs.core.atom.call(null, !1); | |
mrhyde.typepatcher.patch_sequential_type = function(a) { | |
if(mrhyde.mrhyde.hyde_array_QMARK_.call(null, a.prototype)) { | |
return null | |
} | |
mrhyde.typepatcher.patch_prototype_as_array.call(null, a.prototype, a, !1); | |
return mrhyde.typepatcher.add_hyde_protocol_to_seq.call(null, a) | |
}; | |
mrhyde.typepatcher.patch_vector_type = function(a) { | |
if(mrhyde.mrhyde.hyde_array_QMARK_.call(null, a.prototype)) { | |
return null | |
} | |
mrhyde.typepatcher.patch_prototype_as_array.call(null, a.prototype, a, !0); | |
return mrhyde.typepatcher.add_hyde_protocol_to_seq.call(null, a) | |
}; | |
mrhyde.typepatcher.patch_map_type = function(a) { | |
var b = cljs.core.nth.call(null, a, 0, null); | |
a = cljs.core.nth.call(null, a, 1, null); | |
if(mrhyde.mrhyde.hyde_object_QMARK_.call(null, b.prototype)) { | |
return mrhyde.typepatcher.dp.call(null, [cljs.core.str("already a hyde-object: "), cljs.core.str(b)].join("")) | |
} | |
mrhyde.typepatcher.patch_prototype_as_map.call(null, b.prototype, b); | |
mrhyde.typepatcher.add_hyde_protocol_to_map.call(null, b); | |
return mrhyde.typepatcher.patch_core_map_type.call(null, a) | |
}; | |
mrhyde.typepatcher.patch_known_sequential_types = function() { | |
for(var a = cljs.core.seq.call(null, cljs.core.PersistentVector.fromArray([cljs.core.List, cljs.core.LazySeq, cljs.core.IndexedSeq, cljs.core.Cons, cljs.core.Range, cljs.core.ArrayNodeSeq, cljs.core.ChunkedSeq], !0)), b = null, c = 0, d = 0;;) { | |
if(d < c) { | |
var e = cljs.core._nth.call(null, b, d); | |
mrhyde.typepatcher.patch_sequential_type.call(null, e); | |
d += 1 | |
}else { | |
if(a = cljs.core.seq.call(null, a)) { | |
b = a, cljs.core.chunked_seq_QMARK_.call(null, b) ? (a = cljs.core.chunk_first.call(null, b), c = cljs.core.chunk_rest.call(null, b), b = a, e = cljs.core.count.call(null, a), a = c, c = e) : (e = cljs.core.first.call(null, b), mrhyde.typepatcher.patch_sequential_type.call(null, e), a = cljs.core.next.call(null, b), b = null, c = 0), d = 0 | |
}else { | |
return null | |
} | |
} | |
} | |
}; | |
mrhyde.typepatcher.patch_known_vector_types = function() { | |
for(var a = cljs.core.seq.call(null, cljs.core.PersistentVector.fromArray([cljs.core.PersistentVector, cljs.core.Subvec], !0)), b = null, c = 0, d = 0;;) { | |
if(d < c) { | |
var e = cljs.core._nth.call(null, b, d); | |
mrhyde.typepatcher.patch_vector_type.call(null, e); | |
d += 1 | |
}else { | |
if(a = cljs.core.seq.call(null, a)) { | |
b = a, cljs.core.chunked_seq_QMARK_.call(null, b) ? (a = cljs.core.chunk_first.call(null, b), c = cljs.core.chunk_rest.call(null, b), b = a, e = cljs.core.count.call(null, a), a = c, c = e) : (e = cljs.core.first.call(null, b), mrhyde.typepatcher.patch_vector_type.call(null, e), a = cljs.core.next.call(null, b), b = null, c = 0), d = 0 | |
}else { | |
return null | |
} | |
} | |
} | |
}; | |
mrhyde.typepatcher.patch_known_mappish_types = function() { | |
mrhyde.typepatcher.patch_sequential_type.call(null, cljs.core.LazySeq); | |
for(var a = cljs.core.seq.call(null, cljs.core.PersistentVector.fromArray([cljs.core.PersistentVector.fromArray([cljs.core.ObjMap, "ObjMap"], !0), cljs.core.PersistentVector.fromArray([cljs.core.PersistentHashMap, "PersistentHashMap"], !0), cljs.core.PersistentVector.fromArray([cljs.core.PersistentArrayMap, "PersistentArrayMap"], !0)], !0)), b = null, c = 0, d = 0;;) { | |
if(d < c) { | |
var e = cljs.core._nth.call(null, b, d); | |
cljs.core._EQ_.call(null, cljs.core.first.call(null, e), cljs.core[cljs.core.second.call(null, e)]) && mrhyde.typepatcher.patch_map_type.call(null, e); | |
d += 1 | |
}else { | |
if(a = cljs.core.seq.call(null, a)) { | |
b = a, cljs.core.chunked_seq_QMARK_.call(null, b) ? (a = cljs.core.chunk_first.call(null, b), c = cljs.core.chunk_rest.call(null, b), b = a, e = cljs.core.count.call(null, a), a = c, c = e) : (e = cljs.core.first.call(null, b), cljs.core._EQ_.call(null, cljs.core.first.call(null, e), cljs.core[cljs.core.second.call(null, e)]) && mrhyde.typepatcher.patch_map_type.call(null, e), a = cljs.core.next.call(null, b), b = null, c = 0), d = 0 | |
}else { | |
return null | |
} | |
} | |
} | |
}; | |
mrhyde.typepatcher.get_partition_key = function() { | |
return this[mrhyde.typepatcher.hyde_parition_key] | |
}; | |
mrhyde.typepatcher.set_partition_key = function(a) { | |
mrhyde.typepatcher.aset_hidden.call(null, this, mrhyde.typepatcher.hyde_parition_key, a); | |
window.side = "effect"; | |
cljs.core._EQ_.call(null, 16123663, a) && console.log("matches"); | |
console.log(a); | |
return console.log(this) | |
}; | |
mrhyde.typepatcher.patch_obj_spy_on_partition = function() { | |
console.log(mrhyde.typepatcher.set_partition_key); | |
return mrhyde.typepatcher.install_js_hidden_getset_prop.call(null, cljs.core.PersistentHashMap.prototype, mrhyde.typepatcher.cljs_partition_key, mrhyde.typepatcher.get_partition_key, mrhyde.typepatcher.set_partition_key) | |
}; | |
mrhyde.core = {}; | |
mrhyde.core.bootstrap = function() { | |
var a = function(a) { | |
mrhyde.typepatcher.patch_known_vector_types.call(null); | |
return mrhyde.typepatcher.patch_known_mappish_types.call(null) | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
goog.exportSymbol("mrhyde.core.bootstrap", mrhyde.core.bootstrap); | |
mrhyde.funpatcher = {}; | |
mrhyde.funpatcher.patch_return_value_to_clj = function(a, b) { | |
var c = mrhyde.guts.get_store_cur_js_fn.call(null, a, b); | |
return a[b] = function() { | |
var a = function(a) { | |
return cljs.core.js__GT_clj.call(null, function() { | |
return c.apply(this, a) | |
}()) | |
}, b = function(b) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, c) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}() | |
}; | |
mrhyde.funpatcher.patch_return_value_recurse_from_cache = function(a, b) { | |
var c = mrhyde.guts.get_store_cur_js_fn.call(null, a, b); | |
return a[b] = function() { | |
var a = function(a) { | |
return mrhyde.mrhyde.recurse_from_hyde_cache.call(null, function() { | |
return c.apply(this, a) | |
}()) | |
}, b = function(b) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, c) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}() | |
}; | |
mrhyde.funpatcher.patch_return_value_recurse_from_cache_as_function = function(a, b) { | |
var c = mrhyde.guts.get_store_cur_js_fn.call(null, a, b); | |
return a[b] = function() { | |
var a = function(a) { | |
var b = function() { | |
return c.apply(this, a) | |
}(); | |
return function() { | |
var a = function(a) { | |
return b.apply(this, a) | |
}, c = function(a) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return b.apply(this, c) | |
}; | |
c.cljs$lang$maxFixedArity = 0; | |
c.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = a; | |
return c | |
}() | |
}, b = function(b) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, c) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}() | |
}; | |
mrhyde.funpatcher.recurse_from_hyde_cache_maybe_fn = function(a) { | |
return cljs.core.truth_(goog.isFunction(a)) ? function() { | |
var b = function(b) { | |
return mrhyde.mrhyde.recurse_from_hyde_cache.call(null, function() { | |
return a.apply(this, b) | |
}()) | |
}, c = function(a) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return b.call(this, c) | |
}; | |
c.cljs$lang$maxFixedArity = 0; | |
c.cljs$lang$applyTo = function(a) { | |
a = cljs.core.seq(a); | |
return b(a) | |
}; | |
c.cljs$core$IFn$_invoke$arity$variadic = b; | |
return c | |
}() : mrhyde.mrhyde.recurse_from_hyde_cache.call(null, a) | |
}; | |
mrhyde.funpatcher.patch_args_recurse_from_cache = function() { | |
var a = function(a, b, e) { | |
var f = mrhyde.guts.get_store_cur_js_fn.call(null, a, b), g = cljs.core.empty_QMARK_.call(null, e) ? function(a) { | |
return function() { | |
return cljs.core.identity.call(null, !0) | |
} | |
}(f) : cljs.core.set.call(null, e); | |
return a[b] = function() { | |
var a = function(a) { | |
a = cljs.core.map.call(null, function(a, b) { | |
return cljs.core.truth_(g.call(null, a)) ? mrhyde.funpatcher.recurse_from_hyde_cache_maybe_fn.call(null, b) : b | |
}, cljs.core.range.call(null), a); | |
return f.apply(this, a) | |
}, b = function(b) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, c) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}() | |
}, b = function(b, d, e) { | |
var f = null; | |
2 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, d, f) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.funpatcher.patch_args_keyword_to_fn = function() { | |
var a = function(a, b, e) { | |
var f = mrhyde.guts.get_store_cur_js_fn.call(null, a, b), g = cljs.core.empty_QMARK_.call(null, e) ? function(a) { | |
return function() { | |
return cljs.core.identity.call(null, !0) | |
} | |
}(f) : cljs.core.set.call(null, e); | |
return a[b] = function() { | |
var a = function(a) { | |
a = cljs.core.map.call(null, function(a, b) { | |
return cljs.core.truth_(function() { | |
var c = g.call(null, a); | |
return cljs.core.truth_(c) ? cljs.core.keyword_QMARK_.call(null, b) : c | |
}()) ? function(a) { | |
return b.call(null, a) | |
} : b | |
}, cljs.core.range.call(null), a); | |
return f.apply(this, a) | |
}, b = function(b) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, c) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}() | |
}, b = function(b, d, e) { | |
var f = null; | |
2 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, d, f) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.funpatcher.patch_args_map_to_obj = function() { | |
var a = function(a, b, e) { | |
var f = mrhyde.guts.get_store_cur_js_fn.call(null, a, b), g = cljs.core.empty_QMARK_.call(null, e) ? function(a) { | |
return function() { | |
return cljs.core.identity.call(null, !0) | |
} | |
}(f) : cljs.core.set.call(null, e); | |
return a[b] = function() { | |
var a = function(a) { | |
a = cljs.core.map.call(null, function(a, b) { | |
return cljs.core.truth_(function() { | |
var c = g.call(null, a); | |
return cljs.core.truth_(c) ? cljs.core.map_QMARK_.call(null, b) : c | |
}()) ? cljs.core.clj__GT_js.call(null, b) : b | |
}, cljs.core.range.call(null), a); | |
return f.apply(this, a) | |
}, b = function(b) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, c) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}() | |
}, b = function(b, d, e) { | |
var f = null; | |
2 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, d, f) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.funpatcher.patch_args_seq_to_array = function() { | |
var a = function(a, b, e) { | |
var f = mrhyde.guts.get_store_cur_js_fn.call(null, a, b), g = cljs.core.empty_QMARK_.call(null, e) ? function(a) { | |
return function() { | |
return cljs.core.identity.call(null, !0) | |
} | |
}(f) : cljs.core.set.call(null, e); | |
return a[b] = function() { | |
var a = function(a) { | |
a = cljs.core.map.call(null, function(a, b) { | |
return cljs.core.truth_(function() { | |
var c = g.call(null, a); | |
return cljs.core.truth_(c) ? cljs.core.sequential_QMARK_.call(null, b) : c | |
}()) ? cljs.core.apply.call(null, cljs.core.array, b) : b | |
}, cljs.core.range.call(null), a); | |
return f.apply(this, a) | |
}, b = function(b) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, c) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}() | |
}, b = function(b, d, e) { | |
var f = null; | |
2 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, d, f) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.funpatcher.patch_args_clj_to_js = function() { | |
var a = function(a, b, e) { | |
var f = mrhyde.guts.get_store_cur_js_fn.call(null, a, b), g = cljs.core.empty_QMARK_.call(null, e) ? function(a) { | |
return function() { | |
return cljs.core.identity.call(null, !0) | |
} | |
}(f) : cljs.core.set.call(null, e); | |
return a[b] = function() { | |
var a = function(a) { | |
a = cljs.core.map.call(null, function(a, b) { | |
return cljs.core.truth_(g.call(null, a)) ? cljs.core.clj__GT_js.call(null, b) : b | |
}, cljs.core.range.call(null), a); | |
return f.apply(this, cljs.core.apply.call(null, cljs.core.array, a)) | |
}, b = function(b) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, c) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}() | |
}, b = function(b, d, e) { | |
var f = null; | |
2 < arguments.length && (f = cljs.core.array_seq(Array.prototype.slice.call(arguments, 2), 0)); | |
return a.call(this, b, d, f) | |
}; | |
b.cljs$lang$maxFixedArity = 2; | |
b.cljs$lang$applyTo = function(b) { | |
var d = cljs.core.first(b); | |
b = cljs.core.next(b); | |
var e = cljs.core.first(b); | |
b = cljs.core.rest(b); | |
return a(d, e, b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
mrhyde.funpatcher.patch_tostring_sequential_isarray = function(a, b) { | |
var c = mrhyde.guts.get_store_cur_js_fn.call(null, a, b); | |
return a[b] = function() { | |
var a = function(a) { | |
return mrhyde.mrhyde.hyde_array_QMARK_.call(null, this) ? "[object Array]" : c.apply(this, a) | |
}, b = function(b) { | |
var c = null; | |
0 < arguments.length && (c = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, c) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}() | |
}; | |
mrhyde.funpatcher.patch_tostring_hydearray_is_array = function() { | |
return mrhyde.funpatcher.patch_tostring_sequential_isarray.call(null, Object.prototype, "toString") | |
}; | |
var strokes = {}; | |
strokes.d3 = function() { | |
return this.d3 | |
}(); | |
strokes.edn_parser_callback = function(a) { | |
return cljs.reader.read_string.call(null, a.responseText) | |
}; | |
strokes.fetch_edn = function(a, b) { | |
return strokes.d3.xhr(a, "application/octet-stream", b).response(strokes.edn_parser_callback) | |
}; | |
strokes.bootstrap = function() { | |
var a = function(a) { | |
mrhyde.core.bootstrap.call(null); | |
return cljs.core.truth_(strokes.d3) ? (mrhyde.funpatcher.patch_args_keyword_to_fn.call(null, strokes.d3.selection.prototype, "attr", 1), mrhyde.funpatcher.patch_args_keyword_to_fn.call(null, strokes.d3.selection.prototype, "text", 0), mrhyde.funpatcher.patch_args_keyword_to_fn.call(null, strokes.d3.layout.pack.prototype, "value", 0), mrhyde.funpatcher.patch_args_keyword_to_fn.call(null, strokes.d3.layout.pack.prototype, "children", 0), mrhyde.funpatcher.patch_args_keyword_to_fn.call(null, strokes.d3.selection.prototype, | |
"data", 1)) : null | |
}, b = function(b) { | |
var d = null; | |
0 < arguments.length && (d = cljs.core.array_seq(Array.prototype.slice.call(arguments, 0), 0)); | |
return a.call(this, d) | |
}; | |
b.cljs$lang$maxFixedArity = 0; | |
b.cljs$lang$applyTo = function(b) { | |
b = cljs.core.seq(b); | |
return a(b) | |
}; | |
b.cljs$core$IFn$_invoke$arity$variadic = a; | |
return b | |
}(); | |
goog.exportSymbol("strokes.bootstrap", strokes.bootstrap); | |
cljs.core.truth_(strokes.d3) && (strokes.timer = strokes.d3.timer, strokes.arc = strokes.d3.svg.arc, strokes.polygon = strokes.d3.geom.polygon, strokes.voronoi = strokes.d3.geom.voronoi, strokes.category10 = strokes.d3.scale.category10, strokes.category20 = strokes.d3.scale.category20, strokes.category20b = strokes.d3.scale.category20b, strokes.category20c = strokes.d3.scale.category20c); | |
var boids = {}; | |
strokes.bootstrap.call(null); | |
boids.width = 960; | |
boids.height = 500; | |
boids.settings = cljs.core.clj__GT_js.call(null, cljs.core.PersistentHashMap.fromArrays("\ufdd0:momentum \ufdd0:consistency \ufdd0:dead-prop \ufdd0:jump \ufdd0:num-boids \ufdd0:avoidance \ufdd0:timeout \ufdd0:renew \ufdd0:neighborhood \ufdd0:cohesion \ufdd0:randomness".split(" "), [1, 0.4, 0.25, 3, 20, 8, 100, function() { | |
cljs.core.reset_BANG_.call(null, boids.boids, cljs.core.PersistentArrayMap.EMPTY); | |
return boids.add_boids.call(null, (new cljs.core.Keyword("\ufdd0:num-boids")).call(null, boids.settings) | 0) | |
}, 80, 1, 4])); | |
var gui_7869 = new dat.GUI; | |
gui_7869.close(); | |
gui_7869.add(boids.settings, "randomness", 0, 10); | |
gui_7869.add(boids.settings, "momentum", 0, 10); | |
gui_7869.add(boids.settings, "avoidance", 0, 10); | |
gui_7869.add(boids.settings, "cohesion", 0, 10); | |
gui_7869.add(boids.settings, "consistency", 0, 10); | |
gui_7869.add(boids.settings, "jump", 1, 30); | |
gui_7869.add(boids.settings, "timeout", 1, 3E3); | |
gui_7869.add(boids.settings, "num-boids", 0, 100); | |
gui_7869.add(boids.settings, "dead-prop", 0, 1); | |
gui_7869.add(boids.settings, "neighborhood", 1, 200); | |
gui_7869.add(boids.settings, "renew"); | |
boids.rand_range = function(a, b) { | |
return a + cljs.core.rand.call(null, b - a) | |
}; | |
boids.newboid = function() { | |
return cljs.core.PersistentArrayMap.fromArray(["\ufdd0:id", "" + cljs.core.str(cljs.core.gensym.call(null, "boid-")), "\ufdd0:loc", cljs.core.PersistentVector.fromArray([cljs.core.rand_int.call(null, boids.width), cljs.core.rand_int.call(null, boids.height)], !0), "\ufdd0:lastd", cljs.core.mapv.call(null, function() { | |
return boids.rand_range.call(null, -1, 1) | |
}, cljs.core.range.call(null, 2)), "\ufdd0:dead", cljs.core.rand.call(null) < (new cljs.core.Keyword("\ufdd0:dead-prop")).call(null, boids.settings)], !0) | |
}; | |
boids.gen_boids = function(a) { | |
return cljs.core.into.call(null, cljs.core.PersistentArrayMap.EMPTY, cljs.core.map.call(null, function(a) { | |
return cljs.core.vector.call(null, (new cljs.core.Keyword("\ufdd0:id")).call(null, a), a) | |
}, cljs.core.vec.call(null, cljs.core.take.call(null, a, cljs.core.repeatedly.call(null, boids.newboid))))) | |
}; | |
boids.boids = cljs.core.atom.call(null, cljs.core.PersistentArrayMap.EMPTY); | |
boids.colorfn = strokes.category20c.call(null); | |
boids.svg = strokes.d3.select("body").append("svg").attr(cljs.core.PersistentArrayMap.fromArray(["\ufdd0:width", boids.width, "\ufdd0:height", boids.height], !0)); | |
boids.orientation = function(a) { | |
var b = (new cljs.core.Keyword("\ufdd0:lastd")).call(null, a); | |
a = cljs.core.nth.call(null, b, 0, null); | |
b = cljs.core.nth.call(null, b, 1, null); | |
var c = 0 === a; | |
return(c ? 0 === b : c) ? 0 : Math.atan2.call(null, b, a) | |
}; | |
boids.angle_to_svg = function(a) { | |
return 180 * a / Math.PI | |
}; | |
boids.boid_transform = function(a) { | |
var b = (new cljs.core.Keyword("\ufdd0:loc")).call(null, a), c = cljs.core.nth.call(null, b, 0, null), b = cljs.core.nth.call(null, b, 1, null); | |
return[cljs.core.str("translate("), cljs.core.str(c), cljs.core.str(","), cljs.core.str(b), cljs.core.str(") "), cljs.core.str("rotate ("), cljs.core.str(boids.angle_to_svg.call(null, boids.orientation.call(null, a))), cljs.core.str(")")].join("") | |
}; | |
boids.draw_boids = function() { | |
var a = boids.svg.selectAll("polygon").data(cljs.core.vec.call(null, cljs.core.vals.call(null, cljs.core.deref.call(null, boids.boids))), "\ufdd0:id"); | |
a.enter().append("polygon").attr("points", "20,0 0,10 -10,0 0,-10").style(cljs.core.PersistentArrayMap.fromArray(["\ufdd0:fill", function(a, c) { | |
return cljs.core.truth_((new cljs.core.Keyword("\ufdd0:dead")).call(null, a)) ? "black" : boids.colorfn.call(null, c) | |
}, "\ufdd0:fill-opacity", 1E-6], !0)).transition().duration(750).style(cljs.core.PersistentArrayMap.fromArray(["\ufdd0:fill-opacity", 1], !0)); | |
a.attr(cljs.core.PersistentArrayMap.fromArray(["\ufdd0:transform", boids.boid_transform], !0)); | |
return a.exit().remove() | |
}; | |
boids.momentum = function(a) { | |
return(new cljs.core.Keyword("\ufdd0:lastd")).call(null, a) | |
}; | |
boids.randomness = function(a) { | |
a = boids.rand_range.call(null, -1, 1); | |
var b = boids.rand_range.call(null, -1, 1), c = Math.sqrt.call(null, a * a + b * b); | |
return cljs.core.PersistentVector.fromArray([0.05 * a / c, 0.05 * b / c], !0) | |
}; | |
boids.avoidance = function(a, b) { | |
var c = (new cljs.core.Keyword("\ufdd0:loc")).call(null, a), d = cljs.core.mapv.call(null, function(a) { | |
return function(b) { | |
return cljs.core.mapv.call(null, cljs.core._, a, (new cljs.core.Keyword("\ufdd0:loc")).call(null, b)) | |
} | |
}(c), b), e = cljs.core.mapv.call(null, function(a, b) { | |
return function(a) { | |
var b = cljs.core.nth.call(null, a, 0, null); | |
a = cljs.core.nth.call(null, a, 1, null); | |
return b * b + a * a | |
} | |
}(c, d), d), f = cljs.core.mapv.call(null, function(a, b, c) { | |
return function(a, b) { | |
var c = cljs.core.nth.call(null, a, 0, null), d = cljs.core.nth.call(null, a, 1, null), e = b * b + 1; | |
return cljs.core.PersistentVector.fromArray([c / e, d / e], !0) | |
} | |
}(c, d, e), d, e), c = cljs.core.reduce.call(null, function(a, b, c, d) { | |
return function(a, b) { | |
return cljs.core.mapv.call(null, cljs.core._PLUS_, a, b) | |
} | |
}(c, d, e, f), cljs.core.PersistentVector.fromArray([0, 0], !0), f), g = cljs.core.empty_QMARK_.call(null, b) ? 1 : cljs.core.count.call(null, b); | |
return cljs.core.mapv.call(null, function(a) { | |
return 9E3 * a / g | |
}, c) | |
}; | |
boids.cohesion = function(a, b) { | |
var c = (new cljs.core.Keyword("\ufdd0:loc")).call(null, a), d = cljs.core.mapv.call(null, function(a) { | |
return function(b) { | |
return cljs.core.mapv.call(null, cljs.core._, a, (new cljs.core.Keyword("\ufdd0:loc")).call(null, b)) | |
} | |
}(c), b), c = cljs.core.reduce.call(null, function(a, b) { | |
return function(a, b) { | |
return cljs.core.mapv.call(null, cljs.core._PLUS_, a, b) | |
} | |
}(c, d), cljs.core.PersistentVector.fromArray([0, 0], !0), d), e = cljs.core.empty_QMARK_.call(null, b) ? 1 : cljs.core.count.call(null, b); | |
return cljs.core.mapv.call(null, function(a) { | |
return a / -100 / e | |
}, c) | |
}; | |
boids.consistency = function(a, b) { | |
var c = (new cljs.core.Keyword("\ufdd0:loc")).call(null, a), d = cljs.core.mapv.call(null, boids.momentum, b), c = cljs.core.reduce.call(null, function(a, b) { | |
return function(a, b) { | |
return cljs.core.mapv.call(null, cljs.core._PLUS_, a, b) | |
} | |
}(c, d), cljs.core.PersistentVector.fromArray([0, 0], !0), d), e = cljs.core.empty_QMARK_.call(null, b) ? 1 : cljs.core.count.call(null, b); | |
return cljs.core.mapv.call(null, function(a) { | |
return a / e | |
}, c) | |
}; | |
boids.wrap = function(a) { | |
var b = cljs.core.nth.call(null, a, 0, null); | |
a = cljs.core.nth.call(null, a, 1, null); | |
return cljs.core.PersistentVector.fromArray([cljs.core.mod.call(null, b, boids.width), cljs.core.mod.call(null, a, boids.height)], !0) | |
}; | |
boids.is_near_QMARK_ = function(a, b, c) { | |
a = cljs.core.mapv.call(null, cljs.core._, a, (new cljs.core.Keyword("\ufdd0:loc")).call(null, c)); | |
c = cljs.core.reduce.call(null, cljs.core._PLUS_, cljs.core.mapv.call(null, Math.abs, a)); | |
var d = c > b; | |
if(d ? d : 0 === c) { | |
return!1 | |
} | |
c = cljs.core.nth.call(null, a, 0, null); | |
a = cljs.core.nth.call(null, a, 1, null); | |
return Math.sqrt.call(null, c * c + a * a) < b | |
}; | |
boids.neighbors_of = function(a) { | |
return cljs.core.filter.call(null, cljs.core.partial.call(null, boids.is_near_QMARK_, (new cljs.core.Keyword("\ufdd0:loc")).call(null, a), (new cljs.core.Keyword("\ufdd0:neighborhood")).call(null, boids.settings)), cljs.core.vals.call(null, cljs.core.dissoc.call(null, cljs.core.deref.call(null, boids.boids), (new cljs.core.Keyword("\ufdd0:id")).call(null, a)))) | |
}; | |
boids.update_one_boid = function(a) { | |
if(cljs.core.truth_((new cljs.core.Keyword("\ufdd0:dead")).call(null, a))) { | |
return a | |
} | |
var b = (new cljs.core.Keyword("\ufdd0:loc")).call(null, a), c = boids.neighbors_of.call(null, a), d = cljs.core.remove.call(null, "\ufdd0:dead", c), e = cljs.core.mapv.call(null, function(a, b, c) { | |
return function(a) { | |
return a * (new cljs.core.Keyword("\ufdd0:randomness")).call(null, boids.settings) | |
} | |
}(b, c, d), boids.randomness.call(null, a)), f = cljs.core.mapv.call(null, function(a, b, c, d) { | |
return function(a) { | |
return a * (new cljs.core.Keyword("\ufdd0:momentum")).call(null, boids.settings) | |
} | |
}(b, c, d, e), boids.momentum.call(null, a)), g = cljs.core.mapv.call(null, function(a, b, c, d, e) { | |
return function(a) { | |
return a * (new cljs.core.Keyword("\ufdd0:avoidance")).call(null, boids.settings) | |
} | |
}(b, c, d, e, f), boids.avoidance.call(null, a, c)), h = cljs.core.mapv.call(null, function(a, b, c, d, e, f) { | |
return function(a) { | |
return a * (new cljs.core.Keyword("\ufdd0:cohesion")).call(null, boids.settings) | |
} | |
}(b, c, d, e, f, g), boids.cohesion.call(null, a, d)), k = cljs.core.mapv.call(null, function(a, b, c, d, e, f, g) { | |
return function(a) { | |
return a * (new cljs.core.Keyword("\ufdd0:consistency")).call(null, boids.settings) | |
} | |
}(b, c, d, e, f, g, h), boids.consistency.call(null, a, d)), l = cljs.core.mapv.call(null, cljs.core._PLUS_, e, f, g, h, k), m = cljs.core.nth.call(null, l, 0, null), n = cljs.core.nth.call(null, l, 1, null), p = Math.sqrt.call(null, m * m + n * n), q = (new cljs.core.Keyword("\ufdd0:jump")).call(null, boids.settings), r = 0 < p ? cljs.core.map.call(null, function(a, b, c, d, e, f, g, h, k, l, m, n, p) { | |
return function(a) { | |
return a / n * p | |
} | |
}(b, c, d, e, f, g, h, k, l, m, n, p, q), cljs.core.PersistentVector.fromArray([m, n], !0)) : cljs.core.PersistentVector.fromArray([0, 0], !0), c = cljs.core.mapv.call(null, function(a, b, c, d, e, f, g, h, k, l, m, n, p, q) { | |
return function(a, b) { | |
return 0.7 * a + 0.3 * b | |
} | |
}(b, c, d, e, f, g, h, k, l, m, n, p, q, r), boids.momentum.call(null, a), r), b = cljs.core.mapv.call(null, cljs.core._PLUS_, b, c); | |
return cljs.core.merge.call(null, a, cljs.core.PersistentArrayMap.fromArray(["\ufdd0:loc", boids.wrap.call(null, b), "\ufdd0:lastd", c], !0)) | |
}; | |
boids.run_one_boid = function(a) { | |
var b = boids.rand_range.call(null, 1, (new cljs.core.Keyword("\ufdd0:timeout")).call(null, boids.settings)), c = cljs.core.async.chan.call(null, 1); | |
cljs.core.async.impl.dispatch.run.call(null, function() { | |
var d = function() { | |
return function(a) { | |
return function() { | |
var b = null, c = function() { | |
var a = Array(7); | |
a[0] = b; | |
a[1] = 1; | |
return a | |
}, d = function(b) { | |
for(;;) { | |
var c = a.call(null, b); | |
if("\ufdd0:recur" !== c) { | |
return c | |
} | |
} | |
}, b = function(a) { | |
switch(arguments.length) { | |
case 0: | |
return c.call(this); | |
case 1: | |
return d.call(this, a) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
b.cljs$core$IFn$_invoke$arity$0 = c; | |
b.cljs$core$IFn$_invoke$arity$1 = d; | |
return b | |
}() | |
}(function(c) { | |
var d = c[1]; | |
if(7 === d) { | |
var e = c[2], k = function() { | |
return function(b, c) { | |
return function(b) { | |
return cljs.core.update_in.call(null, b, cljs.core.PersistentVector.fromArray([a], !0), boids.update_one_boid) | |
} | |
}(e, d) | |
}(), k = cljs.core.swap_BANG_.call(null, boids.boids, k); | |
c[5] = e; | |
c[6] = k; | |
c[2] = null; | |
c[1] = 2; | |
return"\ufdd0:recur" | |
} | |
return 6 === d ? (k = c[2], c[2] = k, c[1] = 3, "\ufdd0:recur") : 5 === d ? (c[2] = null, c[1] = 6, "\ufdd0:recur") : 4 === d ? (k = cljs.core.async.timeout.call(null, b), cljs.core.async.impl.ioc_helpers.take_BANG_.call(null, c, 7, k)) : 3 === d ? (k = c[2], cljs.core.async.impl.ioc_helpers.return_chan.call(null, c, k)) : 2 === d ? (k = cljs.core.deref.call(null, boids.boids), k = cljs.core.get.call(null, k, a), cljs.core.truth_(k) ? c[1] = 4 : c[1] = 5, "\ufdd0:recur") : 1 === d ? (c[2] = | |
null, c[1] = 2, "\ufdd0:recur") : null | |
}) | |
}(), e = function() { | |
var a = d.call(null); | |
a[cljs.core.async.impl.ioc_helpers.USER_START_IDX] = c; | |
return a | |
}(); | |
return cljs.core.async.impl.ioc_helpers.run_state_machine_wrapped.call(null, e) | |
}); | |
return c | |
}; | |
boids.update_all_boids = function(a) { | |
return cljs.core.into.call(null, cljs.core.PersistentArrayMap.EMPTY, function() { | |
return function c(a) { | |
return new cljs.core.LazySeq(null, !1, function() { | |
for(;;) { | |
var e = cljs.core.seq.call(null, a); | |
if(e) { | |
if(cljs.core.chunked_seq_QMARK_.call(null, e)) { | |
var f = cljs.core.chunk_first.call(null, e), g = cljs.core.count.call(null, f), h = cljs.core.chunk_buffer.call(null, g); | |
a: { | |
for(var k = 0;;) { | |
if(k < g) { | |
var l = cljs.core._nth.call(null, f, k), m = cljs.core.nth.call(null, l, 0, null), l = cljs.core.nth.call(null, l, 1, null); | |
cljs.core.chunk_append.call(null, h, cljs.core.PersistentVector.fromArray([m, boids.update_one_boid.call(null, l)], !0)); | |
k += 1 | |
}else { | |
f = !0; | |
break a | |
} | |
} | |
f = void 0 | |
} | |
return f ? cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, h), c.call(null, cljs.core.chunk_rest.call(null, e))) : cljs.core.chunk_cons.call(null, cljs.core.chunk.call(null, h), null) | |
} | |
f = cljs.core.first.call(null, e); | |
h = cljs.core.nth.call(null, f, 0, null); | |
f = cljs.core.nth.call(null, f, 1, null); | |
return cljs.core.cons.call(null, cljs.core.PersistentVector.fromArray([h, boids.update_one_boid.call(null, f)], !0), c.call(null, cljs.core.rest.call(null, e))) | |
} | |
return null | |
} | |
}, null) | |
}.call(null, a) | |
}()) | |
}; | |
boids.add_boids = function(a) { | |
var b = boids.gen_boids.call(null, a); | |
cljs.core.swap_BANG_.call(null, boids.boids, function(a) { | |
return cljs.core.merge.call(null, a, b) | |
}); | |
a = cljs.core.seq.call(null, cljs.core.keys.call(null, b)); | |
for(var c = null, d = 0, e = 0;;) { | |
if(e < d) { | |
var f = cljs.core._nth.call(null, c, e); | |
boids.run_one_boid.call(null, f); | |
e += 1 | |
}else { | |
if(a = cljs.core.seq.call(null, a)) { | |
c = a, cljs.core.chunked_seq_QMARK_.call(null, c) ? (a = cljs.core.chunk_first.call(null, c), d = cljs.core.chunk_rest.call(null, c), c = a, f = cljs.core.count.call(null, a), a = d, d = f) : (f = cljs.core.first.call(null, c), boids.run_one_boid.call(null, f), a = cljs.core.next.call(null, c), c = null, d = 0), e = 0 | |
}else { | |
return null | |
} | |
} | |
} | |
}; | |
boids.add_boids.call(null, (new cljs.core.Keyword("\ufdd0:num-boids")).call(null, boids.settings) | 0); | |
var c__5207__auto___8064 = cljs.core.async.chan.call(null, 1); | |
cljs.core.async.impl.dispatch.run.call(null, function() { | |
var a = function() { | |
return function(a) { | |
return function() { | |
var b = null, e = function() { | |
var a = Array(9); | |
a[0] = b; | |
a[1] = 1; | |
return a | |
}, f = function(b) { | |
for(;;) { | |
var d = a.call(null, b); | |
if("\ufdd0:recur" !== d) { | |
return d | |
} | |
} | |
}, b = function(a) { | |
switch(arguments.length) { | |
case 0: | |
return e.call(this); | |
case 1: | |
return f.call(this, a) | |
} | |
throw Error("Invalid arity: " + arguments.length); | |
}; | |
b.cljs$core$IFn$_invoke$arity$0 = e; | |
b.cljs$core$IFn$_invoke$arity$1 = f; | |
return b | |
}() | |
}(function(a) { | |
var b = a[1]; | |
if(1 === b) { | |
return a[2] = null, a[1] = 2, "\ufdd0:recur" | |
} | |
if(2 === b) { | |
return a[1] = 4, "\ufdd0:recur" | |
} | |
if(3 === b) { | |
var e = a[2]; | |
return cljs.core.async.impl.ioc_helpers.return_chan.call(null, a, e) | |
} | |
if(4 === b) { | |
return e = cljs.core.async.timeout.call(null, 1), cljs.core.async.impl.ioc_helpers.take_BANG_.call(null, a, 7, e) | |
} | |
if(5 === b) { | |
return a[2] = null, a[1] = 6, "\ufdd0:recur" | |
} | |
if(6 === b) { | |
return e = a[2], a[2] = e, a[1] = 3, "\ufdd0:recur" | |
} | |
if(7 === b) { | |
var f = a[5], g = a[6], e = a[2], h = cljs.core.deref.call(null, boids.boids), h = cljs.core.count.call(null, h), k = (new cljs.core.Keyword("\ufdd0:num-boids")).call(null, boids.settings) | 0; | |
a[7] = e; | |
a[5] = k; | |
a[6] = h; | |
cljs.core.truth_(h > k) ? a[1] = 8 : a[1] = 9; | |
return"\ufdd0:recur" | |
} | |
return 8 === b ? (f = a[5], g = a[6], e = function() { | |
return function(a, b, c, d, e) { | |
return function(b) { | |
return cljs.core.into.call(null, cljs.core.PersistentArrayMap.EMPTY, cljs.core.take.call(null, a, b)) | |
} | |
}(f, g, f, g, b) | |
}(), e = cljs.core.swap_BANG_.call(null, boids.boids, e), a[2] = e, a[1] = 10, "\ufdd0:recur") : 9 === b ? (f = a[5], g = a[6], cljs.core.truth_(g < f) ? a[1] = 11 : a[1] = 12, "\ufdd0:recur") : 10 === b ? (a[8] = a[2], a[2] = null, a[1] = 2, "\ufdd0:recur") : 11 === b ? (f = a[5], g = a[6], e = boids.add_boids.call(null, f - g), a[2] = e, a[1] = 13, "\ufdd0:recur") : 12 === b ? (a[2] = null, a[1] = 13, "\ufdd0:recur") : 13 === b ? (e = a[2], a[2] = e, a[1] = 10, "\ufdd0:recur") : null | |
}) | |
}(), b = function() { | |
var b = a.call(null); | |
b[cljs.core.async.impl.ioc_helpers.USER_START_IDX] = c__5207__auto___8064; | |
return b | |
}(); | |
return cljs.core.async.impl.ioc_helpers.run_state_machine_wrapped.call(null, b) | |
}); | |
for(var seq__8079_8083 = cljs.core.seq.call(null, cljs.core.keys.call(null, cljs.core.deref.call(null, boids.boids))), chunk__8080_8084 = null, count__8081_8085 = 0, i__8082_8086 = 0;;) { | |
if(i__8082_8086 < count__8081_8085) { | |
var k_8087 = cljs.core._nth.call(null, chunk__8080_8084, i__8082_8086); | |
boids.run_one_boid.call(null, k_8087); | |
var G__8088 = seq__8079_8083, G__8089 = chunk__8080_8084, G__8090 = count__8081_8085, G__8091 = i__8082_8086 + 1, seq__8079_8083 = G__8088, chunk__8080_8084 = G__8089, count__8081_8085 = G__8090, i__8082_8086 = G__8091 | |
}else { | |
var temp__4092__auto___8092 = cljs.core.seq.call(null, seq__8079_8083); | |
if(temp__4092__auto___8092) { | |
var seq__8079_8093__$1 = temp__4092__auto___8092; | |
if(cljs.core.chunked_seq_QMARK_.call(null, seq__8079_8093__$1)) { | |
var c__3490__auto___8094 = cljs.core.chunk_first.call(null, seq__8079_8093__$1), G__8095 = cljs.core.chunk_rest.call(null, seq__8079_8093__$1), G__8096 = c__3490__auto___8094, G__8097 = cljs.core.count.call(null, c__3490__auto___8094), G__8098 = 0, seq__8079_8083 = G__8095, chunk__8080_8084 = G__8096, count__8081_8085 = G__8097, i__8082_8086 = G__8098 | |
}else { | |
var k_8099 = cljs.core.first.call(null, seq__8079_8093__$1); | |
boids.run_one_boid.call(null, k_8099); | |
var G__8100 = cljs.core.next.call(null, seq__8079_8093__$1), G__8101 = null, G__8102 = 0, G__8103 = 0, seq__8079_8083 = G__8100, chunk__8080_8084 = G__8101, count__8081_8085 = G__8102, i__8082_8086 = G__8103 | |
} | |
}else { | |
break | |
} | |
} | |
} | |
strokes.timer.call(null, function() { | |
boids.draw_boids.call(null); | |
return!1 | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<title>boids</title> | |
<body> | |
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script> | |
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5/dat.gui.min.js"></script> | |
<script type="text/javascript" src="boids.js"></script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment